From 43d12ecf018dfe94172148c6c456ad4a7fd88e05 Mon Sep 17 00:00:00 2001 From: Santos Gallegos Date: Tue, 11 Jul 2023 13:44:49 -0500 Subject: [PATCH] Put match inner block in a `block` node This matches the other block statements (with, try, if, etc), all of them have a body field with a block node that contains the body of the statement. https://github.com/tree-sitter/tree-sitter-python/blob/5a5455ef88ead370a9c7b93d8f55ea5a6b9127d7/grammar.js#L487-L496 This was also allowing ```python match 1: case 1: pass ``` Which is invalid, match blocks need an indentation --- grammar.js | 12 +- src/grammar.json | 45 +- src/node-types.json | 21 +- src/parser.c | 110138 ++++++++++++++-------------- test/corpus/pattern_matching.txt | 570 +- 5 files changed, 53535 insertions(+), 57251 deletions(-) diff --git a/grammar.js b/grammar.js index 386bd226..9d876743 100644 --- a/grammar.js +++ b/grammar.js @@ -281,7 +281,17 @@ module.exports = grammar({ commaSep1(field('subject', $.expression)), optional(','), ':', - repeat(field('alternative', $.case_clause))), + field('body', alias($._match_block, $.block)), + ), + + _match_block: $ => choice( + seq( + $._indent, + repeat(field('alternative', $.case_clause)), + $._dedent, + ), + $._newline, + ), case_clause: $ => seq( 'case', diff --git a/src/grammar.json b/src/grammar.json index f93426a0..7c501779 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -959,18 +959,53 @@ "value": ":" }, { - "type": "REPEAT", + "type": "FIELD", + "name": "body", "content": { - "type": "FIELD", - "name": "alternative", + "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "case_clause" - } + "name": "_match_block" + }, + "named": true, + "value": "block" } } ] }, + "_match_block": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_indent" + }, + { + "type": "REPEAT", + "content": { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "SYMBOL", + "name": "case_clause" + } + } + }, + { + "type": "SYMBOL", + "name": "_dedent" + } + ] + }, + { + "type": "SYMBOL", + "name": "_newline" + } + ] + }, "case_clause": { "type": "SEQ", "members": [ diff --git a/src/node-types.json b/src/node-types.json index bcf7f12a..61381c66 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -717,7 +717,18 @@ { "type": "block", "named": true, - "fields": {}, + "fields": { + "alternative": { + "multiple": true, + "required": false, + "types": [ + { + "type": "case_clause", + "named": true + } + ] + } + }, "children": { "multiple": true, "required": false, @@ -1991,12 +2002,12 @@ "type": "match_statement", "named": true, "fields": { - "alternative": { - "multiple": true, - "required": false, + "body": { + "multiple": false, + "required": true, "types": [ { - "type": "case_clause", + "type": "block", "named": true } ] diff --git a/src/parser.c b/src/parser.c index 9ce7fcc8..89765617 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,9 +6,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2545 -#define LARGE_STATE_COUNT 186 -#define SYMBOL_COUNT 245 +#define STATE_COUNT 2518 +#define LARGE_STATE_COUNT 173 +#define SYMBOL_COUNT 246 #define ALIAS_COUNT 5 #define TOKEN_COUNT 106 #define EXTERNAL_TOKEN_COUNT 10 @@ -149,123 +149,124 @@ enum { sym_elif_clause = 130, sym_else_clause = 131, sym_match_statement = 132, - sym_case_clause = 133, - sym_for_statement = 134, - sym_while_statement = 135, - sym_try_statement = 136, - sym_except_clause = 137, - sym_except_group_clause = 138, - sym_finally_clause = 139, - sym_with_statement = 140, - sym_with_clause = 141, - sym_with_item = 142, - sym_function_definition = 143, - sym_parameters = 144, - sym_lambda_parameters = 145, - sym_list_splat = 146, - sym_dictionary_splat = 147, - sym_global_statement = 148, - sym_nonlocal_statement = 149, - sym_exec_statement = 150, - sym_class_definition = 151, - sym_parenthesized_list_splat = 152, - sym_argument_list = 153, - sym_decorated_definition = 154, - sym_decorator = 155, - sym_block = 156, - sym_expression_list = 157, - sym_dotted_name = 158, - sym__parameters = 159, - sym__patterns = 160, - sym_parameter = 161, - sym_pattern = 162, - sym_tuple_pattern = 163, - sym_list_pattern = 164, - sym_default_parameter = 165, - sym_typed_default_parameter = 166, - sym_list_splat_pattern = 167, - sym_dictionary_splat_pattern = 168, - sym_as_pattern = 169, - sym__expression_within_for_in_clause = 170, - sym_expression = 171, - sym_primary_expression = 172, - sym_not_operator = 173, - sym_boolean_operator = 174, - sym_binary_operator = 175, - sym_unary_operator = 176, - sym_comparison_operator = 177, - sym_lambda = 178, - sym_lambda_within_for_in_clause = 179, - sym_assignment = 180, - sym_augmented_assignment = 181, - sym_pattern_list = 182, - sym__right_hand_side = 183, - sym_yield = 184, - sym_attribute = 185, - sym_subscript = 186, - sym_slice = 187, - sym_call = 188, - sym_typed_parameter = 189, - sym_type = 190, - sym_keyword_argument = 191, - sym_list = 192, - sym_set = 193, - sym_tuple = 194, - sym_dictionary = 195, - sym_pair = 196, - sym_list_comprehension = 197, - sym_dictionary_comprehension = 198, - sym_set_comprehension = 199, - sym_generator_expression = 200, - sym__comprehension_clauses = 201, - sym_parenthesized_expression = 202, - sym__collection_elements = 203, - sym_for_in_clause = 204, - sym_if_clause = 205, - sym_conditional_expression = 206, - sym_concatenated_string = 207, - sym_string = 208, - sym_string_content = 209, - sym_interpolation = 210, - sym__f_expression = 211, - sym_format_specifier = 212, - sym_await = 213, - sym_positional_separator = 214, - sym_keyword_separator = 215, - aux_sym_module_repeat1 = 216, - aux_sym__simple_statements_repeat1 = 217, - aux_sym_import_prefix_repeat1 = 218, - aux_sym__import_list_repeat1 = 219, - aux_sym_print_statement_repeat1 = 220, - aux_sym_assert_statement_repeat1 = 221, - aux_sym_if_statement_repeat1 = 222, - aux_sym_match_statement_repeat1 = 223, - aux_sym_match_statement_repeat2 = 224, - aux_sym_case_clause_repeat1 = 225, - aux_sym_try_statement_repeat1 = 226, - aux_sym_try_statement_repeat2 = 227, - aux_sym_with_clause_repeat1 = 228, - aux_sym_global_statement_repeat1 = 229, - aux_sym_argument_list_repeat1 = 230, - aux_sym_decorated_definition_repeat1 = 231, - aux_sym_dotted_name_repeat1 = 232, - aux_sym__parameters_repeat1 = 233, - aux_sym__patterns_repeat1 = 234, - aux_sym_comparison_operator_repeat1 = 235, - aux_sym_subscript_repeat1 = 236, - aux_sym_dictionary_repeat1 = 237, - aux_sym__comprehension_clauses_repeat1 = 238, - aux_sym__collection_elements_repeat1 = 239, - aux_sym_for_in_clause_repeat1 = 240, - aux_sym_concatenated_string_repeat1 = 241, - aux_sym_string_repeat1 = 242, - aux_sym_string_content_repeat1 = 243, - aux_sym_format_specifier_repeat1 = 244, - alias_sym_as_pattern_target = 245, - alias_sym_case_pattern = 246, - alias_sym_format_expression = 247, - anon_alias_sym_isnot = 248, - anon_alias_sym_notin = 249, + sym__match_block = 133, + sym_case_clause = 134, + sym_for_statement = 135, + sym_while_statement = 136, + sym_try_statement = 137, + sym_except_clause = 138, + sym_except_group_clause = 139, + sym_finally_clause = 140, + sym_with_statement = 141, + sym_with_clause = 142, + sym_with_item = 143, + sym_function_definition = 144, + sym_parameters = 145, + sym_lambda_parameters = 146, + sym_list_splat = 147, + sym_dictionary_splat = 148, + sym_global_statement = 149, + sym_nonlocal_statement = 150, + sym_exec_statement = 151, + sym_class_definition = 152, + sym_parenthesized_list_splat = 153, + sym_argument_list = 154, + sym_decorated_definition = 155, + sym_decorator = 156, + sym_block = 157, + sym_expression_list = 158, + sym_dotted_name = 159, + sym__parameters = 160, + sym__patterns = 161, + sym_parameter = 162, + sym_pattern = 163, + sym_tuple_pattern = 164, + sym_list_pattern = 165, + sym_default_parameter = 166, + sym_typed_default_parameter = 167, + sym_list_splat_pattern = 168, + sym_dictionary_splat_pattern = 169, + sym_as_pattern = 170, + sym__expression_within_for_in_clause = 171, + sym_expression = 172, + sym_primary_expression = 173, + sym_not_operator = 174, + sym_boolean_operator = 175, + sym_binary_operator = 176, + sym_unary_operator = 177, + sym_comparison_operator = 178, + sym_lambda = 179, + sym_lambda_within_for_in_clause = 180, + sym_assignment = 181, + sym_augmented_assignment = 182, + sym_pattern_list = 183, + sym__right_hand_side = 184, + sym_yield = 185, + sym_attribute = 186, + sym_subscript = 187, + sym_slice = 188, + sym_call = 189, + sym_typed_parameter = 190, + sym_type = 191, + sym_keyword_argument = 192, + sym_list = 193, + sym_set = 194, + sym_tuple = 195, + sym_dictionary = 196, + sym_pair = 197, + sym_list_comprehension = 198, + sym_dictionary_comprehension = 199, + sym_set_comprehension = 200, + sym_generator_expression = 201, + sym__comprehension_clauses = 202, + sym_parenthesized_expression = 203, + sym__collection_elements = 204, + sym_for_in_clause = 205, + sym_if_clause = 206, + sym_conditional_expression = 207, + sym_concatenated_string = 208, + sym_string = 209, + sym_string_content = 210, + sym_interpolation = 211, + sym__f_expression = 212, + sym_format_specifier = 213, + sym_await = 214, + sym_positional_separator = 215, + sym_keyword_separator = 216, + aux_sym_module_repeat1 = 217, + aux_sym__simple_statements_repeat1 = 218, + aux_sym_import_prefix_repeat1 = 219, + aux_sym__import_list_repeat1 = 220, + aux_sym_print_statement_repeat1 = 221, + aux_sym_assert_statement_repeat1 = 222, + aux_sym_if_statement_repeat1 = 223, + aux_sym_match_statement_repeat1 = 224, + aux_sym__match_block_repeat1 = 225, + aux_sym_case_clause_repeat1 = 226, + aux_sym_try_statement_repeat1 = 227, + aux_sym_try_statement_repeat2 = 228, + aux_sym_with_clause_repeat1 = 229, + aux_sym_global_statement_repeat1 = 230, + aux_sym_argument_list_repeat1 = 231, + aux_sym_decorated_definition_repeat1 = 232, + aux_sym_dotted_name_repeat1 = 233, + aux_sym__parameters_repeat1 = 234, + aux_sym__patterns_repeat1 = 235, + aux_sym_comparison_operator_repeat1 = 236, + aux_sym_subscript_repeat1 = 237, + aux_sym_dictionary_repeat1 = 238, + aux_sym__comprehension_clauses_repeat1 = 239, + aux_sym__collection_elements_repeat1 = 240, + aux_sym_for_in_clause_repeat1 = 241, + aux_sym_concatenated_string_repeat1 = 242, + aux_sym_string_repeat1 = 243, + aux_sym_string_content_repeat1 = 244, + aux_sym_format_specifier_repeat1 = 245, + alias_sym_as_pattern_target = 246, + alias_sym_case_pattern = 247, + alias_sym_format_expression = 248, + anon_alias_sym_isnot = 249, + anon_alias_sym_notin = 250, }; static const char * const ts_symbol_names[] = { @@ -402,6 +403,7 @@ static const char * const ts_symbol_names[] = { [sym_elif_clause] = "elif_clause", [sym_else_clause] = "else_clause", [sym_match_statement] = "match_statement", + [sym__match_block] = "block", [sym_case_clause] = "case_clause", [sym_for_statement] = "for_statement", [sym_while_statement] = "while_statement", @@ -493,7 +495,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_assert_statement_repeat1] = "assert_statement_repeat1", [aux_sym_if_statement_repeat1] = "if_statement_repeat1", [aux_sym_match_statement_repeat1] = "match_statement_repeat1", - [aux_sym_match_statement_repeat2] = "match_statement_repeat2", + [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_try_statement_repeat2] = "try_statement_repeat2", @@ -655,6 +657,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_elif_clause] = sym_elif_clause, [sym_else_clause] = sym_else_clause, [sym_match_statement] = sym_match_statement, + [sym__match_block] = sym_block, [sym_case_clause] = sym_case_clause, [sym_for_statement] = sym_for_statement, [sym_while_statement] = sym_while_statement, @@ -746,7 +749,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_assert_statement_repeat1] = aux_sym_assert_statement_repeat1, [aux_sym_if_statement_repeat1] = aux_sym_if_statement_repeat1, [aux_sym_match_statement_repeat1] = aux_sym_match_statement_repeat1, - [aux_sym_match_statement_repeat2] = aux_sym_match_statement_repeat2, + [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_try_statement_repeat2] = aux_sym_try_statement_repeat2, @@ -1307,6 +1310,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__match_block] = { + .visible = true, + .named = true, + }, [sym_case_clause] = { .visible = true, .named = true, @@ -1675,7 +1682,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_match_statement_repeat2] = { + [aux_sym__match_block_repeat1] = { .visible = false, .named = false, }, @@ -1867,113 +1874,113 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [15] = {.index = 14, .length = 2}, [16] = {.index = 16, .length = 1}, [17] = {.index = 17, .length = 1}, - [18] = {.index = 18, .length = 1}, - [19] = {.index = 19, .length = 2}, - [20] = {.index = 21, .length = 2}, - [21] = {.index = 23, .length = 2}, - [22] = {.index = 25, .length = 3}, - [23] = {.index = 28, .length = 1}, - [24] = {.index = 29, .length = 2}, - [25] = {.index = 31, .length = 1}, - [26] = {.index = 32, .length = 2}, + [18] = {.index = 18, .length = 2}, + [19] = {.index = 20, .length = 2}, + [20] = {.index = 22, .length = 2}, + [21] = {.index = 24, .length = 3}, + [22] = {.index = 27, .length = 1}, + [23] = {.index = 28, .length = 2}, + [24] = {.index = 30, .length = 1}, + [25] = {.index = 31, .length = 2}, + [26] = {.index = 33, .length = 1}, [27] = {.index = 34, .length = 1}, - [28] = {.index = 35, .length = 1}, - [29] = {.index = 36, .length = 2}, - [30] = {.index = 38, .length = 2}, - [31] = {.index = 40, .length = 1}, - [32] = {.index = 41, .length = 2}, - [33] = {.index = 43, .length = 1}, - [35] = {.index = 44, .length = 1}, - [36] = {.index = 45, .length = 2}, - [37] = {.index = 47, .length = 1}, - [38] = {.index = 48, .length = 2}, - [39] = {.index = 50, .length = 1}, - [40] = {.index = 51, .length = 2}, - [41] = {.index = 53, .length = 2}, - [42] = {.index = 55, .length = 2}, - [43] = {.index = 57, .length = 2}, - [44] = {.index = 18, .length = 1}, - [45] = {.index = 59, .length = 1}, - [46] = {.index = 60, .length = 2}, - [47] = {.index = 62, .length = 1}, - [48] = {.index = 63, .length = 2}, - [49] = {.index = 65, .length = 2}, + [28] = {.index = 35, .length = 2}, + [29] = {.index = 37, .length = 2}, + [30] = {.index = 39, .length = 1}, + [31] = {.index = 40, .length = 2}, + [32] = {.index = 42, .length = 1}, + [34] = {.index = 43, .length = 1}, + [35] = {.index = 44, .length = 2}, + [36] = {.index = 46, .length = 1}, + [37] = {.index = 47, .length = 2}, + [38] = {.index = 49, .length = 1}, + [39] = {.index = 50, .length = 3}, + [40] = {.index = 53, .length = 2}, + [41] = {.index = 55, .length = 2}, + [42] = {.index = 17, .length = 1}, + [43] = {.index = 57, .length = 1}, + [44] = {.index = 58, .length = 2}, + [45] = {.index = 60, .length = 1}, + [46] = {.index = 61, .length = 2}, + [47] = {.index = 63, .length = 2}, + [48] = {.index = 65, .length = 2}, + [49] = {.index = 67, .length = 2}, [50] = {.index = 67, .length = 2}, - [51] = {.index = 69, .length = 2}, [52] = {.index = 69, .length = 2}, - [54] = {.index = 71, .length = 2}, - [55] = {.index = 73, .length = 2}, - [56] = {.index = 75, .length = 3}, - [57] = {.index = 78, .length = 3}, - [58] = {.index = 81, .length = 3}, - [59] = {.index = 84, .length = 2}, - [60] = {.index = 86, .length = 2}, - [61] = {.index = 88, .length = 3}, - [62] = {.index = 91, .length = 1}, - [63] = {.index = 92, .length = 3}, - [64] = {.index = 95, .length = 3}, - [65] = {.index = 98, .length = 2}, - [66] = {.index = 100, .length = 2}, - [67] = {.index = 102, .length = 3}, - [68] = {.index = 105, .length = 3}, - [69] = {.index = 108, .length = 3}, - [70] = {.index = 111, .length = 3}, - [71] = {.index = 19, .length = 2}, - [72] = {.index = 114, .length = 1}, - [73] = {.index = 115, .length = 3}, - [74] = {.index = 118, .length = 2}, - [75] = {.index = 120, .length = 2}, - [76] = {.index = 122, .length = 2}, - [77] = {.index = 124, .length = 3}, - [78] = {.index = 127, .length = 1}, - [79] = {.index = 128, .length = 2}, - [80] = {.index = 130, .length = 2}, - [81] = {.index = 132, .length = 4}, - [82] = {.index = 136, .length = 4}, - [83] = {.index = 140, .length = 4}, - [84] = {.index = 144, .length = 3}, - [85] = {.index = 147, .length = 2}, - [86] = {.index = 149, .length = 3}, - [87] = {.index = 152, .length = 3}, - [88] = {.index = 155, .length = 4}, - [90] = {.index = 159, .length = 4}, - [91] = {.index = 163, .length = 4}, - [92] = {.index = 167, .length = 3}, - [93] = {.index = 170, .length = 3}, - [94] = {.index = 173, .length = 2}, - [95] = {.index = 175, .length = 3}, - [96] = {.index = 178, .length = 5}, - [97] = {.index = 183, .length = 1}, - [98] = {.index = 184, .length = 2}, - [99] = {.index = 186, .length = 2}, - [100] = {.index = 188, .length = 3}, - [101] = {.index = 191, .length = 4}, - [102] = {.index = 195, .length = 4}, - [103] = {.index = 199, .length = 4}, - [105] = {.index = 203, .length = 4}, - [106] = {.index = 207, .length = 3}, - [107] = {.index = 210, .length = 2}, - [108] = {.index = 212, .length = 3}, - [109] = {.index = 215, .length = 3}, - [110] = {.index = 218, .length = 3}, - [111] = {.index = 221, .length = 4}, - [112] = {.index = 225, .length = 4}, - [113] = {.index = 229, .length = 4}, - [114] = {.index = 233, .length = 5}, - [115] = {.index = 238, .length = 5}, - [116] = {.index = 243, .length = 3}, - [117] = {.index = 246, .length = 3}, - [118] = {.index = 249, .length = 4}, - [119] = {.index = 253, .length = 3}, - [120] = {.index = 256, .length = 4}, - [121] = {.index = 260, .length = 4}, - [122] = {.index = 264, .length = 5}, - [123] = {.index = 269, .length = 5}, - [125] = {.index = 274, .length = 4}, - [126] = {.index = 278, .length = 4}, - [127] = {.index = 282, .length = 4}, - [128] = {.index = 286, .length = 5}, - [129] = {.index = 291, .length = 5}, + [53] = {.index = 71, .length = 2}, + [54] = {.index = 73, .length = 1}, + [55] = {.index = 74, .length = 3}, + [56] = {.index = 77, .length = 3}, + [57] = {.index = 80, .length = 3}, + [58] = {.index = 83, .length = 3}, + [59] = {.index = 86, .length = 4}, + [60] = {.index = 90, .length = 1}, + [61] = {.index = 91, .length = 3}, + [62] = {.index = 94, .length = 3}, + [63] = {.index = 97, .length = 2}, + [64] = {.index = 99, .length = 2}, + [65] = {.index = 101, .length = 3}, + [66] = {.index = 104, .length = 3}, + [67] = {.index = 107, .length = 3}, + [68] = {.index = 110, .length = 3}, + [69] = {.index = 18, .length = 2}, + [70] = {.index = 113, .length = 1}, + [71] = {.index = 114, .length = 3}, + [72] = {.index = 117, .length = 2}, + [73] = {.index = 119, .length = 2}, + [74] = {.index = 121, .length = 2}, + [75] = {.index = 123, .length = 3}, + [76] = {.index = 126, .length = 1}, + [77] = {.index = 127, .length = 2}, + [78] = {.index = 129, .length = 2}, + [79] = {.index = 131, .length = 4}, + [80] = {.index = 135, .length = 2}, + [81] = {.index = 137, .length = 4}, + [82] = {.index = 141, .length = 4}, + [83] = {.index = 145, .length = 1}, + [84] = {.index = 146, .length = 4}, + [85] = {.index = 150, .length = 2}, + [86] = {.index = 152, .length = 3}, + [87] = {.index = 155, .length = 3}, + [88] = {.index = 158, .length = 4}, + [90] = {.index = 162, .length = 4}, + [91] = {.index = 166, .length = 4}, + [92] = {.index = 170, .length = 3}, + [93] = {.index = 173, .length = 3}, + [94] = {.index = 176, .length = 2}, + [95] = {.index = 178, .length = 3}, + [96] = {.index = 181, .length = 5}, + [97] = {.index = 186, .length = 3}, + [98] = {.index = 189, .length = 4}, + [99] = {.index = 193, .length = 4}, + [100] = {.index = 197, .length = 4}, + [102] = {.index = 201, .length = 4}, + [103] = {.index = 205, .length = 3}, + [104] = {.index = 208, .length = 1}, + [105] = {.index = 209, .length = 2}, + [106] = {.index = 211, .length = 2}, + [107] = {.index = 213, .length = 4}, + [108] = {.index = 217, .length = 4}, + [109] = {.index = 221, .length = 4}, + [110] = {.index = 225, .length = 5}, + [111] = {.index = 230, .length = 5}, + [112] = {.index = 235, .length = 2}, + [113] = {.index = 237, .length = 3}, + [114] = {.index = 240, .length = 3}, + [115] = {.index = 243, .length = 3}, + [116] = {.index = 246, .length = 5}, + [117] = {.index = 251, .length = 5}, + [119] = {.index = 256, .length = 3}, + [120] = {.index = 259, .length = 3}, + [121] = {.index = 262, .length = 4}, + [122] = {.index = 266, .length = 3}, + [123] = {.index = 269, .length = 4}, + [124] = {.index = 273, .length = 4}, + [125] = {.index = 277, .length = 4}, + [126] = {.index = 281, .length = 4}, + [127] = {.index = 285, .length = 4}, + [128] = {.index = 289, .length = 5}, + [129] = {.index = 294, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2008,384 +2015,387 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [16] = {field_cause, 2}, [17] = - {field_subject, 1}, - [18] = {field_body, 2}, - [19] = + [18] = {field_name, 0}, {field_value, 2}, - [21] = + [20] = {field_left, 0}, {field_type, 2}, - [23] = + [22] = {field_left, 0}, {field_right, 2}, - [25] = + [24] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [28] = + [27] = {field_alias, 2}, - [29] = + [28] = {field_attribute, 2}, {field_object, 0}, - [31] = + [30] = {field_operators, 0}, - [32] = + [31] = {field_operators, 0, .inherited = true}, {field_operators, 1, .inherited = true}, - [34] = + [33] = {field_expression, 1}, - [35] = + [34] = {field_name, 1}, - [36] = + [35] = {field_name, 0, .inherited = true}, {field_name, 1, .inherited = true}, - [38] = + [37] = {field_alias, 2}, {field_name, 0}, - [40] = + [39] = {field_name, 3, .inherited = true}, - [41] = + [40] = {field_module_name, 1}, {field_name, 3, .inherited = true}, - [43] = + [42] = {field_module_name, 1}, - [44] = + [43] = {field_body, 1}, - [45] = + [44] = {field_argument, 0, .inherited = true}, {field_argument, 1, .inherited = true}, - [47] = + [46] = {field_cause, 3}, - [48] = + [47] = {field_condition, 1}, {field_consequence, 3}, + [49] = + {field_subject, 1}, [50] = - {field_alternative, 0}, - [51] = {field_alternative, 3, .inherited = true}, + {field_body, 3}, {field_subject, 1}, [53] = - {field_subject, 1}, - {field_subject, 2, .inherited = true}, - [55] = {field_subject, 0, .inherited = true}, {field_subject, 1, .inherited = true}, - [57] = + [55] = {field_body, 3}, {field_condition, 1}, - [59] = + [57] = {field_body, 3}, - [60] = + [58] = {field_body, 3}, {field_name, 1}, - [62] = + [60] = {field_type, 2}, - [63] = + [61] = {field_body, 3}, {field_parameters, 1}, - [65] = + [63] = {field_key, 0}, {field_value, 2}, - [67] = + [65] = {field_subscript, 2}, {field_value, 0}, - [69] = + [67] = {field_operators, 0}, {field_operators, 1}, - [71] = + [69] = {field_expression, 1}, {field_type_conversion, 2}, - [73] = + [71] = {field_expression, 1}, {field_format_specifier, 2}, - [75] = + [73] = + {field_alternative, 0}, + [74] = {field_alternative, 4}, {field_condition, 1}, {field_consequence, 3}, - [78] = + [77] = {field_alternative, 4, .inherited = true}, {field_condition, 1}, {field_consequence, 3}, - [81] = + [80] = {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [84] = + [83] = {field_alternative, 4, .inherited = true}, + {field_body, 4}, {field_subject, 1}, [86] = - {field_alternative, 0, .inherited = true}, - {field_alternative, 1, .inherited = true}, - [88] = {field_alternative, 4, .inherited = true}, + {field_body, 4}, {field_subject, 1}, {field_subject, 2, .inherited = true}, - [91] = + [90] = {field_body, 4}, - [92] = + [91] = {field_alternative, 4}, {field_body, 3}, {field_condition, 1}, - [95] = + [94] = {field_body, 3}, {field_body, 4}, {field_condition, 1}, - [98] = + [97] = {field_body, 2}, {field_body, 3}, - [100] = + [99] = {field_body, 3}, {field_body, 4}, - [102] = + [101] = {field_body, 4}, {field_name, 1}, {field_parameters, 2}, - [105] = + [104] = {field_body, 3}, {field_body, 4}, {field_name, 1}, - [108] = + [107] = {field_body, 4}, {field_name, 1}, {field_superclasses, 2}, - [111] = + [110] = {field_left, 0}, {field_right, 4}, {field_type, 2}, - [114] = + [113] = {field_subscript, 1}, - [115] = + [114] = {field_subscript, 2}, {field_subscript, 3, .inherited = true}, {field_value, 0}, - [118] = + [117] = {field_subscript, 0, .inherited = true}, {field_subscript, 1, .inherited = true}, - [120] = + [119] = {field_expression, 1}, {field_type_conversion, 3}, - [122] = + [121] = {field_expression, 1}, {field_format_specifier, 3}, - [124] = + [123] = {field_expression, 1}, {field_format_specifier, 3}, {field_type_conversion, 2}, - [127] = + [126] = {field_name, 4, .inherited = true}, - [128] = + [127] = {field_module_name, 1}, {field_name, 4, .inherited = true}, - [130] = + [129] = {field_left, 1}, {field_right, 3}, - [132] = + [131] = {field_alternative, 4, .inherited = true}, {field_alternative, 5}, {field_condition, 1}, {field_consequence, 3}, - [136] = + [135] = + {field_alternative, 0, .inherited = true}, + {field_alternative, 1, .inherited = true}, + [137] = {field_alternative, 5}, {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [140] = + [141] = {field_alternative, 5, .inherited = true}, {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [144] = + [145] = + {field_alternative, 1, .inherited = true}, + [146] = {field_alternative, 5, .inherited = true}, + {field_body, 5}, {field_subject, 1}, {field_subject, 2, .inherited = true}, - [147] = + [150] = {field_body, 4}, {field_body, 5}, - [149] = + [152] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, - [152] = + [155] = {field_body, 5}, {field_left, 1}, {field_right, 3}, - [155] = + [158] = {field_alternative, 5}, {field_body, 3}, {field_body, 4}, {field_condition, 1}, - [159] = + [162] = {field_body, 4}, {field_body, 5}, {field_name, 1}, {field_parameters, 2}, - [163] = + [166] = {field_body, 4}, {field_body, 5}, {field_name, 1}, {field_superclasses, 2}, - [167] = + [170] = {field_name, 0}, {field_type, 2}, {field_value, 4}, - [170] = + [173] = {field_expression, 1}, {field_format_specifier, 4}, {field_type_conversion, 3}, - [173] = + [176] = {field_left, 2}, {field_right, 4}, - [175] = + [178] = {field_left, 1}, {field_right, 3}, {field_right, 4}, - [178] = + [181] = {field_alternative, 5, .inherited = true}, {field_alternative, 6}, {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [183] = - {field_pattern, 1}, - [184] = - {field_consequence, 3}, - {field_pattern, 1}, [186] = - {field_pattern, 0, .inherited = true}, - {field_pattern, 1, .inherited = true}, - [188] = {field_body, 6}, {field_left, 2}, {field_right, 4}, - [191] = + [189] = {field_body, 5}, {field_body, 6}, {field_name, 2}, {field_parameters, 3}, - [195] = + [193] = {field_alternative, 6}, {field_body, 5}, {field_left, 1}, {field_right, 3}, - [199] = + [197] = {field_body, 5}, {field_body, 6}, {field_left, 1}, {field_right, 3}, - [203] = + [201] = {field_body, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [207] = + [205] = {field_left, 2}, {field_right, 4}, {field_right, 5}, - [210] = - {field_consequence, 4}, + [208] = {field_pattern, 1}, - [212] = + [209] = {field_consequence, 3}, - {field_consequence, 4}, - {field_pattern, 1}, - [215] = - {field_consequence, 4}, - {field_guard, 2}, - {field_pattern, 1}, - [218] = - {field_consequence, 4}, {field_pattern, 1}, - {field_pattern, 2, .inherited = true}, - [221] = + [211] = + {field_pattern, 0, .inherited = true}, + {field_pattern, 1, .inherited = true}, + [213] = {field_alternative, 7}, {field_body, 6}, {field_left, 2}, {field_right, 4}, - [225] = + [217] = {field_body, 6}, {field_body, 7}, {field_left, 2}, {field_right, 4}, - [229] = + [221] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [233] = + [225] = {field_alternative, 7}, {field_body, 5}, {field_body, 6}, {field_left, 1}, {field_right, 3}, - [238] = + [230] = {field_body, 6}, {field_body, 7}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, + [235] = + {field_consequence, 4}, + {field_pattern, 1}, + [237] = + {field_consequence, 3}, + {field_consequence, 4}, + {field_pattern, 1}, + [240] = + {field_consequence, 4}, + {field_guard, 2}, + {field_pattern, 1}, [243] = {field_consequence, 4}, - {field_consequence, 5}, {field_pattern, 1}, + {field_pattern, 2, .inherited = true}, [246] = + {field_alternative, 8}, + {field_body, 6}, + {field_body, 7}, + {field_left, 2}, + {field_right, 4}, + [251] = + {field_body, 7}, + {field_body, 8}, + {field_name, 2}, + {field_parameters, 3}, + {field_return_type, 5}, + [256] = + {field_consequence, 4}, + {field_consequence, 5}, + {field_pattern, 1}, + [259] = {field_consequence, 5}, {field_guard, 3}, {field_pattern, 1}, - [249] = + [262] = {field_consequence, 4}, {field_consequence, 5}, {field_guard, 2}, {field_pattern, 1}, - [253] = + [266] = {field_consequence, 5}, {field_pattern, 1}, {field_pattern, 2, .inherited = true}, - [256] = + [269] = {field_consequence, 4}, {field_consequence, 5}, {field_pattern, 1}, {field_pattern, 2, .inherited = true}, - [260] = + [273] = {field_consequence, 5}, {field_guard, 3}, {field_pattern, 1}, {field_pattern, 2, .inherited = true}, - [264] = - {field_alternative, 8}, - {field_body, 6}, - {field_body, 7}, - {field_left, 2}, - {field_right, 4}, - [269] = - {field_body, 7}, - {field_body, 8}, - {field_name, 2}, - {field_parameters, 3}, - {field_return_type, 5}, - [274] = + [277] = {field_consequence, 5}, {field_consequence, 6}, {field_guard, 3}, {field_pattern, 1}, - [278] = + [281] = {field_consequence, 5}, {field_consequence, 6}, {field_pattern, 1}, {field_pattern, 2, .inherited = true}, - [282] = + [285] = {field_consequence, 6}, {field_guard, 4}, {field_pattern, 1}, {field_pattern, 2, .inherited = true}, - [286] = + [289] = {field_consequence, 5}, {field_consequence, 6}, {field_guard, 3}, {field_pattern, 1}, {field_pattern, 2, .inherited = true}, - [291] = + [294] = {field_consequence, 6}, {field_consequence, 7}, {field_guard, 4}, @@ -2404,60 +2414,60 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [5] = { [1] = sym_identifier, }, - [23] = { + [22] = { [2] = alias_sym_as_pattern_target, }, - [34] = { + [33] = { [1] = sym_parenthesized_expression, }, - [38] = { + [37] = { [3] = sym_block, }, - [43] = { + [41] = { [3] = sym_block, }, - [44] = { + [42] = { [2] = sym_block, }, - [45] = { + [43] = { [3] = sym_block, }, - [46] = { + [44] = { [3] = sym_block, }, - [51] = { + [49] = { [0] = anon_alias_sym_notin, [1] = anon_alias_sym_notin, }, - [52] = { + [50] = { [0] = anon_alias_sym_isnot, [1] = anon_alias_sym_isnot, }, - [53] = { + [51] = { [0] = alias_sym_format_expression, }, - [56] = { + [55] = { [3] = sym_block, }, - [57] = { + [56] = { [3] = sym_block, }, - [62] = { + [60] = { [4] = sym_block, }, - [63] = { + [61] = { [3] = sym_block, }, - [67] = { + [65] = { [4] = sym_block, }, - [69] = { + [67] = { [4] = sym_block, }, - [71] = { + [69] = { [0] = sym_identifier, }, - [81] = { + [79] = { [3] = sym_block, }, [86] = { @@ -2470,67 +2480,67 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [2] = sym_block, }, [97] = { - [1] = alias_sym_case_pattern, - }, - [98] = { - [1] = alias_sym_case_pattern, - [3] = sym_block, - }, - [100] = { [6] = sym_block, }, - [102] = { + [99] = { [5] = sym_block, }, - [104] = { + [101] = { [3] = sym_block, }, - [105] = { + [102] = { [6] = sym_block, }, - [107] = { + [104] = { [1] = alias_sym_case_pattern, - [4] = sym_block, }, - [108] = { + [105] = { [1] = alias_sym_case_pattern, + [3] = sym_block, + }, + [107] = { + [6] = sym_block, }, [109] = { - [1] = alias_sym_case_pattern, - [4] = sym_block, + [7] = sym_block, }, - [110] = { + [112] = { [1] = alias_sym_case_pattern, [4] = sym_block, }, - [111] = { - [6] = sym_block, - }, [113] = { - [7] = sym_block, + [1] = alias_sym_case_pattern, }, - [116] = { + [114] = { [1] = alias_sym_case_pattern, + [4] = sym_block, }, - [117] = { + [115] = { [1] = alias_sym_case_pattern, - [5] = sym_block, + [4] = sym_block, }, [118] = { - [1] = alias_sym_case_pattern, + [5] = sym_block, }, [119] = { [1] = alias_sym_case_pattern, - [5] = sym_block, }, [120] = { [1] = alias_sym_case_pattern, + [5] = sym_block, }, [121] = { [1] = alias_sym_case_pattern, + }, + [122] = { + [1] = alias_sym_case_pattern, [5] = sym_block, }, + [123] = { + [1] = alias_sym_case_pattern, + }, [124] = { + [1] = alias_sym_case_pattern, [5] = sym_block, }, [125] = { @@ -2578,74 +2588,74 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3] = 3, [4] = 4, [5] = 5, - [6] = 6, - [7] = 7, + [6] = 2, + [7] = 4, [8] = 8, - [9] = 9, + [9] = 8, [10] = 10, - [11] = 11, + [11] = 10, [12] = 12, [13] = 13, - [14] = 14, - [15] = 6, + [14] = 5, + [15] = 13, [16] = 16, - [17] = 8, + [17] = 17, [18] = 18, [19] = 19, - [20] = 9, + [20] = 20, [21] = 21, - [22] = 10, - [23] = 12, - [24] = 24, + [22] = 22, + [23] = 16, + [24] = 17, [25] = 25, - [26] = 14, - [27] = 2, + [26] = 26, + [27] = 27, [28] = 28, - [29] = 19, + [29] = 29, [30] = 30, - [31] = 21, - [32] = 32, - [33] = 25, + [31] = 31, + [32] = 3, + [33] = 18, [34] = 34, [35] = 35, [36] = 36, - [37] = 37, + [37] = 19, [38] = 38, - [39] = 24, - [40] = 5, - [41] = 28, + [39] = 34, + [40] = 20, + [41] = 21, [42] = 36, - [43] = 38, - [44] = 30, - [45] = 32, - [46] = 37, + [43] = 43, + [44] = 31, + [45] = 12, + [46] = 30, [47] = 47, - [48] = 34, - [49] = 18, - [50] = 50, - [51] = 7, - [52] = 3, - [53] = 4, - [54] = 47, - [55] = 50, - [56] = 11, - [57] = 13, - [58] = 35, - [59] = 16, - [60] = 60, - [61] = 61, - [62] = 60, - [63] = 60, - [64] = 60, - [65] = 60, + [48] = 26, + [49] = 49, + [50] = 29, + [51] = 35, + [52] = 52, + [53] = 52, + [54] = 54, + [55] = 52, + [56] = 56, + [57] = 52, + [58] = 52, + [59] = 52, + [60] = 52, + [61] = 52, + [62] = 56, + [63] = 63, + [64] = 64, + [65] = 64, [66] = 66, - [67] = 60, - [68] = 66, - [69] = 60, + [67] = 67, + [68] = 68, + [69] = 69, [70] = 70, [71] = 71, [72] = 72, - [73] = 72, + [73] = 73, [74] = 74, [75] = 75, [76] = 76, @@ -2653,2470 +2663,2443 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [78] = 78, [79] = 79, [80] = 80, - [81] = 81, + [81] = 69, [82] = 82, [83] = 83, [84] = 84, [85] = 85, [86] = 86, - [87] = 82, - [88] = 88, + [87] = 87, + [88] = 82, [89] = 89, - [90] = 85, - [91] = 86, - [92] = 88, - [93] = 89, - [94] = 94, - [95] = 95, + [90] = 74, + [91] = 72, + [92] = 80, + [93] = 93, + [94] = 76, + [95] = 87, [96] = 96, - [97] = 97, - [98] = 98, - [99] = 99, + [97] = 85, + [98] = 71, + [99] = 75, [100] = 100, [101] = 101, - [102] = 102, - [103] = 103, - [104] = 94, - [105] = 105, - [106] = 77, - [107] = 79, - [108] = 81, - [109] = 78, - [110] = 110, - [111] = 111, - [112] = 95, - [113] = 105, - [114] = 100, - [115] = 98, - [116] = 96, - [117] = 111, - [118] = 110, - [119] = 84, - [120] = 76, - [121] = 102, - [122] = 83, - [123] = 123, - [124] = 80, - [125] = 97, - [126] = 75, - [127] = 123, - [128] = 99, - [129] = 103, - [130] = 101, - [131] = 131, - [132] = 131, + [102] = 100, + [103] = 89, + [104] = 104, + [105] = 68, + [106] = 104, + [107] = 107, + [108] = 108, + [109] = 96, + [110] = 108, + [111] = 101, + [112] = 77, + [113] = 113, + [114] = 84, + [115] = 86, + [116] = 116, + [117] = 116, + [118] = 118, + [119] = 116, + [120] = 118, + [121] = 118, + [122] = 116, + [123] = 116, + [124] = 118, + [125] = 118, + [126] = 118, + [127] = 116, + [128] = 118, + [129] = 116, + [130] = 116, + [131] = 118, + [132] = 132, [133] = 133, - [134] = 131, - [135] = 133, - [136] = 133, - [137] = 133, - [138] = 131, - [139] = 133, - [140] = 131, - [141] = 133, - [142] = 133, - [143] = 131, - [144] = 131, - [145] = 145, - [146] = 74, - [147] = 71, - [148] = 148, - [149] = 148, - [150] = 150, - [151] = 151, - [152] = 148, - [153] = 153, - [154] = 148, - [155] = 74, - [156] = 156, - [157] = 151, - [158] = 71, - [159] = 71, - [160] = 151, - [161] = 74, - [162] = 148, - [163] = 151, - [164] = 148, - [165] = 148, - [166] = 156, - [167] = 148, - [168] = 74, - [169] = 153, - [170] = 74, - [171] = 156, - [172] = 151, - [173] = 151, - [174] = 151, - [175] = 74, - [176] = 151, - [177] = 150, - [178] = 150, - [179] = 74, - [180] = 180, - [181] = 74, - [182] = 150, - [183] = 180, - [184] = 150, - [185] = 150, - [186] = 151, - [187] = 187, - [188] = 188, - [189] = 189, - [190] = 190, - [191] = 190, - [192] = 189, - [193] = 190, - [194] = 188, - [195] = 188, - [196] = 189, - [197] = 190, - [198] = 188, - [199] = 189, - [200] = 189, - [201] = 189, - [202] = 188, - [203] = 203, - [204] = 189, - [205] = 190, - [206] = 189, - [207] = 188, - [208] = 190, - [209] = 209, - [210] = 189, - [211] = 188, - [212] = 203, - [213] = 213, - [214] = 190, - [215] = 188, - [216] = 190, - [217] = 189, + [134] = 133, + [135] = 67, + [136] = 66, + [137] = 137, + [138] = 133, + [139] = 137, + [140] = 133, + [141] = 141, + [142] = 67, + [143] = 143, + [144] = 144, + [145] = 137, + [146] = 67, + [147] = 67, + [148] = 133, + [149] = 67, + [150] = 66, + [151] = 144, + [152] = 66, + [153] = 141, + [154] = 137, + [155] = 133, + [156] = 144, + [157] = 133, + [158] = 133, + [159] = 137, + [160] = 137, + [161] = 137, + [162] = 67, + [163] = 143, + [164] = 137, + [165] = 143, + [166] = 67, + [167] = 167, + [168] = 143, + [169] = 167, + [170] = 67, + [171] = 143, + [172] = 143, + [173] = 137, + [174] = 174, + [175] = 175, + [176] = 175, + [177] = 174, + [178] = 175, + [179] = 179, + [180] = 175, + [181] = 181, + [182] = 181, + [183] = 183, + [184] = 184, + [185] = 185, + [186] = 174, + [187] = 183, + [188] = 174, + [189] = 175, + [190] = 175, + [191] = 175, + [192] = 174, + [193] = 183, + [194] = 174, + [195] = 183, + [196] = 175, + [197] = 174, + [198] = 174, + [199] = 183, + [200] = 183, + [201] = 175, + [202] = 175, + [203] = 183, + [204] = 183, + [205] = 205, + [206] = 206, + [207] = 207, + [208] = 207, + [209] = 205, + [210] = 210, + [211] = 211, + [212] = 211, + [213] = 211, + [214] = 214, + [215] = 211, + [216] = 211, + [217] = 211, [218] = 218, - [219] = 219, - [220] = 220, - [221] = 220, + [219] = 206, + [220] = 211, + [221] = 211, [222] = 222, [223] = 223, - [224] = 218, - [225] = 222, + [224] = 224, + [225] = 225, [226] = 222, [227] = 222, - [228] = 222, - [229] = 222, - [230] = 222, - [231] = 231, - [232] = 219, + [228] = 228, + [229] = 228, + [230] = 230, + [231] = 230, + [232] = 230, [233] = 233, - [234] = 222, - [235] = 235, - [236] = 236, - [237] = 236, - [238] = 238, - [239] = 235, - [240] = 240, - [241] = 235, - [242] = 242, - [243] = 240, - [244] = 242, - [245] = 245, - [246] = 246, - [247] = 242, - [248] = 245, - [249] = 242, - [250] = 245, - [251] = 236, - [252] = 238, - [253] = 246, - [254] = 235, - [255] = 236, - [256] = 238, - [257] = 240, - [258] = 240, - [259] = 235, - [260] = 242, - [261] = 246, - [262] = 246, - [263] = 235, - [264] = 240, - [265] = 245, - [266] = 236, - [267] = 238, - [268] = 238, - [269] = 236, - [270] = 238, - [271] = 238, - [272] = 245, - [273] = 236, - [274] = 242, - [275] = 240, - [276] = 235, - [277] = 240, - [278] = 235, - [279] = 236, - [280] = 238, - [281] = 246, - [282] = 246, - [283] = 242, - [284] = 245, - [285] = 242, - [286] = 245, - [287] = 240, - [288] = 245, - [289] = 289, + [234] = 233, + [235] = 225, + [236] = 223, + [237] = 228, + [238] = 224, + [239] = 225, + [240] = 222, + [241] = 224, + [242] = 233, + [243] = 230, + [244] = 223, + [245] = 223, + [246] = 233, + [247] = 223, + [248] = 224, + [249] = 225, + [250] = 233, + [251] = 224, + [252] = 222, + [253] = 228, + [254] = 233, + [255] = 230, + [256] = 223, + [257] = 228, + [258] = 224, + [259] = 224, + [260] = 230, + [261] = 228, + [262] = 223, + [263] = 224, + [264] = 233, + [265] = 223, + [266] = 225, + [267] = 233, + [268] = 230, + [269] = 228, + [270] = 230, + [271] = 228, + [272] = 222, + [273] = 225, + [274] = 222, + [275] = 222, + [276] = 276, + [277] = 277, + [278] = 278, + [279] = 279, + [280] = 279, + [281] = 276, + [282] = 282, + [283] = 283, + [284] = 284, + [285] = 282, + [286] = 286, + [287] = 282, + [288] = 279, + [289] = 286, [290] = 290, - [291] = 291, - [292] = 292, - [293] = 291, - [294] = 294, - [295] = 291, - [296] = 292, + [291] = 283, + [292] = 283, + [293] = 284, + [294] = 276, + [295] = 286, + [296] = 284, [297] = 297, - [298] = 297, - [299] = 289, - [300] = 297, + [298] = 214, + [299] = 297, + [300] = 300, [301] = 301, - [302] = 290, - [303] = 292, + [302] = 297, + [303] = 300, [304] = 301, [305] = 301, - [306] = 306, - [307] = 289, - [308] = 308, - [309] = 290, - [310] = 310, - [311] = 311, - [312] = 312, - [313] = 311, - [314] = 311, - [315] = 315, - [316] = 310, - [317] = 311, - [318] = 233, - [319] = 233, - [320] = 233, - [321] = 312, - [322] = 310, - [323] = 311, - [324] = 312, - [325] = 310, - [326] = 310, - [327] = 310, - [328] = 310, - [329] = 310, - [330] = 311, - [331] = 311, - [332] = 311, + [306] = 297, + [307] = 300, + [308] = 300, + [309] = 309, + [310] = 300, + [311] = 214, + [312] = 300, + [313] = 297, + [314] = 297, + [315] = 297, + [316] = 214, + [317] = 297, + [318] = 300, + [319] = 300, + [320] = 320, + [321] = 290, + [322] = 322, + [323] = 323, + [324] = 324, + [325] = 325, + [326] = 322, + [327] = 323, + [328] = 324, + [329] = 329, + [330] = 278, + [331] = 322, + [332] = 332, [333] = 333, - [334] = 334, - [335] = 333, - [336] = 336, - [337] = 334, - [338] = 334, - [339] = 339, - [340] = 340, - [341] = 334, - [342] = 334, - [343] = 334, - [344] = 340, - [345] = 333, - [346] = 334, - [347] = 333, - [348] = 336, - [349] = 339, - [350] = 339, - [351] = 339, - [352] = 339, - [353] = 308, - [354] = 333, - [355] = 333, - [356] = 356, - [357] = 339, - [358] = 333, - [359] = 334, - [360] = 333, - [361] = 339, - [362] = 339, - [363] = 334, - [364] = 339, - [365] = 339, - [366] = 294, + [334] = 324, + [335] = 335, + [336] = 322, + [337] = 324, + [338] = 323, + [339] = 323, + [340] = 322, + [341] = 323, + [342] = 324, + [343] = 323, + [344] = 324, + [345] = 322, + [346] = 324, + [347] = 322, + [348] = 323, + [349] = 324, + [350] = 324, + [351] = 322, + [352] = 324, + [353] = 323, + [354] = 322, + [355] = 323, + [356] = 322, + [357] = 323, + [358] = 358, + [359] = 359, + [360] = 360, + [361] = 361, + [362] = 362, + [363] = 363, + [364] = 364, + [365] = 365, + [366] = 366, [367] = 367, [368] = 368, - [369] = 333, + [369] = 369, [370] = 370, - [371] = 333, - [372] = 334, - [373] = 373, - [374] = 374, - [375] = 375, - [376] = 376, - [377] = 377, - [378] = 308, + [371] = 363, + [372] = 369, + [373] = 370, + [374] = 359, + [375] = 368, + [376] = 367, + [377] = 367, + [378] = 378, [379] = 379, - [380] = 380, - [381] = 374, - [382] = 377, + [380] = 368, + [381] = 368, + [382] = 368, [383] = 383, - [384] = 377, - [385] = 385, - [386] = 294, + [384] = 278, + [385] = 364, + [386] = 358, [387] = 387, - [388] = 388, - [389] = 389, - [390] = 377, + [388] = 368, + [389] = 290, + [390] = 390, [391] = 391, [392] = 392, - [393] = 393, - [394] = 294, + [393] = 358, + [394] = 364, [395] = 395, - [396] = 395, - [397] = 397, - [398] = 377, - [399] = 377, - [400] = 400, - [401] = 377, - [402] = 308, - [403] = 403, - [404] = 377, + [396] = 396, + [397] = 278, + [398] = 370, + [399] = 359, + [400] = 290, + [401] = 401, + [402] = 368, + [403] = 362, + [404] = 368, [405] = 405, - [406] = 377, - [407] = 407, - [408] = 375, - [409] = 379, - [410] = 393, + [406] = 368, + [407] = 368, + [408] = 290, + [409] = 409, + [410] = 410, [411] = 411, [412] = 412, - [413] = 379, + [413] = 413, [414] = 414, - [415] = 397, - [416] = 393, - [417] = 374, - [418] = 405, - [419] = 377, - [420] = 395, - [421] = 385, - [422] = 375, - [423] = 423, - [424] = 424, - [425] = 425, - [426] = 308, - [427] = 294, - [428] = 428, - [429] = 429, + [415] = 415, + [416] = 416, + [417] = 409, + [418] = 418, + [419] = 418, + [420] = 415, + [421] = 421, + [422] = 412, + [423] = 414, + [424] = 416, + [425] = 278, + [426] = 426, + [427] = 427, + [428] = 427, + [429] = 413, [430] = 430, - [431] = 425, + [431] = 431, [432] = 432, [433] = 433, - [434] = 432, - [435] = 423, + [434] = 430, + [435] = 435, [436] = 436, - [437] = 437, - [438] = 424, + [437] = 433, + [438] = 436, [439] = 439, - [440] = 436, - [441] = 430, + [440] = 440, + [441] = 441, [442] = 442, - [443] = 428, - [444] = 442, + [443] = 443, + [444] = 444, [445] = 445, - [446] = 446, - [447] = 447, - [448] = 448, - [449] = 449, - [450] = 445, - [451] = 451, - [452] = 446, + [446] = 435, + [447] = 430, + [448] = 445, + [449] = 441, + [450] = 450, + [451] = 432, + [452] = 430, [453] = 453, - [454] = 454, - [455] = 451, - [456] = 453, - [457] = 457, - [458] = 458, - [459] = 449, - [460] = 460, - [461] = 447, - [462] = 448, - [463] = 449, - [464] = 445, - [465] = 446, - [466] = 453, - [467] = 448, - [468] = 468, - [469] = 469, - [470] = 447, - [471] = 458, - [472] = 453, - [473] = 447, - [474] = 449, - [475] = 458, - [476] = 476, - [477] = 477, - [478] = 478, + [454] = 439, + [455] = 431, + [456] = 433, + [457] = 432, + [458] = 433, + [459] = 430, + [460] = 435, + [461] = 445, + [462] = 432, + [463] = 441, + [464] = 441, + [465] = 445, + [466] = 466, + [467] = 467, + [468] = 435, + [469] = 433, + [470] = 430, + [471] = 445, + [472] = 439, + [473] = 445, + [474] = 431, + [475] = 475, + [476] = 435, + [477] = 431, + [478] = 435, [479] = 479, - [480] = 447, - [481] = 446, - [482] = 448, - [483] = 449, - [484] = 445, - [485] = 485, - [486] = 446, - [487] = 487, - [488] = 453, - [489] = 458, - [490] = 451, + [480] = 432, + [481] = 433, + [482] = 482, + [483] = 483, + [484] = 430, + [485] = 430, + [486] = 435, + [487] = 441, + [488] = 433, + [489] = 432, + [490] = 490, [491] = 491, - [492] = 446, - [493] = 447, - [494] = 494, - [495] = 495, - [496] = 451, - [497] = 445, - [498] = 449, - [499] = 448, - [500] = 500, - [501] = 447, - [502] = 458, - [503] = 453, - [504] = 446, - [505] = 449, + [492] = 492, + [493] = 483, + [494] = 482, + [495] = 445, + [496] = 431, + [497] = 441, + [498] = 490, + [499] = 441, + [500] = 441, + [501] = 501, + [502] = 445, + [503] = 431, + [504] = 432, + [505] = 505, [506] = 506, - [507] = 445, - [508] = 451, - [509] = 446, - [510] = 453, - [511] = 445, - [512] = 453, - [513] = 469, - [514] = 514, - [515] = 476, - [516] = 449, - [517] = 448, - [518] = 458, - [519] = 447, - [520] = 458, - [521] = 447, - [522] = 453, + [507] = 441, + [508] = 508, + [509] = 433, + [510] = 490, + [511] = 435, + [512] = 430, + [513] = 435, + [514] = 445, + [515] = 430, + [516] = 445, + [517] = 441, + [518] = 518, + [519] = 435, + [520] = 433, + [521] = 430, + [522] = 441, [523] = 523, - [524] = 446, - [525] = 494, - [526] = 446, - [527] = 448, - [528] = 449, - [529] = 495, - [530] = 445, - [531] = 446, - [532] = 477, - [533] = 451, - [534] = 534, - [535] = 445, - [536] = 445, - [537] = 537, - [538] = 538, - [539] = 449, - [540] = 449, - [541] = 448, - [542] = 447, - [543] = 458, - [544] = 453, - [545] = 545, - [546] = 445, - [547] = 476, - [548] = 458, - [549] = 549, - [550] = 453, - [551] = 551, - [552] = 451, - [553] = 451, - [554] = 451, - [555] = 448, - [556] = 556, - [557] = 458, - [558] = 446, - [559] = 559, - [560] = 560, - [561] = 445, - [562] = 451, - [563] = 476, - [564] = 446, - [565] = 451, - [566] = 566, + [524] = 433, + [525] = 490, + [526] = 526, + [527] = 432, + [528] = 431, + [529] = 508, + [530] = 432, + [531] = 430, + [532] = 431, + [533] = 492, + [534] = 467, + [535] = 535, + [536] = 536, + [537] = 450, + [538] = 431, + [539] = 539, + [540] = 441, + [541] = 431, + [542] = 441, + [543] = 432, + [544] = 433, + [545] = 430, + [546] = 435, + [547] = 547, + [548] = 433, + [549] = 491, + [550] = 490, + [551] = 445, + [552] = 445, + [553] = 441, + [554] = 490, + [555] = 435, + [556] = 432, + [557] = 439, + [558] = 490, + [559] = 439, + [560] = 518, + [561] = 561, + [562] = 490, + [563] = 490, + [564] = 564, + [565] = 439, + [566] = 523, [567] = 567, - [568] = 523, + [568] = 535, [569] = 569, - [570] = 447, - [571] = 445, - [572] = 487, - [573] = 458, - [574] = 453, - [575] = 449, - [576] = 453, - [577] = 448, - [578] = 523, - [579] = 447, - [580] = 458, - [581] = 453, - [582] = 447, - [583] = 477, - [584] = 446, - [585] = 446, - [586] = 458, - [587] = 451, - [588] = 447, - [589] = 487, - [590] = 448, - [591] = 451, - [592] = 449, - [593] = 457, - [594] = 523, - [595] = 451, - [596] = 477, - [597] = 523, - [598] = 445, - [599] = 454, - [600] = 448, - [601] = 451, - [602] = 479, - [603] = 523, - [604] = 506, - [605] = 523, + [570] = 439, + [571] = 536, + [572] = 564, + [573] = 490, + [574] = 518, + [575] = 518, + [576] = 441, + [577] = 431, + [578] = 578, + [579] = 431, + [580] = 431, + [581] = 490, + [582] = 490, + [583] = 490, + [584] = 501, + [585] = 442, + [586] = 431, + [587] = 439, + [588] = 431, + [589] = 432, + [590] = 433, + [591] = 431, + [592] = 490, + [593] = 441, + [594] = 435, + [595] = 442, + [596] = 501, + [597] = 436, + [598] = 505, + [599] = 501, + [600] = 600, + [601] = 439, + [602] = 436, + [603] = 445, + [604] = 445, + [605] = 432, [606] = 445, - [607] = 448, - [608] = 458, - [609] = 449, - [610] = 447, - [611] = 523, - [612] = 448, - [613] = 487, - [614] = 447, - [615] = 458, - [616] = 476, - [617] = 448, - [618] = 453, - [619] = 448, - [620] = 523, - [621] = 559, - [622] = 446, - [623] = 523, - [624] = 453, - [625] = 523, - [626] = 487, - [627] = 566, - [628] = 449, - [629] = 523, - [630] = 491, - [631] = 454, - [632] = 487, - [633] = 449, - [634] = 523, - [635] = 523, - [636] = 460, - [637] = 454, - [638] = 560, - [639] = 523, + [607] = 445, + [608] = 490, + [609] = 433, + [610] = 435, + [611] = 440, + [612] = 430, + [613] = 435, + [614] = 432, + [615] = 439, + [616] = 518, + [617] = 490, + [618] = 501, + [619] = 439, + [620] = 442, + [621] = 435, + [622] = 439, + [623] = 430, + [624] = 433, + [625] = 432, + [626] = 518, + [627] = 432, + [628] = 433, + [629] = 439, + [630] = 439, + [631] = 439, + [632] = 439, + [633] = 430, + [634] = 634, + [635] = 635, + [636] = 636, + [637] = 637, + [638] = 638, + [639] = 639, [640] = 640, - [641] = 485, - [642] = 523, - [643] = 445, - [644] = 556, - [645] = 451, - [646] = 646, - [647] = 458, - [648] = 549, - [649] = 649, - [650] = 650, + [641] = 641, + [642] = 642, + [643] = 643, + [644] = 644, + [645] = 645, + [646] = 644, + [647] = 645, + [648] = 648, + [649] = 641, + [650] = 639, [651] = 651, [652] = 652, [653] = 653, [654] = 654, - [655] = 654, - [656] = 656, + [655] = 642, + [656] = 643, [657] = 657, [658] = 658, [659] = 659, [660] = 660, [661] = 661, - [662] = 662, + [662] = 661, [663] = 663, - [664] = 656, + [664] = 664, [665] = 665, - [666] = 666, + [666] = 664, [667] = 667, [668] = 668, - [669] = 662, - [670] = 652, + [669] = 668, + [670] = 668, [671] = 671, - [672] = 672, + [672] = 671, [673] = 673, - [674] = 665, + [674] = 674, [675] = 675, - [676] = 667, + [676] = 676, [677] = 677, [678] = 678, - [679] = 679, - [680] = 678, - [681] = 681, - [682] = 681, - [683] = 679, - [684] = 684, - [685] = 685, - [686] = 684, - [687] = 677, - [688] = 685, - [689] = 678, - [690] = 677, - [691] = 691, - [692] = 692, - [693] = 691, - [694] = 677, - [695] = 695, - [696] = 696, - [697] = 684, - [698] = 698, - [699] = 699, - [700] = 700, - [701] = 677, - [702] = 685, - [703] = 703, - [704] = 704, + [679] = 668, + [680] = 674, + [681] = 667, + [682] = 664, + [683] = 205, + [684] = 674, + [685] = 663, + [686] = 674, + [687] = 668, + [688] = 688, + [689] = 689, + [690] = 667, + [691] = 677, + [692] = 671, + [693] = 674, + [694] = 664, + [695] = 678, + [696] = 674, + [697] = 671, + [698] = 673, + [699] = 671, + [700] = 664, + [701] = 667, + [702] = 665, + [703] = 671, + [704] = 664, [705] = 705, - [706] = 681, - [707] = 707, - [708] = 708, - [709] = 219, - [710] = 708, - [711] = 695, - [712] = 696, - [713] = 685, - [714] = 677, - [715] = 707, - [716] = 684, + [706] = 667, + [707] = 668, + [708] = 206, + [709] = 689, + [710] = 688, + [711] = 675, + [712] = 705, + [713] = 667, + [714] = 676, + [715] = 715, + [716] = 716, [717] = 717, - [718] = 692, + [718] = 718, [719] = 719, - [720] = 684, + [720] = 719, [721] = 721, - [722] = 722, - [723] = 218, - [724] = 681, - [725] = 678, - [726] = 726, - [727] = 685, - [728] = 681, - [729] = 678, - [730] = 684, - [731] = 726, - [732] = 732, - [733] = 733, - [734] = 705, - [735] = 704, - [736] = 717, - [737] = 719, - [738] = 721, - [739] = 722, - [740] = 698, - [741] = 685, - [742] = 703, - [743] = 699, - [744] = 700, - [745] = 678, - [746] = 733, - [747] = 732, - [748] = 681, + [722] = 721, + [723] = 717, + [724] = 724, + [725] = 725, + [726] = 724, + [727] = 718, + [728] = 728, + [729] = 729, + [730] = 728, + [731] = 715, + [732] = 716, + [733] = 729, + [734] = 734, + [735] = 734, + [736] = 725, + [737] = 737, + [738] = 738, + [739] = 739, + [740] = 737, + [741] = 738, + [742] = 739, + [743] = 743, + [744] = 744, + [745] = 745, + [746] = 746, + [747] = 747, + [748] = 748, [749] = 749, [750] = 750, - [751] = 750, + [751] = 748, [752] = 752, [753] = 753, - [754] = 754, + [754] = 746, [755] = 755, - [756] = 756, - [757] = 752, - [758] = 755, - [759] = 753, - [760] = 756, - [761] = 761, + [756] = 206, + [757] = 757, + [758] = 758, + [759] = 759, + [760] = 760, + [761] = 750, [762] = 762, - [763] = 763, + [763] = 743, [764] = 764, [765] = 749, - [766] = 763, - [767] = 764, - [768] = 761, - [769] = 762, - [770] = 754, - [771] = 771, + [766] = 766, + [767] = 767, + [768] = 768, + [769] = 769, + [770] = 758, + [771] = 753, [772] = 772, [773] = 773, [774] = 774, - [775] = 771, + [775] = 775, [776] = 776, - [777] = 777, + [777] = 757, [778] = 778, - [779] = 779, - [780] = 780, - [781] = 781, - [782] = 782, - [783] = 782, - [784] = 784, - [785] = 773, - [786] = 786, - [787] = 787, - [788] = 788, + [779] = 764, + [780] = 760, + [781] = 762, + [782] = 768, + [783] = 783, + [784] = 778, + [785] = 785, + [786] = 766, + [787] = 769, + [788] = 773, [789] = 789, [790] = 790, - [791] = 791, - [792] = 784, - [793] = 787, - [794] = 790, - [795] = 795, - [796] = 791, - [797] = 795, - [798] = 798, - [799] = 799, + [791] = 774, + [792] = 775, + [793] = 776, + [794] = 794, + [795] = 759, + [796] = 785, + [797] = 789, + [798] = 790, + [799] = 744, [800] = 800, - [801] = 800, - [802] = 772, - [803] = 799, - [804] = 804, - [805] = 780, - [806] = 798, - [807] = 789, - [808] = 788, - [809] = 779, - [810] = 778, - [811] = 804, - [812] = 786, + [801] = 801, + [802] = 801, + [803] = 803, + [804] = 794, + [805] = 803, + [806] = 205, + [807] = 807, + [808] = 808, + [809] = 755, + [810] = 768, + [811] = 811, + [812] = 812, [813] = 813, - [814] = 777, - [815] = 781, - [816] = 776, - [817] = 774, - [818] = 813, - [819] = 819, - [820] = 820, - [821] = 821, - [822] = 822, + [814] = 814, + [815] = 808, + [816] = 811, + [817] = 817, + [818] = 767, + [819] = 807, + [820] = 745, + [821] = 772, + [822] = 783, [823] = 823, [824] = 824, [825] = 825, [826] = 826, [827] = 827, [828] = 828, - [829] = 829, - [830] = 830, - [831] = 831, - [832] = 832, - [833] = 833, - [834] = 830, - [835] = 829, - [836] = 836, - [837] = 837, - [838] = 838, - [839] = 839, - [840] = 840, - [841] = 841, - [842] = 842, + [829] = 828, + [830] = 827, + [831] = 812, + [832] = 813, + [833] = 814, + [834] = 747, + [835] = 824, + [836] = 823, + [837] = 826, + [838] = 825, + [839] = 800, + [840] = 752, + [841] = 755, + [842] = 817, [843] = 843, - [844] = 821, - [845] = 845, - [846] = 841, - [847] = 847, - [848] = 819, + [844] = 843, + [845] = 843, + [846] = 843, + [847] = 843, + [848] = 843, [849] = 849, - [850] = 833, + [850] = 849, [851] = 851, - [852] = 852, - [853] = 843, - [854] = 832, - [855] = 855, - [856] = 820, - [857] = 826, - [858] = 837, + [852] = 851, + [853] = 851, + [854] = 851, + [855] = 851, + [856] = 851, + [857] = 851, + [858] = 851, [859] = 859, - [860] = 851, + [860] = 860, [861] = 861, - [862] = 827, - [863] = 218, - [864] = 859, - [865] = 840, - [866] = 825, + [862] = 862, + [863] = 863, + [864] = 861, + [865] = 862, + [866] = 863, [867] = 867, [868] = 868, - [869] = 869, - [870] = 824, - [871] = 845, - [872] = 872, - [873] = 873, - [874] = 874, - [875] = 875, - [876] = 869, - [877] = 828, + [869] = 860, + [870] = 870, + [871] = 871, + [872] = 867, + [873] = 868, + [874] = 863, + [875] = 860, + [876] = 870, + [877] = 871, [878] = 878, - [879] = 852, - [880] = 880, - [881] = 875, - [882] = 851, - [883] = 873, - [884] = 859, - [885] = 880, - [886] = 872, + [879] = 859, + [880] = 862, + [881] = 859, + [882] = 871, + [883] = 870, + [884] = 860, + [885] = 863, + [886] = 868, [887] = 867, - [888] = 842, - [889] = 822, - [890] = 874, - [891] = 878, - [892] = 892, - [893] = 836, - [894] = 847, - [895] = 219, - [896] = 831, - [897] = 892, - [898] = 823, - [899] = 855, - [900] = 861, - [901] = 868, - [902] = 838, - [903] = 849, - [904] = 839, - [905] = 905, - [906] = 905, - [907] = 905, - [908] = 905, - [909] = 905, - [910] = 905, - [911] = 911, - [912] = 911, - [913] = 913, - [914] = 913, - [915] = 913, - [916] = 913, - [917] = 913, - [918] = 913, - [919] = 913, - [920] = 913, - [921] = 921, - [922] = 922, - [923] = 923, - [924] = 923, - [925] = 925, - [926] = 926, - [927] = 926, - [928] = 928, - [929] = 928, - [930] = 930, - [931] = 922, - [932] = 932, - [933] = 933, - [934] = 921, - [935] = 933, - [936] = 930, - [937] = 922, - [938] = 932, - [939] = 921, - [940] = 933, - [941] = 933, - [942] = 923, - [943] = 943, - [944] = 923, - [945] = 943, - [946] = 943, - [947] = 921, - [948] = 921, - [949] = 933, - [950] = 932, - [951] = 922, - [952] = 925, - [953] = 932, - [954] = 922, - [955] = 932, - [956] = 930, - [957] = 928, - [958] = 930, - [959] = 922, - [960] = 928, - [961] = 930, - [962] = 925, - [963] = 926, - [964] = 925, - [965] = 926, - [966] = 925, - [967] = 967, - [968] = 928, - [969] = 969, - [970] = 967, - [971] = 969, - [972] = 928, - [973] = 930, - [974] = 922, - [975] = 967, - [976] = 969, - [977] = 932, - [978] = 925, - [979] = 933, - [980] = 967, - [981] = 928, - [982] = 969, - [983] = 930, - [984] = 943, - [985] = 932, - [986] = 933, - [987] = 921, - [988] = 923, - [989] = 923, - [990] = 925, - [991] = 943, - [992] = 928, - [993] = 926, - [994] = 926, - [995] = 930, - [996] = 943, - [997] = 967, - [998] = 969, - [999] = 999, - [1000] = 926, - [1001] = 943, - [1002] = 923, - [1003] = 921, - [1004] = 925, - [1005] = 923, - [1006] = 967, - [1007] = 969, - [1008] = 967, - [1009] = 969, - [1010] = 967, - [1011] = 967, - [1012] = 933, - [1013] = 932, - [1014] = 922, - [1015] = 969, - [1016] = 922, - [1017] = 930, - [1018] = 928, - [1019] = 932, - [1020] = 933, - [1021] = 943, - [1022] = 921, - [1023] = 969, - [1024] = 967, - [1025] = 967, - [1026] = 923, - [1027] = 999, - [1028] = 926, - [1029] = 967, - [1030] = 967, - [1031] = 943, - [1032] = 1032, - [1033] = 1033, - [1034] = 1032, - [1035] = 1035, - [1036] = 1033, - [1037] = 1032, - [1038] = 1033, - [1039] = 1035, - [1040] = 1040, - [1041] = 1035, - [1042] = 1040, - [1043] = 1040, - [1044] = 1033, - [1045] = 1033, - [1046] = 1033, - [1047] = 1035, - [1048] = 1033, - [1049] = 1049, - [1050] = 1050, - [1051] = 1051, - [1052] = 1052, - [1053] = 1053, - [1054] = 1054, + [888] = 867, + [889] = 868, + [890] = 870, + [891] = 871, + [892] = 863, + [893] = 861, + [894] = 867, + [895] = 895, + [896] = 867, + [897] = 868, + [898] = 868, + [899] = 899, + [900] = 860, + [901] = 859, + [902] = 895, + [903] = 860, + [904] = 899, + [905] = 899, + [906] = 870, + [907] = 899, + [908] = 859, + [909] = 909, + [910] = 909, + [911] = 895, + [912] = 862, + [913] = 861, + [914] = 870, + [915] = 909, + [916] = 871, + [917] = 909, + [918] = 871, + [919] = 870, + [920] = 859, + [921] = 895, + [922] = 861, + [923] = 899, + [924] = 868, + [925] = 871, + [926] = 870, + [927] = 871, + [928] = 860, + [929] = 859, + [930] = 895, + [931] = 868, + [932] = 862, + [933] = 909, + [934] = 895, + [935] = 909, + [936] = 878, + [937] = 867, + [938] = 867, + [939] = 863, + [940] = 863, + [941] = 862, + [942] = 861, + [943] = 909, + [944] = 861, + [945] = 859, + [946] = 909, + [947] = 871, + [948] = 862, + [949] = 859, + [950] = 859, + [951] = 859, + [952] = 862, + [953] = 861, + [954] = 859, + [955] = 909, + [956] = 899, + [957] = 895, + [958] = 859, + [959] = 895, + [960] = 863, + [961] = 861, + [962] = 862, + [963] = 863, + [964] = 867, + [965] = 899, + [966] = 868, + [967] = 899, + [968] = 860, + [969] = 870, + [970] = 970, + [971] = 971, + [972] = 972, + [973] = 972, + [974] = 971, + [975] = 975, + [976] = 971, + [977] = 975, + [978] = 972, + [979] = 970, + [980] = 970, + [981] = 971, + [982] = 971, + [983] = 971, + [984] = 975, + [985] = 985, + [986] = 986, + [987] = 987, + [988] = 988, + [989] = 989, + [990] = 989, + [991] = 638, + [992] = 986, + [993] = 993, + [994] = 971, + [995] = 652, + [996] = 975, + [997] = 653, + [998] = 654, + [999] = 659, + [1000] = 657, + [1001] = 1001, + [1002] = 636, + [1003] = 985, + [1004] = 993, + [1005] = 1005, + [1006] = 1006, + [1007] = 1007, + [1008] = 971, + [1009] = 987, + [1010] = 988, + [1011] = 970, + [1012] = 975, + [1013] = 1007, + [1014] = 972, + [1015] = 1015, + [1016] = 972, + [1017] = 1015, + [1018] = 993, + [1019] = 986, + [1020] = 970, + [1021] = 970, + [1022] = 1001, + [1023] = 989, + [1024] = 1006, + [1025] = 985, + [1026] = 1005, + [1027] = 1001, + [1028] = 1006, + [1029] = 988, + [1030] = 987, + [1031] = 1007, + [1032] = 971, + [1033] = 971, + [1034] = 971, + [1035] = 971, + [1036] = 975, + [1037] = 1015, + [1038] = 1005, + [1039] = 972, + [1040] = 1001, + [1041] = 1041, + [1042] = 1042, + [1043] = 1043, + [1044] = 1015, + [1045] = 1045, + [1046] = 1045, + [1047] = 1047, + [1048] = 971, + [1049] = 993, + [1050] = 972, + [1051] = 986, + [1052] = 1007, + [1053] = 987, + [1054] = 1041, [1055] = 1055, - [1056] = 1055, - [1057] = 1054, - [1058] = 1032, - [1059] = 1033, + [1056] = 1056, + [1057] = 988, + [1058] = 1058, + [1059] = 985, [1060] = 1060, - [1061] = 1061, - [1062] = 1062, - [1063] = 1033, - [1064] = 1061, - [1065] = 1051, - [1066] = 1049, - [1067] = 1062, - [1068] = 1053, - [1069] = 653, - [1070] = 672, - [1071] = 1032, - [1072] = 668, - [1073] = 1035, - [1074] = 671, - [1075] = 673, - [1076] = 1051, - [1077] = 1077, - [1078] = 1077, - [1079] = 1033, - [1080] = 1049, - [1081] = 659, - [1082] = 1050, - [1083] = 1052, - [1084] = 1053, - [1085] = 1077, - [1086] = 1055, - [1087] = 1035, - [1088] = 1054, - [1089] = 1060, - [1090] = 1040, - [1091] = 1061, - [1092] = 1062, - [1093] = 1052, - [1094] = 1050, - [1095] = 1032, - [1096] = 1060, - [1097] = 663, - [1098] = 1033, - [1099] = 1040, - [1100] = 1040, - [1101] = 1033, - [1102] = 1050, - [1103] = 1052, - [1104] = 1033, - [1105] = 1035, - [1106] = 1106, - [1107] = 1033, + [1061] = 1058, + [1062] = 975, + [1063] = 1005, + [1064] = 1006, + [1065] = 1065, + [1066] = 1041, + [1067] = 989, + [1068] = 1001, + [1069] = 1060, + [1070] = 635, + [1071] = 1047, + [1072] = 1001, + [1073] = 989, + [1074] = 1006, + [1075] = 1005, + [1076] = 985, + [1077] = 988, + [1078] = 987, + [1079] = 988, + [1080] = 1007, + [1081] = 970, + [1082] = 971, + [1083] = 971, + [1084] = 1015, + [1085] = 1058, + [1086] = 1007, + [1087] = 972, + [1088] = 987, + [1089] = 1005, + [1090] = 1006, + [1091] = 986, + [1092] = 993, + [1093] = 971, + [1094] = 1047, + [1095] = 989, + [1096] = 985, + [1097] = 1015, + [1098] = 1060, + [1099] = 975, + [1100] = 1065, + [1101] = 634, + [1102] = 971, + [1103] = 1045, + [1104] = 1065, + [1105] = 993, + [1106] = 970, + [1107] = 986, [1108] = 1108, - [1109] = 1060, - [1110] = 1053, + [1109] = 1109, + [1110] = 638, [1111] = 1111, - [1112] = 1112, - [1113] = 1055, - [1114] = 1054, - [1115] = 1060, - [1116] = 1049, - [1117] = 1062, - [1118] = 1061, - [1119] = 1054, - [1120] = 1061, - [1121] = 1062, - [1122] = 1055, - [1123] = 1053, - [1124] = 1124, + [1112] = 1001, + [1113] = 1113, + [1114] = 1114, + [1115] = 1115, + [1116] = 1116, + [1117] = 1117, + [1118] = 1118, + [1119] = 1119, + [1120] = 652, + [1121] = 653, + [1122] = 654, + [1123] = 1123, + [1124] = 1115, [1125] = 1125, - [1126] = 1051, - [1127] = 1049, - [1128] = 1051, - [1129] = 1108, - [1130] = 1050, - [1131] = 1052, - [1132] = 1032, - [1133] = 1052, - [1134] = 1053, - [1135] = 1055, - [1136] = 1054, - [1137] = 1040, - [1138] = 1060, - [1139] = 1111, - [1140] = 1061, - [1141] = 1062, - [1142] = 1124, - [1143] = 1125, - [1144] = 1077, - [1145] = 1112, - [1146] = 1112, - [1147] = 1125, - [1148] = 1040, - [1149] = 1049, - [1150] = 1051, - [1151] = 1151, - [1152] = 1033, - [1153] = 1033, - [1154] = 1077, - [1155] = 1050, - [1156] = 1156, - [1157] = 1032, - [1158] = 1156, - [1159] = 1077, - [1160] = 650, - [1161] = 1033, - [1162] = 1156, - [1163] = 1108, - [1164] = 1035, - [1165] = 651, + [1126] = 1126, + [1127] = 657, + [1128] = 636, + [1129] = 1126, + [1130] = 1111, + [1131] = 989, + [1132] = 1125, + [1133] = 1133, + [1134] = 1108, + [1135] = 638, + [1136] = 636, + [1137] = 657, + [1138] = 986, + [1139] = 1043, + [1140] = 993, + [1141] = 1109, + [1142] = 1042, + [1143] = 1114, + [1144] = 1144, + [1145] = 1119, + [1146] = 652, + [1147] = 653, + [1148] = 1148, + [1149] = 654, + [1150] = 657, + [1151] = 636, + [1152] = 654, + [1153] = 653, + [1154] = 1133, + [1155] = 1155, + [1156] = 637, + [1157] = 652, + [1158] = 1158, + [1159] = 1060, + [1160] = 1041, + [1161] = 971, + [1162] = 1162, + [1163] = 637, + [1164] = 1164, + [1165] = 1165, [1166] = 1166, [1167] = 1167, - [1168] = 1111, - [1169] = 1124, - [1170] = 659, + [1168] = 1006, + [1169] = 1005, + [1170] = 1170, [1171] = 1171, - [1172] = 1172, - [1173] = 657, - [1174] = 1125, - [1175] = 1124, - [1176] = 1125, - [1177] = 1124, - [1178] = 671, + [1172] = 1015, + [1173] = 1041, + [1174] = 1155, + [1175] = 1158, + [1176] = 1058, + [1177] = 1177, + [1178] = 1178, [1179] = 1179, - [1180] = 1180, - [1181] = 1181, - [1182] = 1077, - [1183] = 1183, - [1184] = 1062, - [1185] = 1185, - [1186] = 657, - [1187] = 1061, - [1188] = 1060, - [1189] = 1033, - [1190] = 1054, - [1191] = 1055, - [1192] = 673, - [1193] = 1193, - [1194] = 1053, + [1180] = 638, + [1181] = 1177, + [1182] = 1182, + [1183] = 1165, + [1184] = 635, + [1185] = 1179, + [1186] = 1047, + [1187] = 1187, + [1188] = 1188, + [1189] = 1060, + [1190] = 634, + [1191] = 1007, + [1192] = 1162, + [1193] = 987, + [1194] = 988, [1195] = 1195, [1196] = 1196, [1197] = 1197, - [1198] = 1183, - [1199] = 1199, - [1200] = 1052, - [1201] = 1050, - [1202] = 671, - [1203] = 1203, - [1204] = 1204, - [1205] = 1205, - [1206] = 659, - [1207] = 668, - [1208] = 1049, - [1209] = 653, - [1210] = 1179, - [1211] = 1180, - [1212] = 1212, - [1213] = 672, - [1214] = 1051, - [1215] = 673, - [1216] = 1185, - [1217] = 1217, - [1218] = 1218, - [1219] = 1219, - [1220] = 1220, - [1221] = 1195, - [1222] = 1222, - [1223] = 1223, - [1224] = 1224, - [1225] = 1196, - [1226] = 671, - [1227] = 1197, - [1228] = 668, - [1229] = 668, - [1230] = 1218, - [1231] = 673, - [1232] = 672, - [1233] = 653, - [1234] = 1033, - [1235] = 657, - [1236] = 1172, - [1237] = 659, - [1238] = 1212, - [1239] = 1077, - [1240] = 651, - [1241] = 1199, - [1242] = 672, - [1243] = 653, - [1244] = 1156, - [1245] = 1111, - [1246] = 1246, - [1247] = 1111, - [1248] = 1248, - [1249] = 1203, - [1250] = 650, - [1251] = 1062, - [1252] = 1204, - [1253] = 1253, - [1254] = 1254, - [1255] = 1171, - [1256] = 1256, - [1257] = 1257, - [1258] = 1199, - [1259] = 1253, - [1260] = 1061, - [1261] = 1261, - [1262] = 1060, - [1263] = 1054, - [1264] = 1254, - [1265] = 663, - [1266] = 1256, - [1267] = 1257, - [1268] = 1166, - [1269] = 1167, - [1270] = 1223, - [1271] = 1261, - [1272] = 663, - [1273] = 1111, - [1274] = 1055, - [1275] = 1053, - [1276] = 1181, - [1277] = 1277, - [1278] = 1278, - [1279] = 1279, - [1280] = 661, - [1281] = 1052, - [1282] = 666, - [1283] = 1050, - [1284] = 1156, - [1285] = 675, - [1286] = 658, - [1287] = 650, - [1288] = 1222, - [1289] = 1289, - [1290] = 1290, - [1291] = 1220, - [1292] = 1049, - [1293] = 1124, - [1294] = 1125, - [1295] = 660, - [1296] = 1290, - [1297] = 1289, - [1298] = 1051, - [1299] = 1219, - [1300] = 1181, - [1301] = 1279, - [1302] = 1223, - [1303] = 1193, - [1304] = 1193, - [1305] = 1205, - [1306] = 1222, - [1307] = 1279, - [1308] = 663, - [1309] = 1112, - [1310] = 1289, - [1311] = 1290, - [1312] = 658, - [1313] = 1112, - [1314] = 651, - [1315] = 1112, - [1316] = 1033, - [1317] = 1261, - [1318] = 1220, - [1319] = 657, - [1320] = 1108, - [1321] = 1219, - [1322] = 1156, - [1323] = 1248, - [1324] = 1257, - [1325] = 1256, - [1326] = 1218, - [1327] = 1217, - [1328] = 1246, - [1329] = 1278, - [1330] = 1183, - [1331] = 1171, - [1332] = 1224, - [1333] = 1248, - [1334] = 1254, - [1335] = 1253, - [1336] = 1246, - [1337] = 1212, - [1338] = 1172, - [1339] = 1180, - [1340] = 1179, - [1341] = 1277, - [1342] = 1204, - [1343] = 1278, - [1344] = 1277, - [1345] = 1205, - [1346] = 1203, - [1347] = 1185, - [1348] = 1195, - [1349] = 1217, - [1350] = 1196, - [1351] = 1166, - [1352] = 1197, - [1353] = 1108, - [1354] = 1224, - [1355] = 1112, - [1356] = 1167, - [1357] = 658, - [1358] = 1108, - [1359] = 1111, - [1360] = 1212, - [1361] = 1257, - [1362] = 1181, - [1363] = 1256, - [1364] = 1171, - [1365] = 1261, - [1366] = 1172, - [1367] = 1254, - [1368] = 1253, - [1369] = 1246, - [1370] = 1248, - [1371] = 1204, - [1372] = 1181, - [1373] = 1203, - [1374] = 1151, - [1375] = 1106, - [1376] = 1279, - [1377] = 1246, - [1378] = 1248, - [1379] = 1224, - [1380] = 1222, - [1381] = 1220, - [1382] = 663, - [1383] = 1219, - [1384] = 659, - [1385] = 1277, - [1386] = 673, - [1387] = 671, - [1388] = 668, - [1389] = 672, - [1390] = 653, - [1391] = 1218, - [1392] = 1217, - [1393] = 1223, - [1394] = 1290, - [1395] = 660, - [1396] = 1199, - [1397] = 1172, - [1398] = 673, - [1399] = 657, - [1400] = 1183, - [1401] = 1401, - [1402] = 1197, + [1198] = 1198, + [1199] = 1182, + [1200] = 985, + [1201] = 1171, + [1202] = 1167, + [1203] = 1166, + [1204] = 1005, + [1205] = 1170, + [1206] = 1006, + [1207] = 1144, + [1208] = 1148, + [1209] = 989, + [1210] = 1001, + [1211] = 1118, + [1212] = 971, + [1213] = 1162, + [1214] = 1165, + [1215] = 1177, + [1216] = 1179, + [1217] = 1148, + [1218] = 1144, + [1219] = 1178, + [1220] = 985, + [1221] = 988, + [1222] = 987, + [1223] = 1007, + [1224] = 1167, + [1225] = 986, + [1226] = 659, + [1227] = 1171, + [1228] = 1182, + [1229] = 1058, + [1230] = 993, + [1231] = 1047, + [1232] = 1047, + [1233] = 659, + [1234] = 648, + [1235] = 1198, + [1236] = 1117, + [1237] = 1197, + [1238] = 1164, + [1239] = 971, + [1240] = 637, + [1241] = 635, + [1242] = 1116, + [1243] = 1113, + [1244] = 1188, + [1245] = 1187, + [1246] = 1015, + [1247] = 1155, + [1248] = 1045, + [1249] = 659, + [1250] = 648, + [1251] = 1113, + [1252] = 1116, + [1253] = 1178, + [1254] = 1117, + [1255] = 1118, + [1256] = 1045, + [1257] = 1123, + [1258] = 1045, + [1259] = 1195, + [1260] = 1115, + [1261] = 1196, + [1262] = 1195, + [1263] = 1125, + [1264] = 658, + [1265] = 637, + [1266] = 660, + [1267] = 1123, + [1268] = 1058, + [1269] = 640, + [1270] = 648, + [1271] = 1065, + [1272] = 1196, + [1273] = 1045, + [1274] = 1133, + [1275] = 1198, + [1276] = 1197, + [1277] = 1188, + [1278] = 1187, + [1279] = 651, + [1280] = 1170, + [1281] = 1166, + [1282] = 1126, + [1283] = 634, + [1284] = 1043, + [1285] = 1158, + [1286] = 1042, + [1287] = 1119, + [1288] = 1065, + [1289] = 1114, + [1290] = 1109, + [1291] = 1108, + [1292] = 1065, + [1293] = 1041, + [1294] = 1060, + [1295] = 1164, + [1296] = 1111, + [1297] = 1197, + [1298] = 1045, + [1299] = 1108, + [1300] = 1109, + [1301] = 1041, + [1302] = 1114, + [1303] = 1060, + [1304] = 1164, + [1305] = 1126, + [1306] = 1119, + [1307] = 1119, + [1308] = 637, + [1309] = 1114, + [1310] = 1187, + [1311] = 1188, + [1312] = 636, + [1313] = 1109, + [1314] = 1108, + [1315] = 657, + [1316] = 1196, + [1317] = 1198, + [1318] = 654, + [1319] = 653, + [1320] = 652, + [1321] = 1195, + [1322] = 658, + [1323] = 1111, + [1324] = 660, + [1325] = 1126, + [1326] = 1182, + [1327] = 1155, + [1328] = 1119, + [1329] = 659, + [1330] = 1171, + [1331] = 1114, + [1332] = 1167, + [1333] = 1109, + [1334] = 638, + [1335] = 1144, + [1336] = 1148, + [1337] = 1162, + [1338] = 1165, + [1339] = 1177, + [1340] = 1108, + [1341] = 1179, + [1342] = 1178, + [1343] = 1113, + [1344] = 659, + [1345] = 1111, + [1346] = 1126, + [1347] = 640, + [1348] = 1116, + [1349] = 648, + [1350] = 637, + [1351] = 651, + [1352] = 1170, + [1353] = 1166, + [1354] = 1117, + [1355] = 638, + [1356] = 1118, + [1357] = 1158, + [1358] = 1155, + [1359] = 1123, + [1360] = 1133, + [1361] = 1125, + [1362] = 1115, + [1363] = 652, + [1364] = 653, + [1365] = 654, + [1366] = 1123, + [1367] = 1118, + [1368] = 657, + [1369] = 636, + [1370] = 1115, + [1371] = 1125, + [1372] = 1117, + [1373] = 1111, + [1374] = 1045, + [1375] = 1116, + [1376] = 637, + [1377] = 651, + [1378] = 637, + [1379] = 1113, + [1380] = 640, + [1381] = 1164, + [1382] = 660, + [1383] = 1133, + [1384] = 1155, + [1385] = 1385, + [1386] = 1158, + [1387] = 658, + [1388] = 1065, + [1389] = 1056, + [1390] = 1166, + [1391] = 1170, + [1392] = 651, + [1393] = 1055, + [1394] = 648, + [1395] = 1058, + [1396] = 1188, + [1397] = 640, + [1398] = 1047, + [1399] = 660, + [1400] = 658, + [1401] = 1187, + [1402] = 1195, [1403] = 1196, - [1404] = 1124, - [1405] = 1125, - [1406] = 1195, - [1407] = 1172, - [1408] = 658, - [1409] = 657, - [1410] = 1185, - [1411] = 653, - [1412] = 672, - [1413] = 1212, - [1414] = 1180, - [1415] = 1199, - [1416] = 1193, - [1417] = 1205, - [1418] = 668, - [1419] = 671, - [1420] = 1179, - [1421] = 1179, - [1422] = 1180, - [1423] = 1183, - [1424] = 1212, - [1425] = 1197, - [1426] = 659, - [1427] = 1217, - [1428] = 1218, - [1429] = 1196, - [1430] = 1195, - [1431] = 675, - [1432] = 1185, - [1433] = 1246, - [1434] = 1248, - [1435] = 1219, - [1436] = 1205, - [1437] = 1193, - [1438] = 1220, - [1439] = 1222, - [1440] = 1289, - [1441] = 1199, - [1442] = 1183, - [1443] = 1197, - [1444] = 1196, - [1445] = 1223, - [1446] = 1195, - [1447] = 1224, - [1448] = 1203, - [1449] = 663, - [1450] = 1185, - [1451] = 666, - [1452] = 1204, - [1453] = 661, - [1454] = 1278, - [1455] = 1277, - [1456] = 1278, - [1457] = 657, - [1458] = 1290, - [1459] = 1289, - [1460] = 1279, - [1461] = 1253, - [1462] = 1261, - [1463] = 1254, - [1464] = 1257, - [1465] = 1256, - [1466] = 1112, - [1467] = 1112, - [1468] = 1171, - [1469] = 1171, - [1470] = 657, - [1471] = 660, - [1472] = 657, - [1473] = 1254, - [1474] = 1256, - [1475] = 675, - [1476] = 1257, - [1477] = 666, - [1478] = 661, - [1479] = 1108, - [1480] = 1253, - [1481] = 658, - [1482] = 1261, - [1483] = 1156, - [1484] = 1204, - [1485] = 1203, - [1486] = 1108, - [1487] = 1224, - [1488] = 1223, - [1489] = 1222, - [1490] = 1181, - [1491] = 1279, - [1492] = 1220, - [1493] = 658, - [1494] = 1219, - [1495] = 1218, - [1496] = 1217, - [1497] = 1125, - [1498] = 1124, - [1499] = 1289, - [1500] = 1290, - [1501] = 660, - [1502] = 675, - [1503] = 1193, - [1504] = 666, - [1505] = 661, - [1506] = 1278, - [1507] = 1277, - [1508] = 1111, - [1509] = 1205, - [1510] = 1179, - [1511] = 1180, - [1512] = 1156, - [1513] = 659, - [1514] = 672, - [1515] = 1166, - [1516] = 1172, - [1517] = 668, - [1518] = 671, - [1519] = 1185, - [1520] = 1289, - [1521] = 673, - [1522] = 1261, - [1523] = 1179, - [1524] = 1195, - [1525] = 1166, - [1526] = 1257, - [1527] = 1256, - [1528] = 1246, - [1529] = 1248, - [1530] = 1171, - [1531] = 1167, - [1532] = 1196, - [1533] = 1254, - [1534] = 1253, - [1535] = 1197, - [1536] = 1180, - [1537] = 1212, - [1538] = 1204, - [1539] = 1217, - [1540] = 1183, - [1541] = 1203, - [1542] = 1279, - [1543] = 1218, - [1544] = 1219, - [1545] = 1199, - [1546] = 1220, - [1547] = 1222, - [1548] = 1223, - [1549] = 1248, - [1550] = 658, - [1551] = 1224, - [1552] = 1277, - [1553] = 657, - [1554] = 1224, - [1555] = 1203, - [1556] = 1223, - [1557] = 663, - [1558] = 1222, - [1559] = 1220, - [1560] = 1219, - [1561] = 1199, - [1562] = 1204, - [1563] = 1218, - [1564] = 1217, - [1565] = 1183, - [1566] = 1253, - [1567] = 1254, - [1568] = 1171, - [1569] = 1212, - [1570] = 1197, - [1571] = 1180, - [1572] = 1179, - [1573] = 1256, - [1574] = 1246, - [1575] = 1166, - [1576] = 1205, - [1577] = 1193, - [1578] = 1167, - [1579] = 1257, - [1580] = 1277, - [1581] = 1278, - [1582] = 653, - [1583] = 1290, - [1584] = 672, - [1585] = 1196, - [1586] = 668, - [1587] = 671, - [1588] = 658, - [1589] = 673, - [1590] = 659, - [1591] = 663, - [1592] = 1261, - [1593] = 1193, - [1594] = 1181, - [1595] = 1205, - [1596] = 1290, - [1597] = 1289, - [1598] = 1172, - [1599] = 1195, - [1600] = 657, - [1601] = 1279, - [1602] = 1181, - [1603] = 1185, - [1604] = 653, - [1605] = 1167, - [1606] = 1278, - [1607] = 657, - [1608] = 671, - [1609] = 657, - [1610] = 675, - [1611] = 657, - [1612] = 657, - [1613] = 672, - [1614] = 658, - [1615] = 666, - [1616] = 653, - [1617] = 663, - [1618] = 661, - [1619] = 660, - [1620] = 1401, - [1621] = 668, - [1622] = 659, - [1623] = 673, - [1624] = 1199, - [1625] = 1195, - [1626] = 1183, - [1627] = 1197, - [1628] = 1196, - [1629] = 1185, - [1630] = 661, - [1631] = 675, - [1632] = 666, - [1633] = 1401, - [1634] = 660, - [1635] = 1112, - [1636] = 1112, - [1637] = 1112, - [1638] = 1181, - [1639] = 658, - [1640] = 1640, - [1641] = 657, - [1642] = 1642, - [1643] = 1112, - [1644] = 1644, - [1645] = 1112, - [1646] = 1646, - [1647] = 661, - [1648] = 1648, - [1649] = 1061, - [1650] = 1062, - [1651] = 1401, - [1652] = 1648, - [1653] = 1648, - [1654] = 1052, - [1655] = 1050, - [1656] = 1112, - [1657] = 1648, - [1658] = 1053, - [1659] = 1055, - [1660] = 1644, - [1661] = 658, - [1662] = 1648, - [1663] = 1642, - [1664] = 1648, - [1665] = 1054, - [1666] = 1666, - [1667] = 1648, - [1668] = 657, - [1669] = 1077, - [1670] = 660, - [1671] = 1671, - [1672] = 1648, - [1673] = 660, - [1674] = 1401, - [1675] = 661, - [1676] = 675, - [1677] = 660, - [1678] = 666, - [1679] = 661, - [1680] = 666, - [1681] = 1681, - [1682] = 1648, - [1683] = 1401, - [1684] = 675, - [1685] = 675, - [1686] = 666, - [1687] = 1648, - [1688] = 1688, - [1689] = 1112, - [1690] = 1690, - [1691] = 1690, - [1692] = 1666, - [1693] = 1671, - [1694] = 1690, - [1695] = 1646, - [1696] = 1696, - [1697] = 1690, - [1698] = 1690, - [1699] = 1690, - [1700] = 1690, - [1701] = 1690, - [1702] = 1690, - [1703] = 1690, - [1704] = 1690, - [1705] = 1690, - [1706] = 1690, - [1707] = 1707, - [1708] = 1688, - [1709] = 1690, - [1710] = 1690, - [1711] = 1696, - [1712] = 1640, - [1713] = 1690, + [1404] = 1178, + [1405] = 1179, + [1406] = 1164, + [1407] = 1065, + [1408] = 1177, + [1409] = 1165, + [1410] = 1162, + [1411] = 1148, + [1412] = 1144, + [1413] = 1167, + [1414] = 1171, + [1415] = 1197, + [1416] = 1198, + [1417] = 1187, + [1418] = 1188, + [1419] = 1058, + [1420] = 1182, + [1421] = 1198, + [1422] = 1182, + [1423] = 1171, + [1424] = 1197, + [1425] = 1047, + [1426] = 1196, + [1427] = 1195, + [1428] = 637, + [1429] = 1167, + [1430] = 1170, + [1431] = 1166, + [1432] = 1144, + [1433] = 1148, + [1434] = 1162, + [1435] = 1165, + [1436] = 1177, + [1437] = 1158, + [1438] = 1179, + [1439] = 1133, + [1440] = 1178, + [1441] = 1125, + [1442] = 1115, + [1443] = 1123, + [1444] = 1041, + [1445] = 1060, + [1446] = 648, + [1447] = 1118, + [1448] = 1117, + [1449] = 1116, + [1450] = 1113, + [1451] = 1043, + [1452] = 638, + [1453] = 659, + [1454] = 1155, + [1455] = 637, + [1456] = 1164, + [1457] = 1179, + [1458] = 636, + [1459] = 657, + [1460] = 1197, + [1461] = 1198, + [1462] = 654, + [1463] = 653, + [1464] = 652, + [1465] = 1043, + [1466] = 1182, + [1467] = 1171, + [1468] = 1167, + [1469] = 1196, + [1470] = 1195, + [1471] = 638, + [1472] = 1144, + [1473] = 1148, + [1474] = 1162, + [1475] = 1165, + [1476] = 1177, + [1477] = 1179, + [1478] = 1119, + [1479] = 1178, + [1480] = 1164, + [1481] = 1113, + [1482] = 1114, + [1483] = 1109, + [1484] = 659, + [1485] = 1170, + [1486] = 1166, + [1487] = 1108, + [1488] = 1116, + [1489] = 1111, + [1490] = 1158, + [1491] = 1126, + [1492] = 1117, + [1493] = 1119, + [1494] = 1114, + [1495] = 1109, + [1496] = 1108, + [1497] = 1111, + [1498] = 1118, + [1499] = 1123, + [1500] = 1115, + [1501] = 1126, + [1502] = 1125, + [1503] = 1133, + [1504] = 1155, + [1505] = 1158, + [1506] = 1133, + [1507] = 1188, + [1508] = 652, + [1509] = 1042, + [1510] = 1125, + [1511] = 1115, + [1512] = 1187, + [1513] = 1188, + [1514] = 1123, + [1515] = 653, + [1516] = 1166, + [1517] = 1118, + [1518] = 1117, + [1519] = 1170, + [1520] = 654, + [1521] = 657, + [1522] = 1116, + [1523] = 636, + [1524] = 1042, + [1525] = 1113, + [1526] = 1187, + [1527] = 1043, + [1528] = 648, + [1529] = 648, + [1530] = 1195, + [1531] = 1196, + [1532] = 1197, + [1533] = 1198, + [1534] = 1182, + [1535] = 1171, + [1536] = 1167, + [1537] = 637, + [1538] = 1178, + [1539] = 1042, + [1540] = 1144, + [1541] = 1148, + [1542] = 1177, + [1543] = 1165, + [1544] = 1162, + [1545] = 637, + [1546] = 659, + [1547] = 1385, + [1548] = 651, + [1549] = 637, + [1550] = 648, + [1551] = 636, + [1552] = 657, + [1553] = 637, + [1554] = 654, + [1555] = 640, + [1556] = 660, + [1557] = 653, + [1558] = 652, + [1559] = 658, + [1560] = 638, + [1561] = 637, + [1562] = 1126, + [1563] = 1109, + [1564] = 1108, + [1565] = 1114, + [1566] = 1119, + [1567] = 1111, + [1568] = 640, + [1569] = 660, + [1570] = 1385, + [1571] = 651, + [1572] = 658, + [1573] = 1045, + [1574] = 1045, + [1575] = 1155, + [1576] = 1045, + [1577] = 1577, + [1578] = 1578, + [1579] = 1579, + [1580] = 637, + [1581] = 1581, + [1582] = 1045, + [1583] = 1045, + [1584] = 648, + [1585] = 660, + [1586] = 1586, + [1587] = 637, + [1588] = 1045, + [1589] = 1589, + [1590] = 1015, + [1591] = 1045, + [1592] = 1589, + [1593] = 1589, + [1594] = 1581, + [1595] = 1589, + [1596] = 640, + [1597] = 1589, + [1598] = 1385, + [1599] = 651, + [1600] = 1589, + [1601] = 1589, + [1602] = 1579, + [1603] = 1589, + [1604] = 658, + [1605] = 651, + [1606] = 1385, + [1607] = 640, + [1608] = 651, + [1609] = 1001, + [1610] = 1610, + [1611] = 1611, + [1612] = 1612, + [1613] = 660, + [1614] = 1007, + [1615] = 1589, + [1616] = 987, + [1617] = 985, + [1618] = 1005, + [1619] = 1006, + [1620] = 989, + [1621] = 658, + [1622] = 658, + [1623] = 640, + [1624] = 1589, + [1625] = 1385, + [1626] = 648, + [1627] = 660, + [1628] = 1628, + [1629] = 1628, + [1630] = 1586, + [1631] = 1577, + [1632] = 1578, + [1633] = 1633, + [1634] = 1628, + [1635] = 1628, + [1636] = 1636, + [1637] = 1637, + [1638] = 1610, + [1639] = 1628, + [1640] = 1628, + [1641] = 1637, + [1642] = 1611, + [1643] = 1628, + [1644] = 1628, + [1645] = 1612, + [1646] = 1637, + [1647] = 1628, + [1648] = 1628, + [1649] = 1628, + [1650] = 1628, + [1651] = 1628, + [1652] = 1628, + [1653] = 1636, + [1654] = 1628, + [1655] = 1628, + [1656] = 1656, + [1657] = 1657, + [1658] = 1658, + [1659] = 1659, + [1660] = 1657, + [1661] = 1659, + [1662] = 1662, + [1663] = 1662, + [1664] = 1664, + [1665] = 1664, + [1666] = 1664, + [1667] = 1664, + [1668] = 1664, + [1669] = 1664, + [1670] = 1664, + [1671] = 1664, + [1672] = 1672, + [1673] = 1672, + [1674] = 1674, + [1675] = 1672, + [1676] = 1672, + [1677] = 1674, + [1678] = 1678, + [1679] = 1672, + [1680] = 1678, + [1681] = 1672, + [1682] = 1678, + [1683] = 1674, + [1684] = 1674, + [1685] = 1678, + [1686] = 1674, + [1687] = 1672, + [1688] = 1678, + [1689] = 1678, + [1690] = 1674, + [1691] = 1674, + [1692] = 1678, + [1693] = 1672, + [1694] = 1694, + [1695] = 1674, + [1696] = 1678, + [1697] = 1697, + [1698] = 1698, + [1699] = 1697, + [1700] = 1698, + [1701] = 1697, + [1702] = 1697, + [1703] = 1698, + [1704] = 1704, + [1705] = 1698, + [1706] = 1697, + [1707] = 1697, + [1708] = 1698, + [1709] = 1698, + [1710] = 1710, + [1711] = 1697, + [1712] = 1698, + [1713] = 1697, [1714] = 1714, - [1715] = 1696, - [1716] = 1707, - [1717] = 1681, - [1718] = 1718, - [1719] = 1719, - [1720] = 1719, + [1715] = 1697, + [1716] = 1698, + [1717] = 1698, + [1718] = 1126, + [1719] = 1109, + [1720] = 1720, [1721] = 1721, - [1722] = 1722, - [1723] = 1721, - [1724] = 1724, - [1725] = 1724, - [1726] = 1726, - [1727] = 1726, - [1728] = 1726, - [1729] = 1726, - [1730] = 1726, - [1731] = 1726, - [1732] = 1726, - [1733] = 1726, - [1734] = 1734, - [1735] = 1734, - [1736] = 1734, - [1737] = 1737, - [1738] = 1737, + [1722] = 1119, + [1723] = 1126, + [1724] = 1119, + [1725] = 1119, + [1726] = 1111, + [1727] = 1108, + [1728] = 1108, + [1729] = 1109, + [1730] = 1114, + [1731] = 1114, + [1732] = 1109, + [1733] = 1126, + [1734] = 1108, + [1735] = 1111, + [1736] = 1114, + [1737] = 1111, + [1738] = 1738, [1739] = 1739, - [1740] = 1739, - [1741] = 1737, - [1742] = 1737, - [1743] = 1739, + [1740] = 1111, + [1741] = 1741, + [1742] = 1742, + [1743] = 1743, [1744] = 1739, - [1745] = 1737, - [1746] = 1734, - [1747] = 1739, - [1748] = 1737, - [1749] = 1749, - [1750] = 1739, - [1751] = 1734, - [1752] = 1737, + [1745] = 1745, + [1746] = 1746, + [1747] = 1747, + [1748] = 1738, + [1749] = 1119, + [1750] = 1750, + [1751] = 1745, + [1752] = 1739, [1753] = 1739, - [1754] = 1734, - [1755] = 1737, - [1756] = 1734, - [1757] = 1734, - [1758] = 1739, - [1759] = 1759, - [1760] = 1760, - [1761] = 1759, - [1762] = 1759, - [1763] = 1760, - [1764] = 1760, - [1765] = 1759, - [1766] = 1759, - [1767] = 1760, - [1768] = 1768, - [1769] = 1759, - [1770] = 1760, - [1771] = 1759, - [1772] = 1760, - [1773] = 1760, - [1774] = 1759, - [1775] = 1775, - [1776] = 1776, - [1777] = 1760, - [1778] = 1759, - [1779] = 1760, - [1780] = 1199, - [1781] = 1196, - [1782] = 1195, - [1783] = 1783, - [1784] = 1185, - [1785] = 1197, - [1786] = 1183, + [1754] = 1739, + [1755] = 1755, + [1756] = 1756, + [1757] = 1757, + [1758] = 1114, + [1759] = 1739, + [1760] = 1741, + [1761] = 1755, + [1762] = 1126, + [1763] = 1741, + [1764] = 1739, + [1765] = 1745, + [1766] = 1111, + [1767] = 1767, + [1768] = 1108, + [1769] = 1109, + [1770] = 1770, + [1771] = 1109, + [1772] = 1108, + [1773] = 1739, + [1774] = 1739, + [1775] = 1119, + [1776] = 1739, + [1777] = 1757, + [1778] = 1114, + [1779] = 1779, + [1780] = 1770, + [1781] = 1747, + [1782] = 1782, + [1783] = 1704, + [1784] = 1784, + [1785] = 1126, + [1786] = 1747, [1787] = 1787, [1788] = 1788, - [1789] = 1185, - [1790] = 1196, - [1791] = 1183, - [1792] = 1195, - [1793] = 1185, - [1794] = 1197, - [1795] = 1199, - [1796] = 1199, - [1797] = 1197, - [1798] = 1196, - [1799] = 1195, - [1800] = 1183, - [1801] = 1801, - [1802] = 1802, - [1803] = 1803, - [1804] = 1804, - [1805] = 1183, - [1806] = 1185, + [1789] = 1789, + [1790] = 1787, + [1791] = 1788, + [1792] = 1792, + [1793] = 1793, + [1794] = 1789, + [1795] = 1795, + [1796] = 1796, + [1797] = 1797, + [1798] = 1704, + [1799] = 1704, + [1800] = 1800, + [1801] = 1800, + [1802] = 1800, + [1803] = 1796, + [1804] = 1126, + [1805] = 1111, + [1806] = 1795, [1807] = 1807, - [1808] = 1802, - [1809] = 1197, - [1810] = 1810, - [1811] = 1804, - [1812] = 1801, - [1813] = 1195, - [1814] = 1196, - [1815] = 1183, - [1816] = 1788, - [1817] = 1810, - [1818] = 1818, - [1819] = 1195, - [1820] = 1820, - [1821] = 1803, + [1808] = 1789, + [1809] = 1795, + [1810] = 1789, + [1811] = 1793, + [1812] = 1812, + [1813] = 1787, + [1814] = 1814, + [1815] = 1789, + [1816] = 1108, + [1817] = 1109, + [1818] = 1114, + [1819] = 1819, + [1820] = 1126, + [1821] = 1119, [1822] = 1822, - [1823] = 1768, - [1824] = 1824, - [1825] = 1803, - [1826] = 1826, + [1823] = 1108, + [1824] = 1109, + [1825] = 1825, + [1826] = 1114, [1827] = 1827, - [1828] = 1196, - [1829] = 1803, - [1830] = 1197, - [1831] = 1199, - [1832] = 1832, - [1833] = 1199, - [1834] = 1810, - [1835] = 1822, - [1836] = 1803, - [1837] = 1837, - [1838] = 1804, - [1839] = 1185, - [1840] = 1803, - [1841] = 1803, + [1828] = 1807, + [1829] = 1814, + [1830] = 1830, + [1831] = 1831, + [1832] = 1788, + [1833] = 1119, + [1834] = 1789, + [1835] = 1789, + [1836] = 1111, + [1837] = 1789, + [1838] = 1814, + [1839] = 1839, + [1840] = 1840, + [1841] = 1841, [1842] = 1842, - [1843] = 1803, - [1844] = 1803, - [1845] = 1845, - [1846] = 1845, - [1847] = 1807, - [1848] = 1801, - [1849] = 1803, - [1850] = 1196, + [1843] = 1738, + [1844] = 1578, + [1845] = 1738, + [1846] = 1577, + [1847] = 1847, + [1848] = 1848, + [1849] = 1849, + [1850] = 1850, [1851] = 1851, [1852] = 1852, [1853] = 1853, [1854] = 1854, - [1855] = 1195, - [1856] = 1185, - [1857] = 1857, + [1855] = 1720, + [1856] = 1720, + [1857] = 1854, [1858] = 1858, - [1859] = 1197, - [1860] = 1197, - [1861] = 1861, - [1862] = 1857, + [1859] = 1859, + [1860] = 1860, + [1861] = 1841, + [1862] = 1862, [1863] = 1863, [1864] = 1864, - [1865] = 1183, - [1866] = 1866, - [1867] = 1851, - [1868] = 1857, + [1865] = 1865, + [1866] = 1842, + [1867] = 1867, + [1868] = 1848, [1869] = 1869, - [1870] = 1870, - [1871] = 1195, - [1872] = 1853, - [1873] = 1768, - [1874] = 1858, - [1875] = 1857, + [1870] = 1841, + [1871] = 1871, + [1872] = 1872, + [1873] = 1873, + [1874] = 1874, + [1875] = 1875, [1876] = 1876, - [1877] = 1196, - [1878] = 1869, - [1879] = 1768, - [1880] = 1857, + [1877] = 1877, + [1878] = 1878, + [1879] = 1862, + [1880] = 1864, [1881] = 1881, - [1882] = 1854, - [1883] = 1861, - [1884] = 1199, - [1885] = 1199, - [1886] = 1857, - [1887] = 1185, - [1888] = 1876, - [1889] = 1889, - [1890] = 1854, - [1891] = 1891, - [1892] = 1857, - [1893] = 1893, - [1894] = 1853, - [1895] = 1895, - [1896] = 1896, - [1897] = 1851, - [1898] = 1893, - [1899] = 1857, - [1900] = 1183, - [1901] = 1869, - [1902] = 1893, - [1903] = 1903, - [1904] = 1904, - [1905] = 1905, + [1882] = 1871, + [1883] = 1883, + [1884] = 1873, + [1885] = 1885, + [1886] = 1883, + [1887] = 1887, + [1888] = 1888, + [1889] = 1842, + [1890] = 1890, + [1891] = 1782, + [1892] = 1892, + [1893] = 1883, + [1894] = 1738, + [1895] = 1876, + [1896] = 1873, + [1897] = 1871, + [1898] = 1864, + [1899] = 1899, + [1900] = 1900, + [1901] = 1720, + [1902] = 1902, + [1903] = 1899, + [1904] = 1848, + [1905] = 1869, [1906] = 1906, [1907] = 1907, - [1908] = 1908, + [1908] = 1872, [1909] = 1909, - [1910] = 1788, + [1910] = 1909, [1911] = 1911, - [1912] = 1912, - [1913] = 1913, - [1914] = 1912, + [1912] = 1849, + [1913] = 1906, + [1914] = 1800, [1915] = 1915, - [1916] = 1916, - [1917] = 1917, - [1918] = 1918, - [1919] = 1906, + [1916] = 1906, + [1917] = 1586, + [1918] = 1906, + [1919] = 1610, [1920] = 1920, [1921] = 1921, - [1922] = 1922, - [1923] = 1920, - [1924] = 1909, + [1922] = 1906, + [1923] = 1923, + [1924] = 1924, [1925] = 1925, - [1926] = 1911, - [1927] = 1927, - [1928] = 1928, - [1929] = 1912, - [1930] = 1903, - [1931] = 1903, - [1932] = 1932, - [1933] = 1788, - [1934] = 1915, - [1935] = 1935, + [1926] = 1906, + [1927] = 1906, + [1928] = 1906, + [1929] = 1929, + [1930] = 1923, + [1931] = 1931, + [1932] = 1906, + [1933] = 1933, + [1934] = 1906, + [1935] = 1911, [1936] = 1936, - [1937] = 1646, + [1937] = 1906, [1938] = 1938, - [1939] = 1927, - [1940] = 1940, - [1941] = 1941, - [1942] = 1909, - [1943] = 1906, - [1944] = 1640, - [1945] = 1911, - [1946] = 1938, + [1939] = 1939, + [1940] = 1847, + [1941] = 1612, + [1942] = 1931, + [1943] = 1943, + [1944] = 1944, + [1945] = 1945, + [1946] = 1925, [1947] = 1947, - [1948] = 1948, - [1949] = 1783, - [1950] = 1950, + [1948] = 1920, + [1949] = 1859, + [1950] = 1906, [1951] = 1951, - [1952] = 1947, - [1953] = 1951, - [1954] = 1783, - [1955] = 1955, - [1956] = 1956, - [1957] = 1904, - [1958] = 1958, - [1959] = 1783, - [1960] = 1920, - [1961] = 1961, - [1962] = 1927, - [1963] = 1788, - [1964] = 1964, + [1952] = 1945, + [1953] = 1953, + [1954] = 1915, + [1955] = 1906, + [1956] = 1906, + [1957] = 1957, + [1958] = 1933, + [1959] = 1906, + [1960] = 1611, + [1961] = 1915, + [1962] = 1920, + [1963] = 1906, + [1964] = 1853, [1965] = 1965, - [1966] = 1966, - [1967] = 1820, + [1966] = 1925, + [1967] = 1967, [1968] = 1968, [1969] = 1969, - [1970] = 1925, + [1970] = 1970, [1971] = 1971, [1972] = 1972, [1973] = 1973, - [1974] = 1974, - [1975] = 1975, - [1976] = 1976, - [1977] = 1973, - [1978] = 1973, - [1979] = 1973, - [1980] = 1671, - [1981] = 1973, - [1982] = 1958, + [1974] = 1938, + [1975] = 1921, + [1976] = 1967, + [1977] = 1977, + [1978] = 1978, + [1979] = 1979, + [1980] = 1980, + [1981] = 1981, + [1982] = 1982, [1983] = 1983, - [1984] = 1973, + [1984] = 1984, [1985] = 1985, [1986] = 1986, - [1987] = 1971, - [1988] = 1988, + [1987] = 1987, + [1988] = 1924, [1989] = 1989, - [1990] = 1990, - [1991] = 1973, + [1990] = 1979, + [1991] = 1991, [1992] = 1992, - [1993] = 1941, - [1994] = 1973, - [1995] = 1973, - [1996] = 1973, + [1993] = 1993, + [1994] = 1994, + [1995] = 1995, + [1996] = 1996, [1997] = 1997, - [1998] = 1998, - [1999] = 1973, + [1998] = 1936, + [1999] = 1985, [2000] = 2000, - [2001] = 1666, - [2002] = 1969, - [2003] = 1973, - [2004] = 1681, - [2005] = 1688, - [2006] = 1973, - [2007] = 1988, - [2008] = 1969, - [2009] = 1973, - [2010] = 1973, - [2011] = 1974, - [2012] = 1976, - [2013] = 1940, - [2014] = 1916, - [2015] = 1989, + [2001] = 1947, + [2002] = 2002, + [2003] = 2003, + [2004] = 1980, + [2005] = 2005, + [2006] = 2006, + [2007] = 2007, + [2008] = 2008, + [2009] = 1859, + [2010] = 671, + [2011] = 2011, + [2012] = 2012, + [2013] = 1859, + [2014] = 2014, + [2015] = 1853, [2016] = 2016, - [2017] = 1992, - [2018] = 1985, - [2019] = 1971, + [2017] = 2017, + [2018] = 674, + [2019] = 1065, [2020] = 2020, - [2021] = 1986, + [2021] = 2021, [2022] = 2022, [2023] = 2023, - [2024] = 1997, - [2025] = 1992, - [2026] = 2026, - [2027] = 1973, - [2028] = 1853, + [2024] = 1058, + [2025] = 2011, + [2026] = 1853, + [2027] = 2027, + [2028] = 2028, [2029] = 2029, [2030] = 2030, - [2031] = 2016, + [2031] = 1859, [2032] = 2032, - [2033] = 2033, + [2033] = 2014, [2034] = 2034, - [2035] = 2035, + [2035] = 1577, [2036] = 2036, - [2037] = 2037, + [2037] = 1872, [2038] = 2038, [2039] = 2039, - [2040] = 2040, + [2040] = 1983, [2041] = 2041, - [2042] = 2030, + [2042] = 2042, [2043] = 2043, - [2044] = 2022, + [2044] = 2044, [2045] = 2045, [2046] = 2046, [2047] = 2047, [2048] = 2048, [2049] = 2049, - [2050] = 2050, - [2051] = 2051, - [2052] = 2052, + [2050] = 2027, + [2051] = 1853, + [2052] = 2030, [2053] = 2053, - [2054] = 2054, - [2055] = 2055, - [2056] = 1990, + [2054] = 2030, + [2055] = 2007, + [2056] = 1849, [2057] = 2057, - [2058] = 2058, - [2059] = 2059, + [2058] = 2017, + [2059] = 2053, [2060] = 2060, - [2061] = 2026, - [2062] = 2058, - [2063] = 2063, - [2064] = 2064, + [2061] = 2061, + [2062] = 2022, + [2063] = 2012, + [2064] = 2048, [2065] = 2065, - [2066] = 1941, + [2066] = 2047, [2067] = 2067, - [2068] = 2068, - [2069] = 2067, + [2068] = 2011, + [2069] = 1992, [2070] = 2070, - [2071] = 2071, - [2072] = 2043, - [2073] = 2032, + [2071] = 2046, + [2072] = 667, + [2073] = 2045, [2074] = 2074, - [2075] = 2075, - [2076] = 2076, - [2077] = 2077, - [2078] = 2078, - [2079] = 1688, - [2080] = 2080, - [2081] = 2081, - [2082] = 2082, - [2083] = 2083, - [2084] = 2080, - [2085] = 2085, - [2086] = 2086, - [2087] = 1925, - [2088] = 1640, - [2089] = 2089, - [2090] = 2090, - [2091] = 1108, - [2092] = 1940, - [2093] = 1940, - [2094] = 681, - [2095] = 2095, - [2096] = 2080, - [2097] = 2097, - [2098] = 2098, - [2099] = 2099, - [2100] = 2086, - [2101] = 2077, - [2102] = 2095, - [2103] = 2099, - [2104] = 1646, - [2105] = 2105, - [2106] = 2078, - [2107] = 2063, - [2108] = 2108, - [2109] = 2076, - [2110] = 2110, - [2111] = 677, - [2112] = 2065, - [2113] = 2071, - [2114] = 2110, - [2115] = 2115, - [2116] = 2075, - [2117] = 2064, - [2118] = 2081, - [2119] = 2119, - [2120] = 2120, - [2121] = 2070, - [2122] = 2085, - [2123] = 2077, - [2124] = 2089, - [2125] = 2086, - [2126] = 2098, - [2127] = 2105, - [2128] = 2128, - [2129] = 2063, - [2130] = 2110, - [2131] = 2076, - [2132] = 2078, - [2133] = 2108, - [2134] = 2097, - [2135] = 2135, - [2136] = 2136, - [2137] = 2099, - [2138] = 2138, - [2139] = 2095, - [2140] = 2080, - [2141] = 2141, - [2142] = 2142, - [2143] = 2143, - [2144] = 1640, - [2145] = 2065, - [2146] = 2086, - [2147] = 2071, - [2148] = 2075, - [2149] = 2086, - [2150] = 2150, - [2151] = 2151, - [2152] = 2105, - [2153] = 2098, - [2154] = 2089, - [2155] = 2095, - [2156] = 2085, - [2157] = 2136, - [2158] = 2085, - [2159] = 2099, - [2160] = 2160, - [2161] = 2089, - [2162] = 2162, - [2163] = 2098, - [2164] = 2105, - [2165] = 1958, - [2166] = 2078, - [2167] = 2135, - [2168] = 2105, - [2169] = 2098, - [2170] = 2160, - [2171] = 2075, - [2172] = 2065, - [2173] = 2071, - [2174] = 2174, - [2175] = 2080, - [2176] = 2075, - [2177] = 2143, - [2178] = 2078, - [2179] = 2083, - [2180] = 2180, - [2181] = 2085, - [2182] = 2105, - [2183] = 2089, - [2184] = 2098, - [2185] = 2098, - [2186] = 2105, - [2187] = 2075, - [2188] = 2188, - [2189] = 2189, - [2190] = 2174, - [2191] = 2191, - [2192] = 2074, + [2075] = 2020, + [2076] = 1982, + [2077] = 2005, + [2078] = 2023, + [2079] = 2057, + [2080] = 2048, + [2081] = 2047, + [2082] = 2017, + [2083] = 2041, + [2084] = 2084, + [2085] = 2014, + [2086] = 2021, + [2087] = 1874, + [2088] = 2088, + [2089] = 2038, + [2090] = 2039, + [2091] = 2048, + [2092] = 2029, + [2093] = 2041, + [2094] = 2041, + [2095] = 2028, + [2096] = 2047, + [2097] = 2045, + [2098] = 2039, + [2099] = 2046, + [2100] = 2038, + [2101] = 2047, + [2102] = 2048, + [2103] = 2103, + [2104] = 2041, + [2105] = 2027, + [2106] = 1887, + [2107] = 2107, + [2108] = 1888, + [2109] = 2109, + [2110] = 1890, + [2111] = 2020, + [2112] = 2048, + [2113] = 1578, + [2114] = 2114, + [2115] = 2012, + [2116] = 2047, + [2117] = 2023, + [2118] = 2118, + [2119] = 2046, + [2120] = 2045, + [2121] = 2011, + [2122] = 2023, + [2123] = 2123, + [2124] = 2020, + [2125] = 1892, + [2126] = 2118, + [2127] = 2041, + [2128] = 1885, + [2129] = 1877, + [2130] = 2020, + [2131] = 2131, + [2132] = 2039, + [2133] = 1577, + [2134] = 2023, + [2135] = 2038, + [2136] = 2131, + [2137] = 2014, + [2138] = 664, + [2139] = 2023, + [2140] = 2020, + [2141] = 2014, + [2142] = 2060, + [2143] = 2011, + [2144] = 2144, + [2145] = 2039, + [2146] = 2012, + [2147] = 2038, + [2148] = 2039, + [2149] = 2149, + [2150] = 2048, + [2151] = 2041, + [2152] = 2152, + [2153] = 2014, + [2154] = 2114, + [2155] = 2155, + [2156] = 2045, + [2157] = 2157, + [2158] = 2046, + [2159] = 2157, + [2160] = 2047, + [2161] = 2048, + [2162] = 2047, + [2163] = 2011, + [2164] = 2046, + [2165] = 2028, + [2166] = 1577, + [2167] = 2045, + [2168] = 2048, + [2169] = 2047, + [2170] = 2170, + [2171] = 2171, + [2172] = 2046, + [2173] = 2038, + [2174] = 2012, + [2175] = 2045, + [2176] = 2012, + [2177] = 2043, + [2178] = 668, + [2179] = 2011, + [2180] = 2041, + [2181] = 2012, + [2182] = 2053, + [2183] = 2039, + [2184] = 2038, + [2185] = 2185, + [2186] = 2103, + [2187] = 2020, + [2188] = 1612, + [2189] = 2029, + [2190] = 2014, + [2191] = 2023, + [2192] = 2044, [2193] = 2193, - [2194] = 1940, - [2195] = 2150, - [2196] = 684, - [2197] = 678, - [2198] = 2037, - [2199] = 2080, - [2200] = 2068, - [2201] = 2105, - [2202] = 1925, - [2203] = 685, - [2204] = 2086, - [2205] = 2098, - [2206] = 2046, - [2207] = 2089, - [2208] = 2085, - [2209] = 2209, - [2210] = 2075, - [2211] = 2071, - [2212] = 2095, - [2213] = 1966, - [2214] = 2065, - [2215] = 1916, - [2216] = 2099, - [2217] = 2217, - [2218] = 2078, - [2219] = 2095, - [2220] = 2108, - [2221] = 2083, - [2222] = 1905, - [2223] = 2078, - [2224] = 2086, + [2194] = 2022, + [2195] = 2023, + [2196] = 2107, + [2197] = 1851, + [2198] = 2014, + [2199] = 2020, + [2200] = 2109, + [2201] = 2011, + [2202] = 2041, + [2203] = 2012, + [2204] = 2038, + [2205] = 2039, + [2206] = 2003, + [2207] = 1847, + [2208] = 2041, + [2209] = 1996, + [2210] = 2144, + [2211] = 2006, + [2212] = 2045, + [2213] = 2065, + [2214] = 2046, + [2215] = 2067, + [2216] = 2047, + [2217] = 2048, + [2218] = 2152, + [2219] = 2084, + [2220] = 1957, + [2221] = 2221, + [2222] = 2070, + [2223] = 2223, + [2224] = 2224, [2225] = 2225, - [2226] = 2141, - [2227] = 1965, + [2226] = 1924, + [2227] = 2061, [2228] = 2228, - [2229] = 2065, - [2230] = 2071, + [2229] = 2229, + [2230] = 2230, [2231] = 2231, - [2232] = 1964, - [2233] = 2075, - [2234] = 2138, - [2235] = 2065, - [2236] = 2099, - [2237] = 2085, - [2238] = 2071, - [2239] = 2089, - [2240] = 1640, - [2241] = 2098, - [2242] = 2105, - [2243] = 2105, - [2244] = 2098, - [2245] = 2095, - [2246] = 2075, - [2247] = 1156, + [2232] = 2232, + [2233] = 2233, + [2234] = 2231, + [2235] = 2235, + [2236] = 2236, + [2237] = 2237, + [2238] = 2238, + [2239] = 2239, + [2240] = 2240, + [2241] = 2241, + [2242] = 2242, + [2243] = 2243, + [2244] = 2244, + [2245] = 2245, + [2246] = 2246, + [2247] = 671, [2248] = 2248, - [2249] = 2089, - [2250] = 1935, - [2251] = 2085, - [2252] = 1955, - [2253] = 1956, - [2254] = 1925, - [2255] = 2080, - [2256] = 2099, - [2257] = 2142, - [2258] = 2136, - [2259] = 2086, - [2260] = 2065, - [2261] = 2071, - [2262] = 2119, - [2263] = 1968, - [2264] = 2054, - [2265] = 2075, - [2266] = 2095, - [2267] = 2059, - [2268] = 2078, - [2269] = 1681, + [2249] = 2249, + [2250] = 2250, + [2251] = 2251, + [2252] = 2252, + [2253] = 2253, + [2254] = 668, + [2255] = 2255, + [2256] = 2242, + [2257] = 2257, + [2258] = 674, + [2259] = 2233, + [2260] = 1586, + [2261] = 2261, + [2262] = 2232, + [2263] = 2263, + [2264] = 2264, + [2265] = 2265, + [2266] = 664, + [2267] = 667, + [2268] = 2268, + [2269] = 2269, [2270] = 2270, - [2271] = 2271, + [2271] = 1957, [2272] = 2272, [2273] = 2273, - [2274] = 2274, - [2275] = 2270, + [2274] = 1586, + [2275] = 1611, [2276] = 2276, - [2277] = 2277, - [2278] = 2278, - [2279] = 2279, + [2277] = 1610, + [2278] = 2269, + [2279] = 2242, [2280] = 2280, - [2281] = 2281, - [2282] = 2282, + [2281] = 2261, + [2282] = 1612, [2283] = 2283, - [2284] = 2284, + [2284] = 2233, [2285] = 2285, - [2286] = 2286, - [2287] = 1666, + [2286] = 2232, + [2287] = 2228, [2288] = 2288, - [2289] = 1975, - [2290] = 2285, - [2291] = 2128, + [2289] = 1957, + [2290] = 2290, + [2291] = 2291, [2292] = 2292, - [2293] = 1975, - [2294] = 2288, - [2295] = 1666, - [2296] = 1688, - [2297] = 2297, + [2293] = 2293, + [2294] = 2294, + [2295] = 2295, + [2296] = 2296, + [2297] = 2237, [2298] = 2298, - [2299] = 2272, + [2299] = 2283, [2300] = 2300, - [2301] = 2301, - [2302] = 1975, - [2303] = 1681, - [2304] = 2304, + [2301] = 2272, + [2302] = 2171, + [2303] = 1610, + [2304] = 2225, [2305] = 2305, - [2306] = 2306, - [2307] = 2285, - [2308] = 2298, - [2309] = 2280, - [2310] = 2284, - [2311] = 2283, + [2306] = 1611, + [2307] = 2307, + [2308] = 2308, + [2309] = 2276, + [2310] = 2310, + [2311] = 2311, [2312] = 2312, - [2313] = 2305, - [2314] = 2284, + [2313] = 2313, + [2314] = 2314, [2315] = 2315, - [2316] = 2248, + [2316] = 2315, [2317] = 2317, [2318] = 2318, [2319] = 2319, [2320] = 2320, - [2321] = 2283, - [2322] = 2322, - [2323] = 2282, - [2324] = 2322, - [2325] = 2319, - [2326] = 1671, - [2327] = 1671, + [2321] = 2321, + [2322] = 2319, + [2323] = 2323, + [2324] = 2311, + [2325] = 2311, + [2326] = 2326, + [2327] = 2327, [2328] = 2328, [2329] = 2329, - [2330] = 2231, - [2331] = 2016, + [2330] = 2323, + [2331] = 2323, [2332] = 2332, [2333] = 2333, - [2334] = 2334, - [2335] = 2335, - [2336] = 2336, - [2337] = 2337, - [2338] = 2338, - [2339] = 2334, - [2340] = 2340, - [2341] = 2341, + [2334] = 2311, + [2335] = 2319, + [2336] = 2315, + [2337] = 2318, + [2338] = 2333, + [2339] = 2339, + [2340] = 2326, + [2341] = 2319, [2342] = 2342, [2343] = 2343, - [2344] = 2344, + [2344] = 2321, [2345] = 2345, - [2346] = 2341, - [2347] = 2337, - [2348] = 2345, - [2349] = 2336, - [2350] = 2350, - [2351] = 2351, - [2352] = 2344, - [2353] = 2343, - [2354] = 2354, - [2355] = 2340, - [2356] = 2356, - [2357] = 2334, - [2358] = 2358, - [2359] = 2338, + [2346] = 2313, + [2347] = 2347, + [2348] = 2321, + [2349] = 2349, + [2350] = 2327, + [2351] = 2318, + [2352] = 2333, + [2353] = 2326, + [2354] = 2319, + [2355] = 2355, + [2356] = 2317, + [2357] = 2314, + [2358] = 2313, + [2359] = 2315, [2360] = 2360, - [2361] = 2345, + [2361] = 2328, [2362] = 2362, - [2363] = 2363, - [2364] = 2364, - [2365] = 2334, - [2366] = 2363, - [2367] = 2367, - [2368] = 2334, - [2369] = 2344, - [2370] = 2370, - [2371] = 2371, - [2372] = 2372, - [2373] = 2350, + [2363] = 2319, + [2364] = 2313, + [2365] = 2333, + [2366] = 2326, + [2367] = 2323, + [2368] = 2319, + [2369] = 2369, + [2370] = 2333, + [2371] = 2326, + [2372] = 2326, + [2373] = 2327, [2374] = 2374, - [2375] = 2336, - [2376] = 2363, - [2377] = 2334, - [2378] = 2344, - [2379] = 2363, - [2380] = 2351, - [2381] = 2381, - [2382] = 2382, + [2375] = 2333, + [2376] = 2326, + [2377] = 2314, + [2378] = 2378, + [2379] = 2328, + [2380] = 2333, + [2381] = 2326, + [2382] = 2329, [2383] = 2383, - [2384] = 2350, - [2385] = 2363, - [2386] = 2334, - [2387] = 2336, - [2388] = 2337, - [2389] = 2341, - [2390] = 2363, - [2391] = 2334, - [2392] = 2345, - [2393] = 2393, - [2394] = 2344, - [2395] = 2363, - [2396] = 2334, - [2397] = 2362, - [2398] = 2343, - [2399] = 2399, - [2400] = 2363, - [2401] = 2334, - [2402] = 2340, - [2403] = 2334, - [2404] = 2334, - [2405] = 2363, - [2406] = 2363, + [2384] = 2332, + [2385] = 2333, + [2386] = 2326, + [2387] = 2333, + [2388] = 2323, + [2389] = 2360, + [2390] = 2333, + [2391] = 2311, + [2392] = 2392, + [2393] = 2326, + [2394] = 2327, + [2395] = 2317, + [2396] = 2320, + [2397] = 2397, + [2398] = 2392, + [2399] = 2329, + [2400] = 2318, + [2401] = 2326, + [2402] = 2318, + [2403] = 2403, + [2404] = 2333, + [2405] = 2321, + [2406] = 2406, [2407] = 2407, - [2408] = 2338, - [2409] = 2399, - [2410] = 2338, - [2411] = 2363, + [2408] = 2327, + [2409] = 2409, + [2410] = 2328, + [2411] = 2317, [2412] = 2412, - [2413] = 2362, - [2414] = 2351, - [2415] = 2363, - [2416] = 2350, - [2417] = 2381, - [2418] = 2356, - [2419] = 2340, - [2420] = 2363, - [2421] = 2334, - [2422] = 2350, - [2423] = 2381, - [2424] = 2343, - [2425] = 2425, - [2426] = 2336, - [2427] = 2362, + [2413] = 2413, + [2414] = 2315, + [2415] = 2412, + [2416] = 2343, + [2417] = 2417, + [2418] = 2418, + [2419] = 2355, + [2420] = 2362, + [2421] = 2369, + [2422] = 2329, + [2423] = 2314, + [2424] = 2321, + [2425] = 2378, + [2426] = 2332, + [2427] = 2314, [2428] = 2428, [2429] = 2429, - [2430] = 2344, - [2431] = 2342, - [2432] = 2344, - [2433] = 2354, - [2434] = 2345, - [2435] = 2383, - [2436] = 2358, - [2437] = 2393, - [2438] = 2438, - [2439] = 2362, - [2440] = 2382, - [2441] = 2441, - [2442] = 2351, - [2443] = 2337, - [2444] = 2444, - [2445] = 2445, - [2446] = 2446, - [2447] = 2351, - [2448] = 2448, - [2449] = 2449, - [2450] = 2438, - [2451] = 2451, - [2452] = 2452, - [2453] = 2453, - [2454] = 2351, - [2455] = 2374, - [2456] = 2456, - [2457] = 2372, - [2458] = 2399, - [2459] = 2341, - [2460] = 2351, - [2461] = 2338, - [2462] = 2412, - [2463] = 2393, - [2464] = 2345, - [2465] = 2465, - [2466] = 2344, - [2467] = 2467, - [2468] = 2342, - [2469] = 2350, - [2470] = 2438, - [2471] = 2335, - [2472] = 2452, - [2473] = 2336, - [2474] = 2337, - [2475] = 2441, - [2476] = 2343, - [2477] = 2343, - [2478] = 2341, - [2479] = 2340, - [2480] = 2334, - [2481] = 2338, - [2482] = 2399, - [2483] = 2345, - [2484] = 2362, - [2485] = 2341, - [2486] = 2381, - [2487] = 2344, - [2488] = 2452, - [2489] = 2363, - [2490] = 2343, + [2430] = 2345, + [2431] = 2321, + [2432] = 2318, + [2433] = 2317, + [2434] = 2409, + [2435] = 2314, + [2436] = 2333, + [2437] = 2437, + [2438] = 2333, + [2439] = 2439, + [2440] = 2313, + [2441] = 2412, + [2442] = 2343, + [2443] = 2355, + [2444] = 2349, + [2445] = 2429, + [2446] = 2326, + [2447] = 2329, + [2448] = 2327, + [2449] = 2326, + [2450] = 2321, + [2451] = 2311, + [2452] = 2315, + [2453] = 2323, + [2454] = 2454, + [2455] = 2318, + [2456] = 2317, + [2457] = 2319, + [2458] = 2314, + [2459] = 2313, + [2460] = 2460, + [2461] = 2429, + [2462] = 2462, + [2463] = 2463, + [2464] = 2329, + [2465] = 2326, + [2466] = 2319, + [2467] = 2417, + [2468] = 2315, + [2469] = 2315, + [2470] = 2323, + [2471] = 2311, + [2472] = 2332, + [2473] = 2326, + [2474] = 2428, + [2475] = 2319, + [2476] = 2476, + [2477] = 2327, + [2478] = 2478, + [2479] = 2313, + [2480] = 2314, + [2481] = 2323, + [2482] = 2482, + [2483] = 2328, + [2484] = 2317, + [2485] = 2485, + [2486] = 2311, + [2487] = 2487, + [2488] = 2326, + [2489] = 2327, + [2490] = 2318, [2491] = 2491, - [2492] = 2340, - [2493] = 2493, - [2494] = 2449, - [2495] = 2340, - [2496] = 2370, + [2492] = 2329, + [2493] = 2312, + [2494] = 2333, + [2495] = 2333, + [2496] = 2329, [2497] = 2497, - [2498] = 2334, - [2499] = 2407, - [2500] = 2338, - [2501] = 2399, - [2502] = 2337, - [2503] = 2351, - [2504] = 2363, - [2505] = 2362, - [2506] = 2362, - [2507] = 2507, - [2508] = 2350, - [2509] = 2381, - [2510] = 2445, - [2511] = 2511, - [2512] = 2512, - [2513] = 2512, + [2498] = 2332, + [2499] = 2487, + [2500] = 2500, + [2501] = 2501, + [2502] = 2502, + [2503] = 2485, + [2504] = 2321, + [2505] = 2313, + [2506] = 2406, + [2507] = 2502, + [2508] = 2407, + [2509] = 2317, + [2510] = 2403, + [2511] = 2383, + [2512] = 2491, + [2513] = 2333, [2514] = 2514, - [2515] = 2336, - [2516] = 2516, - [2517] = 2337, - [2518] = 2341, - [2519] = 2519, - [2520] = 2350, - [2521] = 2511, - [2522] = 2336, - [2523] = 2345, - [2524] = 2524, - [2525] = 2344, - [2526] = 2363, - [2527] = 2453, - [2528] = 2428, - [2529] = 2343, - [2530] = 2451, - [2531] = 2337, - [2532] = 2340, - [2533] = 2334, - [2534] = 2519, - [2535] = 2364, - [2536] = 2341, - [2537] = 2360, - [2538] = 2371, - [2539] = 2467, - [2540] = 2540, - [2541] = 2540, - [2542] = 2467, - [2543] = 2425, - [2544] = 2338, + [2515] = 2491, + [2516] = 2514, + [2517] = 2454, }; static inline bool sym_identifier_character_set_1(int32_t c) { @@ -7960,7 +7943,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(63); if (lookahead == '/') ADVANCE(94); if (lookahead == '0') ADVANCE(145); - if (lookahead == ':') ADVANCE(74); + if (lookahead == ':') ADVANCE(75); if (lookahead == ';') ADVANCE(61); if (lookahead == '<') ADVANCE(109); if (lookahead == '=') ADVANCE(87); @@ -7986,6 +7969,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(32) if (lookahead == '\r') SKIP(32) + if (lookahead == '!') ADVANCE(9); + if (lookahead == '#') ADVANCE(172); + if (lookahead == '%') ADVANCE(95); + if (lookahead == '&') ADVANCE(101); + if (lookahead == '(') ADVANCE(64); + if (lookahead == ')') ADVANCE(65); + if (lookahead == '*') ADVANCE(69); + if (lookahead == '+') ADVANCE(88); + if (lookahead == ',') ADVANCE(66); + if (lookahead == '-') ADVANCE(90); + if (lookahead == '.') ADVANCE(63); + if (lookahead == '/') ADVANCE(94); + if (lookahead == '0') ADVANCE(145); + if (lookahead == ':') ADVANCE(74); + if (lookahead == '<') ADVANCE(109); + if (lookahead == '=') ADVANCE(87); + if (lookahead == '>') ADVANCE(117); + if (lookahead == '@') ADVANCE(82); + if (lookahead == '[') ADVANCE(84); + if (lookahead == '\\') ADVANCE(27); + if (lookahead == ']') ADVANCE(85); + if (lookahead == '^') ADVANCE(103); + if (lookahead == '{') ADVANCE(133); + if (lookahead == '|') ADVANCE(99); + if (lookahead == '}') ADVANCE(135); + if (lookahead == '~') ADVANCE(107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(144); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(171); + END_STATE(); + case 33: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\f' || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(33) + if (lookahead == '\r') SKIP(33) if (lookahead == '#') ADVANCE(172); if (lookahead == '%') ADVANCE(10); if (lookahead == '&') ADVANCE(11); @@ -8011,15 +8032,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(144); if (sym_identifier_character_set_2(lookahead)) ADVANCE(171); END_STATE(); - case 33: + case 34: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(33) - if (lookahead == '\r') SKIP(33) + lookahead == 65279) SKIP(34) + if (lookahead == '\r') SKIP(34) if (lookahead == '!') ADVANCE(8); if (lookahead == '#') ADVANCE(172); if (lookahead == '%') ADVANCE(96); @@ -8044,15 +8065,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(100); if (sym_identifier_character_set_2(lookahead)) ADVANCE(171); END_STATE(); - case 34: + case 35: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(34) - if (lookahead == '\r') SKIP(34) + lookahead == 65279) SKIP(35) + if (lookahead == '\r') SKIP(35) if (lookahead == '!') ADVANCE(8); if (lookahead == '#') ADVANCE(172); if (lookahead == '%') ADVANCE(96); @@ -8076,15 +8097,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(100); if (sym_identifier_character_set_2(lookahead)) ADVANCE(171); END_STATE(); - case 35: + case 36: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(35) - if (lookahead == '\r') SKIP(35) + lookahead == 65279) SKIP(36) + if (lookahead == '\r') SKIP(36) if (lookahead == '!') ADVANCE(9); if (lookahead == '#') ADVANCE(172); if (lookahead == '%') ADVANCE(95); @@ -8111,42 +8132,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(135); if (sym_identifier_character_set_1(lookahead)) ADVANCE(171); END_STATE(); - case 36: + case 37: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(37) - if (lookahead == '\r') SKIP(37) + lookahead == 65279) SKIP(38) + if (lookahead == '\r') SKIP(38) if (lookahead == '#') ADVANCE(172); if (lookahead == '\\') ADVANCE(138); if (lookahead == '{') ADVANCE(134); if (lookahead == '}') ADVANCE(26); END_STATE(); - case 37: + case 38: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(37) - if (lookahead == '\r') SKIP(37) + lookahead == 65279) SKIP(38) + if (lookahead == '\r') SKIP(38) if (lookahead == '#') ADVANCE(172); if (lookahead == '\\') ADVANCE(27); if (lookahead == '{') ADVANCE(133); END_STATE(); - case 38: + case 39: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(38) - if (lookahead == '\r') SKIP(38) + lookahead == 65279) SKIP(39) + if (lookahead == '\r') SKIP(39) if (lookahead == '#') ADVANCE(172); if (lookahead == '-') ADVANCE(19); if (lookahead == ':') ADVANCE(74); @@ -8154,15 +8175,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(168); if (sym_identifier_character_set_2(lookahead)) ADVANCE(171); END_STATE(); - case 39: + case 40: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(39) - if (lookahead == '\r') SKIP(39) + lookahead == 65279) SKIP(40) + if (lookahead == '\r') SKIP(40) if (lookahead == '!') ADVANCE(8); if (lookahead == '#') ADVANCE(172); if (lookahead == '%') ADVANCE(96); @@ -8190,45 +8211,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(144); if (sym_identifier_character_set_2(lookahead)) ADVANCE(171); END_STATE(); - case 40: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(40) - if (lookahead == '\r') SKIP(40) - if (lookahead == '!') ADVANCE(9); - if (lookahead == '#') ADVANCE(172); - if (lookahead == '%') ADVANCE(95); - if (lookahead == '&') ADVANCE(101); - if (lookahead == '(') ADVANCE(64); - if (lookahead == ')') ADVANCE(65); - if (lookahead == '*') ADVANCE(69); - if (lookahead == '+') ADVANCE(88); - if (lookahead == ',') ADVANCE(66); - if (lookahead == '-') ADVANCE(90); - if (lookahead == '.') ADVANCE(63); - if (lookahead == '/') ADVANCE(94); - if (lookahead == '0') ADVANCE(145); - if (lookahead == ':') ADVANCE(75); - if (lookahead == ';') ADVANCE(61); - if (lookahead == '<') ADVANCE(109); - if (lookahead == '=') ADVANCE(87); - if (lookahead == '>') ADVANCE(117); - if (lookahead == '@') ADVANCE(82); - if (lookahead == '[') ADVANCE(84); - if (lookahead == '\\') ADVANCE(27); - if (lookahead == ']') ADVANCE(85); - if (lookahead == '^') ADVANCE(103); - if (lookahead == '{') ADVANCE(133); - if (lookahead == '|') ADVANCE(99); - if (lookahead == '}') ADVANCE(135); - if (lookahead == '~') ADVANCE(107); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(144); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(171); - END_STATE(); case 41: if (lookahead == '\t' || lookahead == '\n' || @@ -8950,12 +8932,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 166: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(77); + if (lookahead == 't') ADVANCE(155); if (sym_identifier_character_set_3(lookahead)) ADVANCE(171); END_STATE(); case 167: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(155); + if (lookahead == 't') ADVANCE(77); if (sym_identifier_character_set_3(lookahead)) ADVANCE(171); END_STATE(); case 168: @@ -9565,27 +9547,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [51] = {.lex_state = 57, .external_lex_state = 3}, [52] = {.lex_state = 57, .external_lex_state = 3}, [53] = {.lex_state = 57, .external_lex_state = 3}, - [54] = {.lex_state = 57, .external_lex_state = 3}, + [54] = {.lex_state = 57, .external_lex_state = 2}, [55] = {.lex_state = 57, .external_lex_state = 3}, - [56] = {.lex_state = 57, .external_lex_state = 3}, + [56] = {.lex_state = 57, .external_lex_state = 2}, [57] = {.lex_state = 57, .external_lex_state = 3}, [58] = {.lex_state = 57, .external_lex_state = 3}, [59] = {.lex_state = 57, .external_lex_state = 3}, [60] = {.lex_state = 57, .external_lex_state = 3}, - [61] = {.lex_state = 57, .external_lex_state = 2}, + [61] = {.lex_state = 57, .external_lex_state = 3}, [62] = {.lex_state = 57, .external_lex_state = 3}, - [63] = {.lex_state = 57, .external_lex_state = 3}, - [64] = {.lex_state = 57, .external_lex_state = 3}, - [65] = {.lex_state = 57, .external_lex_state = 3}, - [66] = {.lex_state = 57, .external_lex_state = 2}, - [67] = {.lex_state = 57, .external_lex_state = 3}, - [68] = {.lex_state = 57, .external_lex_state = 3}, - [69] = {.lex_state = 57, .external_lex_state = 3}, - [70] = {.lex_state = 30, .external_lex_state = 4}, - [71] = {.lex_state = 30, .external_lex_state = 4}, - [72] = {.lex_state = 30, .external_lex_state = 4}, - [73] = {.lex_state = 30, .external_lex_state = 4}, - [74] = {.lex_state = 39, .external_lex_state = 4}, + [63] = {.lex_state = 30, .external_lex_state = 4}, + [64] = {.lex_state = 30, .external_lex_state = 4}, + [65] = {.lex_state = 30, .external_lex_state = 4}, + [66] = {.lex_state = 30, .external_lex_state = 4}, + [67] = {.lex_state = 40, .external_lex_state = 4}, + [68] = {.lex_state = 57, .external_lex_state = 5}, + [69] = {.lex_state = 57, .external_lex_state = 5}, + [70] = {.lex_state = 57, .external_lex_state = 5}, + [71] = {.lex_state = 57, .external_lex_state = 5}, + [72] = {.lex_state = 57, .external_lex_state = 5}, + [73] = {.lex_state = 57, .external_lex_state = 5}, + [74] = {.lex_state = 57, .external_lex_state = 5}, [75] = {.lex_state = 57, .external_lex_state = 5}, [76] = {.lex_state = 57, .external_lex_state = 5}, [77] = {.lex_state = 57, .external_lex_state = 5}, @@ -9627,312 +9609,312 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [113] = {.lex_state = 57, .external_lex_state = 5}, [114] = {.lex_state = 57, .external_lex_state = 5}, [115] = {.lex_state = 57, .external_lex_state = 5}, - [116] = {.lex_state = 57, .external_lex_state = 5}, - [117] = {.lex_state = 57, .external_lex_state = 5}, - [118] = {.lex_state = 57, .external_lex_state = 5}, - [119] = {.lex_state = 57, .external_lex_state = 5}, - [120] = {.lex_state = 57, .external_lex_state = 5}, - [121] = {.lex_state = 57, .external_lex_state = 5}, - [122] = {.lex_state = 57, .external_lex_state = 5}, - [123] = {.lex_state = 57, .external_lex_state = 5}, - [124] = {.lex_state = 57, .external_lex_state = 5}, - [125] = {.lex_state = 57, .external_lex_state = 5}, - [126] = {.lex_state = 57, .external_lex_state = 5}, - [127] = {.lex_state = 57, .external_lex_state = 5}, - [128] = {.lex_state = 57, .external_lex_state = 5}, - [129] = {.lex_state = 57, .external_lex_state = 5}, - [130] = {.lex_state = 57, .external_lex_state = 5}, + [116] = {.lex_state = 57, .external_lex_state = 4}, + [117] = {.lex_state = 57, .external_lex_state = 4}, + [118] = {.lex_state = 57, .external_lex_state = 4}, + [119] = {.lex_state = 57, .external_lex_state = 4}, + [120] = {.lex_state = 57, .external_lex_state = 4}, + [121] = {.lex_state = 57, .external_lex_state = 4}, + [122] = {.lex_state = 57, .external_lex_state = 4}, + [123] = {.lex_state = 57, .external_lex_state = 4}, + [124] = {.lex_state = 57, .external_lex_state = 4}, + [125] = {.lex_state = 57, .external_lex_state = 4}, + [126] = {.lex_state = 57, .external_lex_state = 4}, + [127] = {.lex_state = 57, .external_lex_state = 4}, + [128] = {.lex_state = 57, .external_lex_state = 4}, + [129] = {.lex_state = 57, .external_lex_state = 4}, + [130] = {.lex_state = 57, .external_lex_state = 4}, [131] = {.lex_state = 57, .external_lex_state = 4}, - [132] = {.lex_state = 57, .external_lex_state = 4}, - [133] = {.lex_state = 57, .external_lex_state = 4}, - [134] = {.lex_state = 57, .external_lex_state = 4}, - [135] = {.lex_state = 57, .external_lex_state = 4}, - [136] = {.lex_state = 57, .external_lex_state = 4}, - [137] = {.lex_state = 57, .external_lex_state = 4}, - [138] = {.lex_state = 57, .external_lex_state = 4}, - [139] = {.lex_state = 57, .external_lex_state = 4}, - [140] = {.lex_state = 57, .external_lex_state = 4}, - [141] = {.lex_state = 57, .external_lex_state = 4}, - [142] = {.lex_state = 57, .external_lex_state = 4}, - [143] = {.lex_state = 57, .external_lex_state = 4}, - [144] = {.lex_state = 57, .external_lex_state = 4}, - [145] = {.lex_state = 57, .external_lex_state = 2}, - [146] = {.lex_state = 31, .external_lex_state = 6}, - [147] = {.lex_state = 40, .external_lex_state = 6}, - [148] = {.lex_state = 40, .external_lex_state = 6}, - [149] = {.lex_state = 40, .external_lex_state = 4}, - [150] = {.lex_state = 39, .external_lex_state = 4}, - [151] = {.lex_state = 31, .external_lex_state = 6}, - [152] = {.lex_state = 40, .external_lex_state = 6}, - [153] = {.lex_state = 40, .external_lex_state = 7}, - [154] = {.lex_state = 40, .external_lex_state = 2}, - [155] = {.lex_state = 31, .external_lex_state = 4}, - [156] = {.lex_state = 40, .external_lex_state = 6}, - [157] = {.lex_state = 31, .external_lex_state = 4}, - [158] = {.lex_state = 40, .external_lex_state = 7}, - [159] = {.lex_state = 40, .external_lex_state = 8}, - [160] = {.lex_state = 31, .external_lex_state = 6}, + [132] = {.lex_state = 57, .external_lex_state = 2}, + [133] = {.lex_state = 31, .external_lex_state = 6}, + [134] = {.lex_state = 31, .external_lex_state = 4}, + [135] = {.lex_state = 32, .external_lex_state = 6}, + [136] = {.lex_state = 31, .external_lex_state = 6}, + [137] = {.lex_state = 32, .external_lex_state = 6}, + [138] = {.lex_state = 31, .external_lex_state = 2}, + [139] = {.lex_state = 31, .external_lex_state = 4}, + [140] = {.lex_state = 31, .external_lex_state = 6}, + [141] = {.lex_state = 31, .external_lex_state = 7}, + [142] = {.lex_state = 31, .external_lex_state = 4}, + [143] = {.lex_state = 40, .external_lex_state = 4}, + [144] = {.lex_state = 31, .external_lex_state = 6}, + [145] = {.lex_state = 32, .external_lex_state = 2}, + [146] = {.lex_state = 32, .external_lex_state = 8}, + [147] = {.lex_state = 32, .external_lex_state = 2}, + [148] = {.lex_state = 31, .external_lex_state = 7}, + [149] = {.lex_state = 31, .external_lex_state = 7}, + [150] = {.lex_state = 31, .external_lex_state = 8}, + [151] = {.lex_state = 31, .external_lex_state = 7}, + [152] = {.lex_state = 31, .external_lex_state = 7}, + [153] = {.lex_state = 31, .external_lex_state = 7}, + [154] = {.lex_state = 32, .external_lex_state = 6}, + [155] = {.lex_state = 31, .external_lex_state = 7}, + [156] = {.lex_state = 31, .external_lex_state = 8}, + [157] = {.lex_state = 31, .external_lex_state = 8}, + [158] = {.lex_state = 31, .external_lex_state = 8}, + [159] = {.lex_state = 31, .external_lex_state = 7}, + [160] = {.lex_state = 32, .external_lex_state = 8}, [161] = {.lex_state = 31, .external_lex_state = 7}, - [162] = {.lex_state = 40, .external_lex_state = 7}, - [163] = {.lex_state = 31, .external_lex_state = 2}, - [164] = {.lex_state = 40, .external_lex_state = 7}, - [165] = {.lex_state = 40, .external_lex_state = 8}, - [166] = {.lex_state = 40, .external_lex_state = 7}, - [167] = {.lex_state = 40, .external_lex_state = 8}, + [162] = {.lex_state = 40, .external_lex_state = 2}, + [163] = {.lex_state = 40, .external_lex_state = 2}, + [164] = {.lex_state = 31, .external_lex_state = 8}, + [165] = {.lex_state = 32, .external_lex_state = 6}, + [166] = {.lex_state = 32, .external_lex_state = 7}, + [167] = {.lex_state = 32, .external_lex_state = 7}, [168] = {.lex_state = 31, .external_lex_state = 8}, - [169] = {.lex_state = 40, .external_lex_state = 7}, - [170] = {.lex_state = 31, .external_lex_state = 2}, - [171] = {.lex_state = 40, .external_lex_state = 8}, - [172] = {.lex_state = 31, .external_lex_state = 8}, - [173] = {.lex_state = 31, .external_lex_state = 8}, - [174] = {.lex_state = 31, .external_lex_state = 7}, - [175] = {.lex_state = 39, .external_lex_state = 2}, - [176] = {.lex_state = 31, .external_lex_state = 7}, - [177] = {.lex_state = 39, .external_lex_state = 2}, - [178] = {.lex_state = 31, .external_lex_state = 6}, - [179] = {.lex_state = 31, .external_lex_state = 7}, - [180] = {.lex_state = 31, .external_lex_state = 7}, - [181] = {.lex_state = 31, .external_lex_state = 2}, - [182] = {.lex_state = 31, .external_lex_state = 2}, - [183] = {.lex_state = 31, .external_lex_state = 2}, - [184] = {.lex_state = 31, .external_lex_state = 7}, - [185] = {.lex_state = 31, .external_lex_state = 8}, - [186] = {.lex_state = 31, .external_lex_state = 2}, - [187] = {.lex_state = 57, .external_lex_state = 2}, + [169] = {.lex_state = 32, .external_lex_state = 2}, + [170] = {.lex_state = 32, .external_lex_state = 2}, + [171] = {.lex_state = 31, .external_lex_state = 2}, + [172] = {.lex_state = 31, .external_lex_state = 7}, + [173] = {.lex_state = 31, .external_lex_state = 2}, + [174] = {.lex_state = 31, .external_lex_state = 6}, + [175] = {.lex_state = 57, .external_lex_state = 8}, + [176] = {.lex_state = 57, .external_lex_state = 8}, + [177] = {.lex_state = 31, .external_lex_state = 6}, + [178] = {.lex_state = 57, .external_lex_state = 8}, + [179] = {.lex_state = 57, .external_lex_state = 2}, + [180] = {.lex_state = 57, .external_lex_state = 8}, + [181] = {.lex_state = 57, .external_lex_state = 7}, + [182] = {.lex_state = 57, .external_lex_state = 7}, + [183] = {.lex_state = 57, .external_lex_state = 7}, + [184] = {.lex_state = 57, .external_lex_state = 2}, + [185] = {.lex_state = 57, .external_lex_state = 2}, + [186] = {.lex_state = 31, .external_lex_state = 6}, + [187] = {.lex_state = 57, .external_lex_state = 7}, [188] = {.lex_state = 31, .external_lex_state = 6}, [189] = {.lex_state = 57, .external_lex_state = 8}, - [190] = {.lex_state = 57, .external_lex_state = 7}, - [191] = {.lex_state = 57, .external_lex_state = 7}, - [192] = {.lex_state = 57, .external_lex_state = 8}, + [190] = {.lex_state = 57, .external_lex_state = 8}, + [191] = {.lex_state = 57, .external_lex_state = 8}, + [192] = {.lex_state = 31, .external_lex_state = 6}, [193] = {.lex_state = 57, .external_lex_state = 7}, [194] = {.lex_state = 31, .external_lex_state = 6}, - [195] = {.lex_state = 31, .external_lex_state = 6}, + [195] = {.lex_state = 57, .external_lex_state = 7}, [196] = {.lex_state = 57, .external_lex_state = 8}, - [197] = {.lex_state = 57, .external_lex_state = 7}, + [197] = {.lex_state = 31, .external_lex_state = 6}, [198] = {.lex_state = 31, .external_lex_state = 6}, - [199] = {.lex_state = 57, .external_lex_state = 8}, - [200] = {.lex_state = 57, .external_lex_state = 8}, + [199] = {.lex_state = 57, .external_lex_state = 7}, + [200] = {.lex_state = 57, .external_lex_state = 7}, [201] = {.lex_state = 57, .external_lex_state = 8}, - [202] = {.lex_state = 31, .external_lex_state = 6}, + [202] = {.lex_state = 57, .external_lex_state = 8}, [203] = {.lex_state = 57, .external_lex_state = 7}, - [204] = {.lex_state = 57, .external_lex_state = 8}, - [205] = {.lex_state = 57, .external_lex_state = 7}, - [206] = {.lex_state = 57, .external_lex_state = 8}, - [207] = {.lex_state = 31, .external_lex_state = 6}, - [208] = {.lex_state = 57, .external_lex_state = 7}, - [209] = {.lex_state = 57, .external_lex_state = 2}, - [210] = {.lex_state = 57, .external_lex_state = 8}, - [211] = {.lex_state = 31, .external_lex_state = 6}, - [212] = {.lex_state = 57, .external_lex_state = 7}, - [213] = {.lex_state = 57, .external_lex_state = 2}, - [214] = {.lex_state = 57, .external_lex_state = 7}, - [215] = {.lex_state = 31, .external_lex_state = 6}, - [216] = {.lex_state = 57, .external_lex_state = 7}, - [217] = {.lex_state = 57, .external_lex_state = 8}, - [218] = {.lex_state = 32, .external_lex_state = 4}, - [219] = {.lex_state = 32, .external_lex_state = 4}, - [220] = {.lex_state = 57, .external_lex_state = 2}, - [221] = {.lex_state = 57, .external_lex_state = 2}, - [222] = {.lex_state = 31, .external_lex_state = 7}, + [204] = {.lex_state = 57, .external_lex_state = 7}, + [205] = {.lex_state = 33, .external_lex_state = 4}, + [206] = {.lex_state = 33, .external_lex_state = 4}, + [207] = {.lex_state = 57, .external_lex_state = 2}, + [208] = {.lex_state = 57, .external_lex_state = 2}, + [209] = {.lex_state = 33, .external_lex_state = 2}, + [210] = {.lex_state = 57, .external_lex_state = 7}, + [211] = {.lex_state = 31, .external_lex_state = 7}, + [212] = {.lex_state = 31, .external_lex_state = 7}, + [213] = {.lex_state = 31, .external_lex_state = 7}, + [214] = {.lex_state = 57, .external_lex_state = 6}, + [215] = {.lex_state = 31, .external_lex_state = 7}, + [216] = {.lex_state = 31, .external_lex_state = 7}, + [217] = {.lex_state = 31, .external_lex_state = 7}, + [218] = {.lex_state = 31, .external_lex_state = 7}, + [219] = {.lex_state = 33, .external_lex_state = 2}, + [220] = {.lex_state = 31, .external_lex_state = 7}, + [221] = {.lex_state = 31, .external_lex_state = 7}, + [222] = {.lex_state = 57, .external_lex_state = 8}, [223] = {.lex_state = 31, .external_lex_state = 7}, - [224] = {.lex_state = 32, .external_lex_state = 2}, - [225] = {.lex_state = 31, .external_lex_state = 7}, - [226] = {.lex_state = 31, .external_lex_state = 7}, - [227] = {.lex_state = 31, .external_lex_state = 7}, - [228] = {.lex_state = 31, .external_lex_state = 7}, - [229] = {.lex_state = 31, .external_lex_state = 7}, + [224] = {.lex_state = 31, .external_lex_state = 7}, + [225] = {.lex_state = 57, .external_lex_state = 7}, + [226] = {.lex_state = 57, .external_lex_state = 8}, + [227] = {.lex_state = 57, .external_lex_state = 8}, + [228] = {.lex_state = 57, .external_lex_state = 7}, + [229] = {.lex_state = 57, .external_lex_state = 7}, [230] = {.lex_state = 31, .external_lex_state = 7}, - [231] = {.lex_state = 57, .external_lex_state = 7}, - [232] = {.lex_state = 32, .external_lex_state = 2}, - [233] = {.lex_state = 57, .external_lex_state = 6}, + [231] = {.lex_state = 31, .external_lex_state = 7}, + [232] = {.lex_state = 31, .external_lex_state = 7}, + [233] = {.lex_state = 31, .external_lex_state = 7}, [234] = {.lex_state = 31, .external_lex_state = 7}, - [235] = {.lex_state = 57, .external_lex_state = 8}, + [235] = {.lex_state = 57, .external_lex_state = 7}, [236] = {.lex_state = 31, .external_lex_state = 7}, - [237] = {.lex_state = 31, .external_lex_state = 7}, + [237] = {.lex_state = 57, .external_lex_state = 7}, [238] = {.lex_state = 31, .external_lex_state = 7}, - [239] = {.lex_state = 57, .external_lex_state = 8}, - [240] = {.lex_state = 57, .external_lex_state = 7}, - [241] = {.lex_state = 57, .external_lex_state = 8}, + [239] = {.lex_state = 57, .external_lex_state = 7}, + [240] = {.lex_state = 57, .external_lex_state = 8}, + [241] = {.lex_state = 31, .external_lex_state = 7}, [242] = {.lex_state = 31, .external_lex_state = 7}, - [243] = {.lex_state = 57, .external_lex_state = 7}, + [243] = {.lex_state = 31, .external_lex_state = 7}, [244] = {.lex_state = 31, .external_lex_state = 7}, [245] = {.lex_state = 31, .external_lex_state = 7}, - [246] = {.lex_state = 57, .external_lex_state = 7}, + [246] = {.lex_state = 31, .external_lex_state = 7}, [247] = {.lex_state = 31, .external_lex_state = 7}, [248] = {.lex_state = 31, .external_lex_state = 7}, - [249] = {.lex_state = 31, .external_lex_state = 7}, + [249] = {.lex_state = 57, .external_lex_state = 7}, [250] = {.lex_state = 31, .external_lex_state = 7}, [251] = {.lex_state = 31, .external_lex_state = 7}, - [252] = {.lex_state = 31, .external_lex_state = 7}, + [252] = {.lex_state = 57, .external_lex_state = 8}, [253] = {.lex_state = 57, .external_lex_state = 7}, - [254] = {.lex_state = 57, .external_lex_state = 8}, + [254] = {.lex_state = 31, .external_lex_state = 7}, [255] = {.lex_state = 31, .external_lex_state = 7}, [256] = {.lex_state = 31, .external_lex_state = 7}, [257] = {.lex_state = 57, .external_lex_state = 7}, - [258] = {.lex_state = 57, .external_lex_state = 7}, - [259] = {.lex_state = 57, .external_lex_state = 8}, + [258] = {.lex_state = 31, .external_lex_state = 7}, + [259] = {.lex_state = 31, .external_lex_state = 7}, [260] = {.lex_state = 31, .external_lex_state = 7}, [261] = {.lex_state = 57, .external_lex_state = 7}, - [262] = {.lex_state = 57, .external_lex_state = 7}, - [263] = {.lex_state = 57, .external_lex_state = 8}, - [264] = {.lex_state = 57, .external_lex_state = 7}, + [262] = {.lex_state = 31, .external_lex_state = 7}, + [263] = {.lex_state = 31, .external_lex_state = 7}, + [264] = {.lex_state = 31, .external_lex_state = 7}, [265] = {.lex_state = 31, .external_lex_state = 7}, - [266] = {.lex_state = 31, .external_lex_state = 7}, + [266] = {.lex_state = 57, .external_lex_state = 7}, [267] = {.lex_state = 31, .external_lex_state = 7}, [268] = {.lex_state = 31, .external_lex_state = 7}, - [269] = {.lex_state = 31, .external_lex_state = 7}, + [269] = {.lex_state = 57, .external_lex_state = 7}, [270] = {.lex_state = 31, .external_lex_state = 7}, - [271] = {.lex_state = 31, .external_lex_state = 7}, - [272] = {.lex_state = 31, .external_lex_state = 7}, - [273] = {.lex_state = 31, .external_lex_state = 7}, - [274] = {.lex_state = 31, .external_lex_state = 7}, - [275] = {.lex_state = 57, .external_lex_state = 7}, - [276] = {.lex_state = 57, .external_lex_state = 8}, - [277] = {.lex_state = 57, .external_lex_state = 7}, - [278] = {.lex_state = 57, .external_lex_state = 8}, - [279] = {.lex_state = 31, .external_lex_state = 7}, - [280] = {.lex_state = 31, .external_lex_state = 7}, + [271] = {.lex_state = 57, .external_lex_state = 7}, + [272] = {.lex_state = 57, .external_lex_state = 8}, + [273] = {.lex_state = 57, .external_lex_state = 7}, + [274] = {.lex_state = 57, .external_lex_state = 8}, + [275] = {.lex_state = 57, .external_lex_state = 8}, + [276] = {.lex_state = 57, .external_lex_state = 6}, + [277] = {.lex_state = 31, .external_lex_state = 2}, + [278] = {.lex_state = 57, .external_lex_state = 6}, + [279] = {.lex_state = 57, .external_lex_state = 7}, + [280] = {.lex_state = 57, .external_lex_state = 6}, [281] = {.lex_state = 57, .external_lex_state = 7}, - [282] = {.lex_state = 57, .external_lex_state = 7}, - [283] = {.lex_state = 31, .external_lex_state = 7}, - [284] = {.lex_state = 31, .external_lex_state = 7}, - [285] = {.lex_state = 31, .external_lex_state = 7}, - [286] = {.lex_state = 31, .external_lex_state = 7}, + [282] = {.lex_state = 57, .external_lex_state = 6}, + [283] = {.lex_state = 57, .external_lex_state = 6}, + [284] = {.lex_state = 57, .external_lex_state = 8}, + [285] = {.lex_state = 57, .external_lex_state = 8}, + [286] = {.lex_state = 57, .external_lex_state = 7}, [287] = {.lex_state = 57, .external_lex_state = 7}, - [288] = {.lex_state = 31, .external_lex_state = 7}, + [288] = {.lex_state = 57, .external_lex_state = 8}, [289] = {.lex_state = 57, .external_lex_state = 8}, - [290] = {.lex_state = 57, .external_lex_state = 7}, - [291] = {.lex_state = 57, .external_lex_state = 7}, - [292] = {.lex_state = 57, .external_lex_state = 8}, - [293] = {.lex_state = 57, .external_lex_state = 8}, - [294] = {.lex_state = 57, .external_lex_state = 6}, + [290] = {.lex_state = 57, .external_lex_state = 6}, + [291] = {.lex_state = 57, .external_lex_state = 8}, + [292] = {.lex_state = 57, .external_lex_state = 7}, + [293] = {.lex_state = 57, .external_lex_state = 7}, + [294] = {.lex_state = 57, .external_lex_state = 8}, [295] = {.lex_state = 57, .external_lex_state = 6}, - [296] = {.lex_state = 57, .external_lex_state = 7}, - [297] = {.lex_state = 57, .external_lex_state = 8}, - [298] = {.lex_state = 57, .external_lex_state = 6}, - [299] = {.lex_state = 57, .external_lex_state = 6}, - [300] = {.lex_state = 57, .external_lex_state = 7}, - [301] = {.lex_state = 57, .external_lex_state = 6}, - [302] = {.lex_state = 57, .external_lex_state = 6}, - [303] = {.lex_state = 57, .external_lex_state = 6}, - [304] = {.lex_state = 57, .external_lex_state = 8}, - [305] = {.lex_state = 57, .external_lex_state = 7}, - [306] = {.lex_state = 31, .external_lex_state = 2}, - [307] = {.lex_state = 57, .external_lex_state = 7}, - [308] = {.lex_state = 57, .external_lex_state = 6}, - [309] = {.lex_state = 57, .external_lex_state = 8}, + [296] = {.lex_state = 57, .external_lex_state = 6}, + [297] = {.lex_state = 31, .external_lex_state = 6}, + [298] = {.lex_state = 57, .external_lex_state = 8}, + [299] = {.lex_state = 31, .external_lex_state = 6}, + [300] = {.lex_state = 31, .external_lex_state = 6}, + [301] = {.lex_state = 57, .external_lex_state = 2}, + [302] = {.lex_state = 31, .external_lex_state = 6}, + [303] = {.lex_state = 31, .external_lex_state = 6}, + [304] = {.lex_state = 57, .external_lex_state = 2}, + [305] = {.lex_state = 57, .external_lex_state = 2}, + [306] = {.lex_state = 31, .external_lex_state = 6}, + [307] = {.lex_state = 31, .external_lex_state = 6}, + [308] = {.lex_state = 31, .external_lex_state = 6}, + [309] = {.lex_state = 57, .external_lex_state = 4}, [310] = {.lex_state = 31, .external_lex_state = 6}, - [311] = {.lex_state = 31, .external_lex_state = 6}, - [312] = {.lex_state = 57, .external_lex_state = 2}, + [311] = {.lex_state = 57, .external_lex_state = 7}, + [312] = {.lex_state = 31, .external_lex_state = 6}, [313] = {.lex_state = 31, .external_lex_state = 6}, [314] = {.lex_state = 31, .external_lex_state = 6}, - [315] = {.lex_state = 57, .external_lex_state = 4}, - [316] = {.lex_state = 31, .external_lex_state = 6}, + [315] = {.lex_state = 31, .external_lex_state = 6}, + [316] = {.lex_state = 57, .external_lex_state = 4}, [317] = {.lex_state = 31, .external_lex_state = 6}, - [318] = {.lex_state = 57, .external_lex_state = 7}, - [319] = {.lex_state = 57, .external_lex_state = 8}, + [318] = {.lex_state = 31, .external_lex_state = 6}, + [319] = {.lex_state = 31, .external_lex_state = 6}, [320] = {.lex_state = 57, .external_lex_state = 4}, - [321] = {.lex_state = 57, .external_lex_state = 2}, - [322] = {.lex_state = 31, .external_lex_state = 6}, - [323] = {.lex_state = 31, .external_lex_state = 6}, - [324] = {.lex_state = 57, .external_lex_state = 2}, - [325] = {.lex_state = 31, .external_lex_state = 6}, - [326] = {.lex_state = 31, .external_lex_state = 6}, - [327] = {.lex_state = 31, .external_lex_state = 6}, - [328] = {.lex_state = 31, .external_lex_state = 6}, - [329] = {.lex_state = 31, .external_lex_state = 6}, - [330] = {.lex_state = 31, .external_lex_state = 6}, - [331] = {.lex_state = 31, .external_lex_state = 6}, - [332] = {.lex_state = 31, .external_lex_state = 6}, - [333] = {.lex_state = 57, .external_lex_state = 8}, + [321] = {.lex_state = 57, .external_lex_state = 4}, + [322] = {.lex_state = 57, .external_lex_state = 8}, + [323] = {.lex_state = 57, .external_lex_state = 8}, + [324] = {.lex_state = 57, .external_lex_state = 8}, + [325] = {.lex_state = 57, .external_lex_state = 8}, + [326] = {.lex_state = 57, .external_lex_state = 8}, + [327] = {.lex_state = 57, .external_lex_state = 8}, + [328] = {.lex_state = 57, .external_lex_state = 8}, + [329] = {.lex_state = 57, .external_lex_state = 8}, + [330] = {.lex_state = 57, .external_lex_state = 4}, + [331] = {.lex_state = 57, .external_lex_state = 8}, + [332] = {.lex_state = 57, .external_lex_state = 2}, + [333] = {.lex_state = 31, .external_lex_state = 2}, [334] = {.lex_state = 57, .external_lex_state = 8}, - [335] = {.lex_state = 57, .external_lex_state = 8}, - [336] = {.lex_state = 57, .external_lex_state = 2}, + [335] = {.lex_state = 57, .external_lex_state = 2}, + [336] = {.lex_state = 57, .external_lex_state = 8}, [337] = {.lex_state = 57, .external_lex_state = 8}, [338] = {.lex_state = 57, .external_lex_state = 8}, [339] = {.lex_state = 57, .external_lex_state = 8}, - [340] = {.lex_state = 57, .external_lex_state = 2}, + [340] = {.lex_state = 57, .external_lex_state = 8}, [341] = {.lex_state = 57, .external_lex_state = 8}, [342] = {.lex_state = 57, .external_lex_state = 8}, [343] = {.lex_state = 57, .external_lex_state = 8}, - [344] = {.lex_state = 57, .external_lex_state = 2}, + [344] = {.lex_state = 57, .external_lex_state = 8}, [345] = {.lex_state = 57, .external_lex_state = 8}, [346] = {.lex_state = 57, .external_lex_state = 8}, [347] = {.lex_state = 57, .external_lex_state = 8}, - [348] = {.lex_state = 57, .external_lex_state = 2}, + [348] = {.lex_state = 57, .external_lex_state = 8}, [349] = {.lex_state = 57, .external_lex_state = 8}, [350] = {.lex_state = 57, .external_lex_state = 8}, [351] = {.lex_state = 57, .external_lex_state = 8}, [352] = {.lex_state = 57, .external_lex_state = 8}, - [353] = {.lex_state = 57, .external_lex_state = 4}, + [353] = {.lex_state = 57, .external_lex_state = 8}, [354] = {.lex_state = 57, .external_lex_state = 8}, [355] = {.lex_state = 57, .external_lex_state = 8}, - [356] = {.lex_state = 31, .external_lex_state = 2}, + [356] = {.lex_state = 57, .external_lex_state = 8}, [357] = {.lex_state = 57, .external_lex_state = 8}, - [358] = {.lex_state = 57, .external_lex_state = 8}, - [359] = {.lex_state = 57, .external_lex_state = 8}, - [360] = {.lex_state = 57, .external_lex_state = 8}, - [361] = {.lex_state = 57, .external_lex_state = 8}, - [362] = {.lex_state = 57, .external_lex_state = 8}, - [363] = {.lex_state = 57, .external_lex_state = 8}, - [364] = {.lex_state = 57, .external_lex_state = 8}, - [365] = {.lex_state = 57, .external_lex_state = 8}, - [366] = {.lex_state = 57, .external_lex_state = 4}, - [367] = {.lex_state = 57, .external_lex_state = 8}, - [368] = {.lex_state = 57, .external_lex_state = 4}, - [369] = {.lex_state = 57, .external_lex_state = 8}, - [370] = {.lex_state = 57, .external_lex_state = 8}, - [371] = {.lex_state = 57, .external_lex_state = 8}, - [372] = {.lex_state = 57, .external_lex_state = 8}, - [373] = {.lex_state = 57, .external_lex_state = 4}, + [358] = {.lex_state = 57, .external_lex_state = 2}, + [359] = {.lex_state = 57, .external_lex_state = 2}, + [360] = {.lex_state = 57, .external_lex_state = 4}, + [361] = {.lex_state = 57, .external_lex_state = 4}, + [362] = {.lex_state = 57, .external_lex_state = 2}, + [363] = {.lex_state = 57, .external_lex_state = 2}, + [364] = {.lex_state = 57, .external_lex_state = 2}, + [365] = {.lex_state = 57, .external_lex_state = 2}, + [366] = {.lex_state = 57, .external_lex_state = 8}, + [367] = {.lex_state = 57, .external_lex_state = 2}, + [368] = {.lex_state = 57, .external_lex_state = 2}, + [369] = {.lex_state = 34, .external_lex_state = 9}, + [370] = {.lex_state = 57, .external_lex_state = 2}, + [371] = {.lex_state = 57, .external_lex_state = 2}, + [372] = {.lex_state = 34, .external_lex_state = 9}, + [373] = {.lex_state = 57, .external_lex_state = 2}, [374] = {.lex_state = 57, .external_lex_state = 2}, [375] = {.lex_state = 57, .external_lex_state = 2}, [376] = {.lex_state = 57, .external_lex_state = 2}, [377] = {.lex_state = 57, .external_lex_state = 2}, - [378] = {.lex_state = 57, .external_lex_state = 7}, - [379] = {.lex_state = 57, .external_lex_state = 2}, - [380] = {.lex_state = 57, .external_lex_state = 4}, + [378] = {.lex_state = 57, .external_lex_state = 4}, + [379] = {.lex_state = 57, .external_lex_state = 4}, + [380] = {.lex_state = 57, .external_lex_state = 2}, [381] = {.lex_state = 57, .external_lex_state = 2}, [382] = {.lex_state = 57, .external_lex_state = 2}, [383] = {.lex_state = 57, .external_lex_state = 4}, - [384] = {.lex_state = 57, .external_lex_state = 2}, - [385] = {.lex_state = 33, .external_lex_state = 9}, - [386] = {.lex_state = 57, .external_lex_state = 7}, + [384] = {.lex_state = 57, .external_lex_state = 7}, + [385] = {.lex_state = 57, .external_lex_state = 2}, + [386] = {.lex_state = 57, .external_lex_state = 2}, [387] = {.lex_state = 57, .external_lex_state = 7}, - [388] = {.lex_state = 57, .external_lex_state = 4}, - [389] = {.lex_state = 57, .external_lex_state = 4}, - [390] = {.lex_state = 57, .external_lex_state = 2}, - [391] = {.lex_state = 57, .external_lex_state = 7}, + [388] = {.lex_state = 57, .external_lex_state = 2}, + [389] = {.lex_state = 57, .external_lex_state = 7}, + [390] = {.lex_state = 34, .external_lex_state = 4}, + [391] = {.lex_state = 57, .external_lex_state = 8}, [392] = {.lex_state = 57, .external_lex_state = 2}, [393] = {.lex_state = 57, .external_lex_state = 2}, - [394] = {.lex_state = 57, .external_lex_state = 8}, - [395] = {.lex_state = 57, .external_lex_state = 2}, + [394] = {.lex_state = 57, .external_lex_state = 2}, + [395] = {.lex_state = 57, .external_lex_state = 4}, [396] = {.lex_state = 57, .external_lex_state = 2}, - [397] = {.lex_state = 57, .external_lex_state = 2}, + [397] = {.lex_state = 57, .external_lex_state = 8}, [398] = {.lex_state = 57, .external_lex_state = 2}, [399] = {.lex_state = 57, .external_lex_state = 2}, - [400] = {.lex_state = 57, .external_lex_state = 4}, - [401] = {.lex_state = 57, .external_lex_state = 2}, - [402] = {.lex_state = 57, .external_lex_state = 8}, - [403] = {.lex_state = 33, .external_lex_state = 4}, + [400] = {.lex_state = 57, .external_lex_state = 8}, + [401] = {.lex_state = 57, .external_lex_state = 8}, + [402] = {.lex_state = 57, .external_lex_state = 2}, + [403] = {.lex_state = 57, .external_lex_state = 2}, [404] = {.lex_state = 57, .external_lex_state = 2}, - [405] = {.lex_state = 57, .external_lex_state = 2}, + [405] = {.lex_state = 57, .external_lex_state = 7}, [406] = {.lex_state = 57, .external_lex_state = 2}, - [407] = {.lex_state = 57, .external_lex_state = 8}, + [407] = {.lex_state = 57, .external_lex_state = 2}, [408] = {.lex_state = 57, .external_lex_state = 2}, [409] = {.lex_state = 57, .external_lex_state = 2}, [410] = {.lex_state = 57, .external_lex_state = 2}, - [411] = {.lex_state = 57, .external_lex_state = 8}, + [411] = {.lex_state = 57, .external_lex_state = 2}, [412] = {.lex_state = 57, .external_lex_state = 2}, [413] = {.lex_state = 57, .external_lex_state = 2}, - [414] = {.lex_state = 57, .external_lex_state = 8}, + [414] = {.lex_state = 57, .external_lex_state = 2}, [415] = {.lex_state = 57, .external_lex_state = 2}, [416] = {.lex_state = 57, .external_lex_state = 2}, [417] = {.lex_state = 57, .external_lex_state = 2}, [418] = {.lex_state = 57, .external_lex_state = 2}, [419] = {.lex_state = 57, .external_lex_state = 2}, [420] = {.lex_state = 57, .external_lex_state = 2}, - [421] = {.lex_state = 33, .external_lex_state = 9}, + [421] = {.lex_state = 57, .external_lex_state = 2}, [422] = {.lex_state = 57, .external_lex_state = 2}, [423] = {.lex_state = 57, .external_lex_state = 2}, [424] = {.lex_state = 57, .external_lex_state = 2}, @@ -9993,20 +9975,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [479] = {.lex_state = 57, .external_lex_state = 2}, [480] = {.lex_state = 57, .external_lex_state = 2}, [481] = {.lex_state = 57, .external_lex_state = 2}, - [482] = {.lex_state = 57, .external_lex_state = 2}, - [483] = {.lex_state = 57, .external_lex_state = 2}, + [482] = {.lex_state = 58, .external_lex_state = 3}, + [483] = {.lex_state = 59, .external_lex_state = 3}, [484] = {.lex_state = 57, .external_lex_state = 2}, - [485] = {.lex_state = 58, .external_lex_state = 3}, + [485] = {.lex_state = 57, .external_lex_state = 2}, [486] = {.lex_state = 57, .external_lex_state = 2}, [487] = {.lex_state = 57, .external_lex_state = 2}, [488] = {.lex_state = 57, .external_lex_state = 2}, [489] = {.lex_state = 57, .external_lex_state = 2}, [490] = {.lex_state = 57, .external_lex_state = 2}, - [491] = {.lex_state = 59, .external_lex_state = 3}, + [491] = {.lex_state = 57, .external_lex_state = 2}, [492] = {.lex_state = 57, .external_lex_state = 2}, - [493] = {.lex_state = 57, .external_lex_state = 2}, + [493] = {.lex_state = 59, .external_lex_state = 2}, [494] = {.lex_state = 58, .external_lex_state = 2}, - [495] = {.lex_state = 59, .external_lex_state = 2}, + [495] = {.lex_state = 57, .external_lex_state = 2}, [496] = {.lex_state = 57, .external_lex_state = 2}, [497] = {.lex_state = 57, .external_lex_state = 2}, [498] = {.lex_state = 57, .external_lex_state = 2}, @@ -10036,18 +10018,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [522] = {.lex_state = 57, .external_lex_state = 2}, [523] = {.lex_state = 57, .external_lex_state = 2}, [524] = {.lex_state = 57, .external_lex_state = 2}, - [525] = {.lex_state = 58, .external_lex_state = 3}, + [525] = {.lex_state = 57, .external_lex_state = 2}, [526] = {.lex_state = 57, .external_lex_state = 2}, [527] = {.lex_state = 57, .external_lex_state = 2}, [528] = {.lex_state = 57, .external_lex_state = 2}, - [529] = {.lex_state = 59, .external_lex_state = 3}, + [529] = {.lex_state = 57, .external_lex_state = 2}, [530] = {.lex_state = 57, .external_lex_state = 2}, [531] = {.lex_state = 57, .external_lex_state = 2}, [532] = {.lex_state = 57, .external_lex_state = 2}, [533] = {.lex_state = 57, .external_lex_state = 2}, [534] = {.lex_state = 57, .external_lex_state = 2}, - [535] = {.lex_state = 57, .external_lex_state = 2}, - [536] = {.lex_state = 57, .external_lex_state = 2}, + [535] = {.lex_state = 58, .external_lex_state = 3}, + [536] = {.lex_state = 59, .external_lex_state = 3}, [537] = {.lex_state = 57, .external_lex_state = 2}, [538] = {.lex_state = 57, .external_lex_state = 2}, [539] = {.lex_state = 57, .external_lex_state = 2}, @@ -10079,10 +10061,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [565] = {.lex_state = 57, .external_lex_state = 2}, [566] = {.lex_state = 57, .external_lex_state = 2}, [567] = {.lex_state = 57, .external_lex_state = 2}, - [568] = {.lex_state = 57, .external_lex_state = 2}, + [568] = {.lex_state = 58, .external_lex_state = 2}, [569] = {.lex_state = 57, .external_lex_state = 2}, [570] = {.lex_state = 57, .external_lex_state = 2}, - [571] = {.lex_state = 57, .external_lex_state = 2}, + [571] = {.lex_state = 59, .external_lex_state = 2}, [572] = {.lex_state = 57, .external_lex_state = 2}, [573] = {.lex_state = 57, .external_lex_state = 2}, [574] = {.lex_state = 57, .external_lex_state = 2}, @@ -10141,288 +10123,288 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [627] = {.lex_state = 57, .external_lex_state = 2}, [628] = {.lex_state = 57, .external_lex_state = 2}, [629] = {.lex_state = 57, .external_lex_state = 2}, - [630] = {.lex_state = 59, .external_lex_state = 2}, + [630] = {.lex_state = 57, .external_lex_state = 2}, [631] = {.lex_state = 57, .external_lex_state = 2}, [632] = {.lex_state = 57, .external_lex_state = 2}, [633] = {.lex_state = 57, .external_lex_state = 2}, - [634] = {.lex_state = 57, .external_lex_state = 2}, - [635] = {.lex_state = 57, .external_lex_state = 2}, - [636] = {.lex_state = 57, .external_lex_state = 2}, - [637] = {.lex_state = 57, .external_lex_state = 2}, - [638] = {.lex_state = 57, .external_lex_state = 2}, + [634] = {.lex_state = 34, .external_lex_state = 9}, + [635] = {.lex_state = 34, .external_lex_state = 9}, + [636] = {.lex_state = 35, .external_lex_state = 9}, + [637] = {.lex_state = 35, .external_lex_state = 9}, + [638] = {.lex_state = 35, .external_lex_state = 9}, [639] = {.lex_state = 57, .external_lex_state = 2}, - [640] = {.lex_state = 57, .external_lex_state = 2}, - [641] = {.lex_state = 58, .external_lex_state = 2}, - [642] = {.lex_state = 57, .external_lex_state = 2}, + [640] = {.lex_state = 35, .external_lex_state = 9}, + [641] = {.lex_state = 57, .external_lex_state = 2}, + [642] = {.lex_state = 57, .external_lex_state = 3}, [643] = {.lex_state = 57, .external_lex_state = 2}, - [644] = {.lex_state = 57, .external_lex_state = 2}, - [645] = {.lex_state = 57, .external_lex_state = 2}, - [646] = {.lex_state = 57, .external_lex_state = 2}, - [647] = {.lex_state = 57, .external_lex_state = 2}, - [648] = {.lex_state = 57, .external_lex_state = 2}, - [649] = {.lex_state = 57, .external_lex_state = 2}, - [650] = {.lex_state = 33, .external_lex_state = 9}, - [651] = {.lex_state = 33, .external_lex_state = 9}, - [652] = {.lex_state = 57, .external_lex_state = 2}, - [653] = {.lex_state = 34, .external_lex_state = 9}, - [654] = {.lex_state = 57, .external_lex_state = 2}, - [655] = {.lex_state = 57, .external_lex_state = 3}, - [656] = {.lex_state = 57, .external_lex_state = 2}, - [657] = {.lex_state = 34, .external_lex_state = 9}, - [658] = {.lex_state = 34, .external_lex_state = 9}, - [659] = {.lex_state = 34, .external_lex_state = 9}, - [660] = {.lex_state = 34, .external_lex_state = 9}, - [661] = {.lex_state = 34, .external_lex_state = 9}, - [662] = {.lex_state = 57, .external_lex_state = 2}, - [663] = {.lex_state = 34, .external_lex_state = 9}, + [644] = {.lex_state = 58, .external_lex_state = 3}, + [645] = {.lex_state = 59, .external_lex_state = 2}, + [646] = {.lex_state = 58, .external_lex_state = 2}, + [647] = {.lex_state = 59, .external_lex_state = 3}, + [648] = {.lex_state = 35, .external_lex_state = 9}, + [649] = {.lex_state = 57, .external_lex_state = 3}, + [650] = {.lex_state = 57, .external_lex_state = 3}, + [651] = {.lex_state = 35, .external_lex_state = 9}, + [652] = {.lex_state = 35, .external_lex_state = 9}, + [653] = {.lex_state = 35, .external_lex_state = 9}, + [654] = {.lex_state = 35, .external_lex_state = 9}, + [655] = {.lex_state = 57, .external_lex_state = 2}, + [656] = {.lex_state = 57, .external_lex_state = 3}, + [657] = {.lex_state = 35, .external_lex_state = 9}, + [658] = {.lex_state = 35, .external_lex_state = 9}, + [659] = {.lex_state = 35, .external_lex_state = 9}, + [660] = {.lex_state = 35, .external_lex_state = 9}, + [661] = {.lex_state = 57, .external_lex_state = 2}, + [662] = {.lex_state = 57, .external_lex_state = 3}, + [663] = {.lex_state = 59, .external_lex_state = 2}, [664] = {.lex_state = 57, .external_lex_state = 3}, - [665] = {.lex_state = 58, .external_lex_state = 2}, - [666] = {.lex_state = 34, .external_lex_state = 9}, - [667] = {.lex_state = 59, .external_lex_state = 2}, - [668] = {.lex_state = 34, .external_lex_state = 9}, - [669] = {.lex_state = 57, .external_lex_state = 3}, - [670] = {.lex_state = 57, .external_lex_state = 3}, - [671] = {.lex_state = 34, .external_lex_state = 9}, - [672] = {.lex_state = 34, .external_lex_state = 9}, - [673] = {.lex_state = 34, .external_lex_state = 9}, - [674] = {.lex_state = 58, .external_lex_state = 3}, - [675] = {.lex_state = 34, .external_lex_state = 9}, - [676] = {.lex_state = 59, .external_lex_state = 3}, - [677] = {.lex_state = 57, .external_lex_state = 3}, - [678] = {.lex_state = 57, .external_lex_state = 3}, + [665] = {.lex_state = 59, .external_lex_state = 3}, + [666] = {.lex_state = 57, .external_lex_state = 2}, + [667] = {.lex_state = 58, .external_lex_state = 2}, + [668] = {.lex_state = 59, .external_lex_state = 2}, + [669] = {.lex_state = 58, .external_lex_state = 2}, + [670] = {.lex_state = 59, .external_lex_state = 3}, + [671] = {.lex_state = 59, .external_lex_state = 2}, + [672] = {.lex_state = 57, .external_lex_state = 2}, + [673] = {.lex_state = 58, .external_lex_state = 3}, + [674] = {.lex_state = 59, .external_lex_state = 3}, + [675] = {.lex_state = 58, .external_lex_state = 3}, + [676] = {.lex_state = 59, .external_lex_state = 2}, + [677] = {.lex_state = 58, .external_lex_state = 3}, + [678] = {.lex_state = 58, .external_lex_state = 2}, [679] = {.lex_state = 57, .external_lex_state = 2}, - [680] = {.lex_state = 57, .external_lex_state = 2}, - [681] = {.lex_state = 57, .external_lex_state = 2}, - [682] = {.lex_state = 57, .external_lex_state = 3}, - [683] = {.lex_state = 57, .external_lex_state = 3}, - [684] = {.lex_state = 57, .external_lex_state = 2}, - [685] = {.lex_state = 57, .external_lex_state = 2}, - [686] = {.lex_state = 57, .external_lex_state = 3}, - [687] = {.lex_state = 57, .external_lex_state = 2}, - [688] = {.lex_state = 57, .external_lex_state = 3}, - [689] = {.lex_state = 58, .external_lex_state = 3}, - [690] = {.lex_state = 59, .external_lex_state = 2}, + [680] = {.lex_state = 57, .external_lex_state = 3}, + [681] = {.lex_state = 58, .external_lex_state = 3}, + [682] = {.lex_state = 58, .external_lex_state = 3}, + [683] = {.lex_state = 57, .external_lex_state = 6}, + [684] = {.lex_state = 58, .external_lex_state = 3}, + [685] = {.lex_state = 59, .external_lex_state = 3}, + [686] = {.lex_state = 58, .external_lex_state = 2}, + [687] = {.lex_state = 58, .external_lex_state = 3}, + [688] = {.lex_state = 59, .external_lex_state = 3}, + [689] = {.lex_state = 59, .external_lex_state = 3}, + [690] = {.lex_state = 57, .external_lex_state = 3}, [691] = {.lex_state = 58, .external_lex_state = 2}, - [692] = {.lex_state = 59, .external_lex_state = 2}, - [693] = {.lex_state = 58, .external_lex_state = 3}, - [694] = {.lex_state = 58, .external_lex_state = 3}, - [695] = {.lex_state = 59, .external_lex_state = 3}, - [696] = {.lex_state = 58, .external_lex_state = 3}, - [697] = {.lex_state = 58, .external_lex_state = 3}, - [698] = {.lex_state = 57, .external_lex_state = 2}, - [699] = {.lex_state = 59, .external_lex_state = 3}, - [700] = {.lex_state = 58, .external_lex_state = 3}, - [701] = {.lex_state = 58, .external_lex_state = 2}, - [702] = {.lex_state = 58, .external_lex_state = 3}, - [703] = {.lex_state = 59, .external_lex_state = 3}, - [704] = {.lex_state = 58, .external_lex_state = 3}, - [705] = {.lex_state = 58, .external_lex_state = 3}, - [706] = {.lex_state = 58, .external_lex_state = 3}, - [707] = {.lex_state = 58, .external_lex_state = 3}, - [708] = {.lex_state = 57, .external_lex_state = 3}, - [709] = {.lex_state = 57, .external_lex_state = 6}, - [710] = {.lex_state = 57, .external_lex_state = 2}, - [711] = {.lex_state = 59, .external_lex_state = 2}, - [712] = {.lex_state = 58, .external_lex_state = 2}, - [713] = {.lex_state = 59, .external_lex_state = 2}, + [692] = {.lex_state = 59, .external_lex_state = 3}, + [693] = {.lex_state = 57, .external_lex_state = 2}, + [694] = {.lex_state = 59, .external_lex_state = 3}, + [695] = {.lex_state = 58, .external_lex_state = 3}, + [696] = {.lex_state = 59, .external_lex_state = 2}, + [697] = {.lex_state = 57, .external_lex_state = 3}, + [698] = {.lex_state = 58, .external_lex_state = 2}, + [699] = {.lex_state = 58, .external_lex_state = 3}, + [700] = {.lex_state = 58, .external_lex_state = 2}, + [701] = {.lex_state = 59, .external_lex_state = 3}, + [702] = {.lex_state = 59, .external_lex_state = 2}, + [703] = {.lex_state = 58, .external_lex_state = 2}, + [704] = {.lex_state = 59, .external_lex_state = 2}, + [705] = {.lex_state = 59, .external_lex_state = 3}, + [706] = {.lex_state = 59, .external_lex_state = 2}, + [707] = {.lex_state = 57, .external_lex_state = 3}, + [708] = {.lex_state = 57, .external_lex_state = 6}, + [709] = {.lex_state = 59, .external_lex_state = 2}, + [710] = {.lex_state = 59, .external_lex_state = 2}, + [711] = {.lex_state = 58, .external_lex_state = 2}, + [712] = {.lex_state = 59, .external_lex_state = 2}, + [713] = {.lex_state = 57, .external_lex_state = 2}, [714] = {.lex_state = 59, .external_lex_state = 3}, - [715] = {.lex_state = 58, .external_lex_state = 2}, - [716] = {.lex_state = 59, .external_lex_state = 2}, - [717] = {.lex_state = 57, .external_lex_state = 3}, - [718] = {.lex_state = 59, .external_lex_state = 3}, - [719] = {.lex_state = 57, .external_lex_state = 3}, - [720] = {.lex_state = 59, .external_lex_state = 3}, - [721] = {.lex_state = 57, .external_lex_state = 3}, + [715] = {.lex_state = 57, .external_lex_state = 3}, + [716] = {.lex_state = 57, .external_lex_state = 2}, + [717] = {.lex_state = 57, .external_lex_state = 2}, + [718] = {.lex_state = 57, .external_lex_state = 3}, + [719] = {.lex_state = 57, .external_lex_state = 2}, + [720] = {.lex_state = 57, .external_lex_state = 3}, + [721] = {.lex_state = 57, .external_lex_state = 2}, [722] = {.lex_state = 57, .external_lex_state = 3}, - [723] = {.lex_state = 57, .external_lex_state = 6}, - [724] = {.lex_state = 59, .external_lex_state = 2}, - [725] = {.lex_state = 59, .external_lex_state = 3}, - [726] = {.lex_state = 57, .external_lex_state = 2}, - [727] = {.lex_state = 58, .external_lex_state = 2}, - [728] = {.lex_state = 59, .external_lex_state = 3}, - [729] = {.lex_state = 59, .external_lex_state = 2}, - [730] = {.lex_state = 58, .external_lex_state = 2}, - [731] = {.lex_state = 57, .external_lex_state = 3}, + [723] = {.lex_state = 57, .external_lex_state = 3}, + [724] = {.lex_state = 57, .external_lex_state = 2}, + [725] = {.lex_state = 57, .external_lex_state = 3}, + [726] = {.lex_state = 57, .external_lex_state = 3}, + [727] = {.lex_state = 57, .external_lex_state = 2}, + [728] = {.lex_state = 57, .external_lex_state = 2}, + [729] = {.lex_state = 57, .external_lex_state = 3}, + [730] = {.lex_state = 57, .external_lex_state = 3}, + [731] = {.lex_state = 57, .external_lex_state = 2}, [732] = {.lex_state = 57, .external_lex_state = 3}, - [733] = {.lex_state = 57, .external_lex_state = 3}, - [734] = {.lex_state = 58, .external_lex_state = 2}, - [735] = {.lex_state = 58, .external_lex_state = 2}, + [733] = {.lex_state = 57, .external_lex_state = 2}, + [734] = {.lex_state = 57, .external_lex_state = 2}, + [735] = {.lex_state = 57, .external_lex_state = 3}, [736] = {.lex_state = 57, .external_lex_state = 2}, - [737] = {.lex_state = 57, .external_lex_state = 2}, - [738] = {.lex_state = 57, .external_lex_state = 2}, - [739] = {.lex_state = 57, .external_lex_state = 2}, - [740] = {.lex_state = 57, .external_lex_state = 3}, - [741] = {.lex_state = 59, .external_lex_state = 3}, - [742] = {.lex_state = 59, .external_lex_state = 2}, - [743] = {.lex_state = 59, .external_lex_state = 2}, - [744] = {.lex_state = 58, .external_lex_state = 2}, - [745] = {.lex_state = 58, .external_lex_state = 2}, - [746] = {.lex_state = 57, .external_lex_state = 2}, + [737] = {.lex_state = 57, .external_lex_state = 7}, + [738] = {.lex_state = 57, .external_lex_state = 3}, + [739] = {.lex_state = 57, .external_lex_state = 3}, + [740] = {.lex_state = 57, .external_lex_state = 7}, + [741] = {.lex_state = 57, .external_lex_state = 2}, + [742] = {.lex_state = 57, .external_lex_state = 2}, + [743] = {.lex_state = 57, .external_lex_state = 2}, + [744] = {.lex_state = 57, .external_lex_state = 2}, + [745] = {.lex_state = 57, .external_lex_state = 3}, + [746] = {.lex_state = 57, .external_lex_state = 3}, [747] = {.lex_state = 57, .external_lex_state = 2}, - [748] = {.lex_state = 58, .external_lex_state = 2}, + [748] = {.lex_state = 57, .external_lex_state = 3}, [749] = {.lex_state = 57, .external_lex_state = 2}, - [750] = {.lex_state = 57, .external_lex_state = 3}, + [750] = {.lex_state = 57, .external_lex_state = 2}, [751] = {.lex_state = 57, .external_lex_state = 2}, [752] = {.lex_state = 57, .external_lex_state = 2}, [753] = {.lex_state = 57, .external_lex_state = 2}, [754] = {.lex_state = 57, .external_lex_state = 2}, - [755] = {.lex_state = 57, .external_lex_state = 3}, - [756] = {.lex_state = 57, .external_lex_state = 3}, + [755] = {.lex_state = 57, .external_lex_state = 2}, + [756] = {.lex_state = 57, .external_lex_state = 2}, [757] = {.lex_state = 57, .external_lex_state = 3}, - [758] = {.lex_state = 57, .external_lex_state = 2}, + [758] = {.lex_state = 57, .external_lex_state = 3}, [759] = {.lex_state = 57, .external_lex_state = 3}, - [760] = {.lex_state = 57, .external_lex_state = 2}, + [760] = {.lex_state = 57, .external_lex_state = 3}, [761] = {.lex_state = 57, .external_lex_state = 3}, - [762] = {.lex_state = 57, .external_lex_state = 2}, - [763] = {.lex_state = 57, .external_lex_state = 2}, + [762] = {.lex_state = 57, .external_lex_state = 3}, + [763] = {.lex_state = 57, .external_lex_state = 3}, [764] = {.lex_state = 57, .external_lex_state = 3}, [765] = {.lex_state = 57, .external_lex_state = 3}, [766] = {.lex_state = 57, .external_lex_state = 3}, - [767] = {.lex_state = 57, .external_lex_state = 2}, + [767] = {.lex_state = 57, .external_lex_state = 3}, [768] = {.lex_state = 57, .external_lex_state = 2}, [769] = {.lex_state = 57, .external_lex_state = 3}, - [770] = {.lex_state = 57, .external_lex_state = 3}, - [771] = {.lex_state = 57, .external_lex_state = 3}, - [772] = {.lex_state = 57, .external_lex_state = 3}, - [773] = {.lex_state = 57, .external_lex_state = 2}, - [774] = {.lex_state = 57, .external_lex_state = 2}, - [775] = {.lex_state = 57, .external_lex_state = 2}, - [776] = {.lex_state = 57, .external_lex_state = 2}, + [770] = {.lex_state = 57, .external_lex_state = 2}, + [771] = {.lex_state = 57, .external_lex_state = 2}, + [772] = {.lex_state = 57, .external_lex_state = 2}, + [773] = {.lex_state = 57, .external_lex_state = 3}, + [774] = {.lex_state = 57, .external_lex_state = 3}, + [775] = {.lex_state = 57, .external_lex_state = 3}, + [776] = {.lex_state = 57, .external_lex_state = 3}, [777] = {.lex_state = 57, .external_lex_state = 2}, - [778] = {.lex_state = 57, .external_lex_state = 2}, + [778] = {.lex_state = 57, .external_lex_state = 8}, [779] = {.lex_state = 57, .external_lex_state = 2}, [780] = {.lex_state = 57, .external_lex_state = 2}, - [781] = {.lex_state = 57, .external_lex_state = 3}, - [782] = {.lex_state = 57, .external_lex_state = 3}, + [781] = {.lex_state = 57, .external_lex_state = 2}, + [782] = {.lex_state = 57, .external_lex_state = 2}, [783] = {.lex_state = 57, .external_lex_state = 2}, - [784] = {.lex_state = 57, .external_lex_state = 3}, + [784] = {.lex_state = 57, .external_lex_state = 7}, [785] = {.lex_state = 57, .external_lex_state = 3}, [786] = {.lex_state = 57, .external_lex_state = 2}, - [787] = {.lex_state = 57, .external_lex_state = 3}, + [787] = {.lex_state = 57, .external_lex_state = 2}, [788] = {.lex_state = 57, .external_lex_state = 2}, - [789] = {.lex_state = 57, .external_lex_state = 2}, + [789] = {.lex_state = 57, .external_lex_state = 3}, [790] = {.lex_state = 57, .external_lex_state = 3}, - [791] = {.lex_state = 57, .external_lex_state = 3}, + [791] = {.lex_state = 57, .external_lex_state = 2}, [792] = {.lex_state = 57, .external_lex_state = 2}, [793] = {.lex_state = 57, .external_lex_state = 2}, - [794] = {.lex_state = 57, .external_lex_state = 2}, - [795] = {.lex_state = 57, .external_lex_state = 3}, + [794] = {.lex_state = 57, .external_lex_state = 3}, + [795] = {.lex_state = 57, .external_lex_state = 2}, [796] = {.lex_state = 57, .external_lex_state = 2}, [797] = {.lex_state = 57, .external_lex_state = 2}, [798] = {.lex_state = 57, .external_lex_state = 2}, - [799] = {.lex_state = 57, .external_lex_state = 2}, - [800] = {.lex_state = 57, .external_lex_state = 3}, - [801] = {.lex_state = 57, .external_lex_state = 2}, + [799] = {.lex_state = 57, .external_lex_state = 3}, + [800] = {.lex_state = 57, .external_lex_state = 8}, + [801] = {.lex_state = 57, .external_lex_state = 3}, [802] = {.lex_state = 57, .external_lex_state = 2}, - [803] = {.lex_state = 57, .external_lex_state = 3}, - [804] = {.lex_state = 57, .external_lex_state = 7}, + [803] = {.lex_state = 57, .external_lex_state = 2}, + [804] = {.lex_state = 57, .external_lex_state = 2}, [805] = {.lex_state = 57, .external_lex_state = 3}, - [806] = {.lex_state = 57, .external_lex_state = 3}, - [807] = {.lex_state = 57, .external_lex_state = 3}, + [806] = {.lex_state = 57, .external_lex_state = 2}, + [807] = {.lex_state = 57, .external_lex_state = 2}, [808] = {.lex_state = 57, .external_lex_state = 3}, - [809] = {.lex_state = 57, .external_lex_state = 3}, - [810] = {.lex_state = 57, .external_lex_state = 3}, - [811] = {.lex_state = 57, .external_lex_state = 7}, + [809] = {.lex_state = 57, .external_lex_state = 2}, + [810] = {.lex_state = 57, .external_lex_state = 2}, + [811] = {.lex_state = 57, .external_lex_state = 3}, [812] = {.lex_state = 57, .external_lex_state = 3}, - [813] = {.lex_state = 57, .external_lex_state = 2}, + [813] = {.lex_state = 57, .external_lex_state = 3}, [814] = {.lex_state = 57, .external_lex_state = 3}, [815] = {.lex_state = 57, .external_lex_state = 2}, - [816] = {.lex_state = 57, .external_lex_state = 3}, + [816] = {.lex_state = 57, .external_lex_state = 2}, [817] = {.lex_state = 57, .external_lex_state = 3}, - [818] = {.lex_state = 57, .external_lex_state = 3}, + [818] = {.lex_state = 57, .external_lex_state = 2}, [819] = {.lex_state = 57, .external_lex_state = 3}, [820] = {.lex_state = 57, .external_lex_state = 2}, - [821] = {.lex_state = 57, .external_lex_state = 2}, - [822] = {.lex_state = 57, .external_lex_state = 2}, - [823] = {.lex_state = 57, .external_lex_state = 2}, - [824] = {.lex_state = 57, .external_lex_state = 2}, + [821] = {.lex_state = 57, .external_lex_state = 3}, + [822] = {.lex_state = 57, .external_lex_state = 3}, + [823] = {.lex_state = 57, .external_lex_state = 3}, + [824] = {.lex_state = 57, .external_lex_state = 3}, [825] = {.lex_state = 57, .external_lex_state = 2}, [826] = {.lex_state = 57, .external_lex_state = 2}, - [827] = {.lex_state = 57, .external_lex_state = 3}, + [827] = {.lex_state = 57, .external_lex_state = 2}, [828] = {.lex_state = 57, .external_lex_state = 3}, [829] = {.lex_state = 57, .external_lex_state = 2}, - [830] = {.lex_state = 57, .external_lex_state = 2}, + [830] = {.lex_state = 57, .external_lex_state = 3}, [831] = {.lex_state = 57, .external_lex_state = 2}, [832] = {.lex_state = 57, .external_lex_state = 2}, [833] = {.lex_state = 57, .external_lex_state = 2}, - [834] = {.lex_state = 57, .external_lex_state = 3}, - [835] = {.lex_state = 57, .external_lex_state = 3}, + [834] = {.lex_state = 57, .external_lex_state = 2}, + [835] = {.lex_state = 57, .external_lex_state = 2}, [836] = {.lex_state = 57, .external_lex_state = 2}, - [837] = {.lex_state = 57, .external_lex_state = 2}, - [838] = {.lex_state = 57, .external_lex_state = 2}, - [839] = {.lex_state = 57, .external_lex_state = 2}, - [840] = {.lex_state = 57, .external_lex_state = 8}, - [841] = {.lex_state = 57, .external_lex_state = 3}, - [842] = {.lex_state = 57, .external_lex_state = 3}, + [837] = {.lex_state = 57, .external_lex_state = 3}, + [838] = {.lex_state = 57, .external_lex_state = 3}, + [839] = {.lex_state = 57, .external_lex_state = 7}, + [840] = {.lex_state = 57, .external_lex_state = 3}, + [841] = {.lex_state = 57, .external_lex_state = 2}, + [842] = {.lex_state = 57, .external_lex_state = 2}, [843] = {.lex_state = 57, .external_lex_state = 2}, - [844] = {.lex_state = 57, .external_lex_state = 3}, + [844] = {.lex_state = 57, .external_lex_state = 2}, [845] = {.lex_state = 57, .external_lex_state = 2}, [846] = {.lex_state = 57, .external_lex_state = 2}, - [847] = {.lex_state = 57, .external_lex_state = 7}, + [847] = {.lex_state = 57, .external_lex_state = 2}, [848] = {.lex_state = 57, .external_lex_state = 2}, [849] = {.lex_state = 57, .external_lex_state = 2}, - [850] = {.lex_state = 57, .external_lex_state = 3}, + [850] = {.lex_state = 57, .external_lex_state = 7}, [851] = {.lex_state = 57, .external_lex_state = 2}, [852] = {.lex_state = 57, .external_lex_state = 2}, [853] = {.lex_state = 57, .external_lex_state = 2}, - [854] = {.lex_state = 57, .external_lex_state = 3}, + [854] = {.lex_state = 57, .external_lex_state = 2}, [855] = {.lex_state = 57, .external_lex_state = 2}, [856] = {.lex_state = 57, .external_lex_state = 2}, - [857] = {.lex_state = 57, .external_lex_state = 3}, - [858] = {.lex_state = 57, .external_lex_state = 3}, + [857] = {.lex_state = 57, .external_lex_state = 2}, + [858] = {.lex_state = 57, .external_lex_state = 2}, [859] = {.lex_state = 57, .external_lex_state = 2}, [860] = {.lex_state = 57, .external_lex_state = 2}, [861] = {.lex_state = 57, .external_lex_state = 2}, [862] = {.lex_state = 57, .external_lex_state = 2}, [863] = {.lex_state = 57, .external_lex_state = 2}, [864] = {.lex_state = 57, .external_lex_state = 2}, - [865] = {.lex_state = 57, .external_lex_state = 7}, - [866] = {.lex_state = 57, .external_lex_state = 3}, - [867] = {.lex_state = 57, .external_lex_state = 3}, + [865] = {.lex_state = 57, .external_lex_state = 2}, + [866] = {.lex_state = 57, .external_lex_state = 2}, + [867] = {.lex_state = 57, .external_lex_state = 2}, [868] = {.lex_state = 57, .external_lex_state = 2}, [869] = {.lex_state = 57, .external_lex_state = 2}, - [870] = {.lex_state = 57, .external_lex_state = 3}, - [871] = {.lex_state = 57, .external_lex_state = 3}, - [872] = {.lex_state = 57, .external_lex_state = 3}, - [873] = {.lex_state = 57, .external_lex_state = 3}, + [870] = {.lex_state = 57, .external_lex_state = 2}, + [871] = {.lex_state = 57, .external_lex_state = 2}, + [872] = {.lex_state = 57, .external_lex_state = 2}, + [873] = {.lex_state = 57, .external_lex_state = 2}, [874] = {.lex_state = 57, .external_lex_state = 2}, - [875] = {.lex_state = 57, .external_lex_state = 3}, - [876] = {.lex_state = 57, .external_lex_state = 3}, + [875] = {.lex_state = 57, .external_lex_state = 2}, + [876] = {.lex_state = 57, .external_lex_state = 2}, [877] = {.lex_state = 57, .external_lex_state = 2}, [878] = {.lex_state = 57, .external_lex_state = 2}, - [879] = {.lex_state = 57, .external_lex_state = 3}, + [879] = {.lex_state = 57, .external_lex_state = 2}, [880] = {.lex_state = 57, .external_lex_state = 2}, [881] = {.lex_state = 57, .external_lex_state = 2}, [882] = {.lex_state = 57, .external_lex_state = 2}, [883] = {.lex_state = 57, .external_lex_state = 2}, [884] = {.lex_state = 57, .external_lex_state = 2}, - [885] = {.lex_state = 57, .external_lex_state = 3}, + [885] = {.lex_state = 57, .external_lex_state = 2}, [886] = {.lex_state = 57, .external_lex_state = 2}, [887] = {.lex_state = 57, .external_lex_state = 2}, [888] = {.lex_state = 57, .external_lex_state = 2}, - [889] = {.lex_state = 57, .external_lex_state = 3}, - [890] = {.lex_state = 57, .external_lex_state = 3}, - [891] = {.lex_state = 57, .external_lex_state = 3}, - [892] = {.lex_state = 57, .external_lex_state = 3}, - [893] = {.lex_state = 57, .external_lex_state = 3}, - [894] = {.lex_state = 57, .external_lex_state = 8}, + [889] = {.lex_state = 57, .external_lex_state = 2}, + [890] = {.lex_state = 57, .external_lex_state = 2}, + [891] = {.lex_state = 57, .external_lex_state = 2}, + [892] = {.lex_state = 57, .external_lex_state = 2}, + [893] = {.lex_state = 57, .external_lex_state = 2}, + [894] = {.lex_state = 57, .external_lex_state = 2}, [895] = {.lex_state = 57, .external_lex_state = 2}, - [896] = {.lex_state = 57, .external_lex_state = 3}, + [896] = {.lex_state = 57, .external_lex_state = 2}, [897] = {.lex_state = 57, .external_lex_state = 2}, - [898] = {.lex_state = 57, .external_lex_state = 3}, - [899] = {.lex_state = 57, .external_lex_state = 3}, - [900] = {.lex_state = 57, .external_lex_state = 3}, - [901] = {.lex_state = 57, .external_lex_state = 3}, - [902] = {.lex_state = 57, .external_lex_state = 3}, - [903] = {.lex_state = 57, .external_lex_state = 3}, - [904] = {.lex_state = 57, .external_lex_state = 3}, + [898] = {.lex_state = 57, .external_lex_state = 2}, + [899] = {.lex_state = 57, .external_lex_state = 2}, + [900] = {.lex_state = 57, .external_lex_state = 2}, + [901] = {.lex_state = 57, .external_lex_state = 2}, + [902] = {.lex_state = 57, .external_lex_state = 2}, + [903] = {.lex_state = 57, .external_lex_state = 2}, + [904] = {.lex_state = 57, .external_lex_state = 2}, [905] = {.lex_state = 57, .external_lex_state = 2}, [906] = {.lex_state = 57, .external_lex_state = 2}, [907] = {.lex_state = 57, .external_lex_state = 2}, [908] = {.lex_state = 57, .external_lex_state = 2}, [909] = {.lex_state = 57, .external_lex_state = 2}, [910] = {.lex_state = 57, .external_lex_state = 2}, - [911] = {.lex_state = 57, .external_lex_state = 7}, + [911] = {.lex_state = 57, .external_lex_state = 2}, [912] = {.lex_state = 57, .external_lex_state = 2}, [913] = {.lex_state = 57, .external_lex_state = 2}, [914] = {.lex_state = 57, .external_lex_state = 2}, @@ -10481,1581 +10463,1554 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [967] = {.lex_state = 57, .external_lex_state = 2}, [968] = {.lex_state = 57, .external_lex_state = 2}, [969] = {.lex_state = 57, .external_lex_state = 2}, - [970] = {.lex_state = 57, .external_lex_state = 2}, - [971] = {.lex_state = 57, .external_lex_state = 2}, - [972] = {.lex_state = 57, .external_lex_state = 2}, - [973] = {.lex_state = 57, .external_lex_state = 2}, - [974] = {.lex_state = 57, .external_lex_state = 2}, - [975] = {.lex_state = 57, .external_lex_state = 2}, - [976] = {.lex_state = 57, .external_lex_state = 2}, - [977] = {.lex_state = 57, .external_lex_state = 2}, - [978] = {.lex_state = 57, .external_lex_state = 2}, - [979] = {.lex_state = 57, .external_lex_state = 2}, - [980] = {.lex_state = 57, .external_lex_state = 2}, - [981] = {.lex_state = 57, .external_lex_state = 2}, - [982] = {.lex_state = 57, .external_lex_state = 2}, - [983] = {.lex_state = 57, .external_lex_state = 2}, - [984] = {.lex_state = 57, .external_lex_state = 2}, - [985] = {.lex_state = 57, .external_lex_state = 2}, - [986] = {.lex_state = 57, .external_lex_state = 2}, - [987] = {.lex_state = 57, .external_lex_state = 2}, - [988] = {.lex_state = 57, .external_lex_state = 2}, - [989] = {.lex_state = 57, .external_lex_state = 2}, - [990] = {.lex_state = 57, .external_lex_state = 2}, - [991] = {.lex_state = 57, .external_lex_state = 2}, - [992] = {.lex_state = 57, .external_lex_state = 2}, - [993] = {.lex_state = 57, .external_lex_state = 2}, - [994] = {.lex_state = 57, .external_lex_state = 2}, - [995] = {.lex_state = 57, .external_lex_state = 2}, - [996] = {.lex_state = 57, .external_lex_state = 2}, - [997] = {.lex_state = 57, .external_lex_state = 2}, - [998] = {.lex_state = 57, .external_lex_state = 2}, - [999] = {.lex_state = 57, .external_lex_state = 2}, - [1000] = {.lex_state = 57, .external_lex_state = 2}, - [1001] = {.lex_state = 57, .external_lex_state = 2}, - [1002] = {.lex_state = 57, .external_lex_state = 2}, - [1003] = {.lex_state = 57, .external_lex_state = 2}, - [1004] = {.lex_state = 57, .external_lex_state = 2}, - [1005] = {.lex_state = 57, .external_lex_state = 2}, - [1006] = {.lex_state = 57, .external_lex_state = 2}, - [1007] = {.lex_state = 57, .external_lex_state = 2}, - [1008] = {.lex_state = 57, .external_lex_state = 2}, - [1009] = {.lex_state = 57, .external_lex_state = 2}, - [1010] = {.lex_state = 57, .external_lex_state = 2}, - [1011] = {.lex_state = 57, .external_lex_state = 2}, - [1012] = {.lex_state = 57, .external_lex_state = 2}, - [1013] = {.lex_state = 57, .external_lex_state = 2}, - [1014] = {.lex_state = 57, .external_lex_state = 2}, - [1015] = {.lex_state = 57, .external_lex_state = 2}, - [1016] = {.lex_state = 57, .external_lex_state = 2}, - [1017] = {.lex_state = 57, .external_lex_state = 2}, - [1018] = {.lex_state = 57, .external_lex_state = 2}, - [1019] = {.lex_state = 57, .external_lex_state = 2}, - [1020] = {.lex_state = 57, .external_lex_state = 2}, - [1021] = {.lex_state = 57, .external_lex_state = 2}, - [1022] = {.lex_state = 57, .external_lex_state = 2}, - [1023] = {.lex_state = 57, .external_lex_state = 2}, - [1024] = {.lex_state = 57, .external_lex_state = 2}, - [1025] = {.lex_state = 57, .external_lex_state = 2}, - [1026] = {.lex_state = 57, .external_lex_state = 2}, - [1027] = {.lex_state = 57, .external_lex_state = 2}, - [1028] = {.lex_state = 57, .external_lex_state = 2}, - [1029] = {.lex_state = 57, .external_lex_state = 2}, - [1030] = {.lex_state = 57, .external_lex_state = 2}, - [1031] = {.lex_state = 57, .external_lex_state = 2}, - [1032] = {.lex_state = 35, .external_lex_state = 6}, - [1033] = {.lex_state = 35, .external_lex_state = 10}, - [1034] = {.lex_state = 35, .external_lex_state = 4}, - [1035] = {.lex_state = 35, .external_lex_state = 6}, - [1036] = {.lex_state = 35, .external_lex_state = 9}, - [1037] = {.lex_state = 35, .external_lex_state = 6}, - [1038] = {.lex_state = 35, .external_lex_state = 10}, - [1039] = {.lex_state = 35, .external_lex_state = 4}, - [1040] = {.lex_state = 35, .external_lex_state = 6}, - [1041] = {.lex_state = 35, .external_lex_state = 6}, - [1042] = {.lex_state = 35, .external_lex_state = 6}, - [1043] = {.lex_state = 35, .external_lex_state = 4}, - [1044] = {.lex_state = 35, .external_lex_state = 10}, - [1045] = {.lex_state = 35, .external_lex_state = 10}, - [1046] = {.lex_state = 35, .external_lex_state = 9}, - [1047] = {.lex_state = 35, .external_lex_state = 2}, - [1048] = {.lex_state = 35, .external_lex_state = 11}, - [1049] = {.lex_state = 35, .external_lex_state = 9}, - [1050] = {.lex_state = 35, .external_lex_state = 10}, - [1051] = {.lex_state = 35, .external_lex_state = 9}, - [1052] = {.lex_state = 35, .external_lex_state = 10}, - [1053] = {.lex_state = 35, .external_lex_state = 10}, - [1054] = {.lex_state = 35, .external_lex_state = 9}, - [1055] = {.lex_state = 35, .external_lex_state = 9}, - [1056] = {.lex_state = 35, .external_lex_state = 10}, - [1057] = {.lex_state = 35, .external_lex_state = 10}, - [1058] = {.lex_state = 35, .external_lex_state = 8}, - [1059] = {.lex_state = 35, .external_lex_state = 12}, - [1060] = {.lex_state = 35, .external_lex_state = 10}, - [1061] = {.lex_state = 35, .external_lex_state = 10}, - [1062] = {.lex_state = 35, .external_lex_state = 10}, - [1063] = {.lex_state = 35, .external_lex_state = 12}, - [1064] = {.lex_state = 35, .external_lex_state = 9}, - [1065] = {.lex_state = 35, .external_lex_state = 10}, - [1066] = {.lex_state = 35, .external_lex_state = 10}, - [1067] = {.lex_state = 35, .external_lex_state = 9}, - [1068] = {.lex_state = 35, .external_lex_state = 9}, - [1069] = {.lex_state = 35, .external_lex_state = 10}, - [1070] = {.lex_state = 35, .external_lex_state = 10}, - [1071] = {.lex_state = 35, .external_lex_state = 2}, - [1072] = {.lex_state = 35, .external_lex_state = 10}, - [1073] = {.lex_state = 35, .external_lex_state = 8}, - [1074] = {.lex_state = 35, .external_lex_state = 10}, - [1075] = {.lex_state = 35, .external_lex_state = 10}, - [1076] = {.lex_state = 35, .external_lex_state = 10}, - [1077] = {.lex_state = 35, .external_lex_state = 9}, - [1078] = {.lex_state = 35, .external_lex_state = 10}, - [1079] = {.lex_state = 35, .external_lex_state = 11}, - [1080] = {.lex_state = 35, .external_lex_state = 10}, - [1081] = {.lex_state = 35, .external_lex_state = 10}, - [1082] = {.lex_state = 35, .external_lex_state = 10}, - [1083] = {.lex_state = 35, .external_lex_state = 10}, - [1084] = {.lex_state = 35, .external_lex_state = 10}, - [1085] = {.lex_state = 35, .external_lex_state = 10}, - [1086] = {.lex_state = 35, .external_lex_state = 10}, - [1087] = {.lex_state = 35, .external_lex_state = 7}, - [1088] = {.lex_state = 35, .external_lex_state = 10}, - [1089] = {.lex_state = 35, .external_lex_state = 10}, - [1090] = {.lex_state = 35, .external_lex_state = 7}, - [1091] = {.lex_state = 35, .external_lex_state = 10}, - [1092] = {.lex_state = 35, .external_lex_state = 10}, - [1093] = {.lex_state = 35, .external_lex_state = 9}, - [1094] = {.lex_state = 35, .external_lex_state = 9}, - [1095] = {.lex_state = 35, .external_lex_state = 7}, - [1096] = {.lex_state = 35, .external_lex_state = 9}, - [1097] = {.lex_state = 35, .external_lex_state = 10}, - [1098] = {.lex_state = 35, .external_lex_state = 13}, - [1099] = {.lex_state = 35, .external_lex_state = 8}, - [1100] = {.lex_state = 35, .external_lex_state = 2}, - [1101] = {.lex_state = 35, .external_lex_state = 13}, - [1102] = {.lex_state = 35, .external_lex_state = 12}, - [1103] = {.lex_state = 35, .external_lex_state = 12}, - [1104] = {.lex_state = 35, .external_lex_state = 13}, - [1105] = {.lex_state = 35, .external_lex_state = 8}, - [1106] = {.lex_state = 41, .external_lex_state = 13}, - [1107] = {.lex_state = 35, .external_lex_state = 12}, - [1108] = {.lex_state = 35, .external_lex_state = 6}, - [1109] = {.lex_state = 35, .external_lex_state = 11}, - [1110] = {.lex_state = 35, .external_lex_state = 12}, - [1111] = {.lex_state = 35, .external_lex_state = 9}, - [1112] = {.lex_state = 35, .external_lex_state = 9}, - [1113] = {.lex_state = 35, .external_lex_state = 12}, - [1114] = {.lex_state = 35, .external_lex_state = 12}, - [1115] = {.lex_state = 35, .external_lex_state = 12}, - [1116] = {.lex_state = 35, .external_lex_state = 12}, - [1117] = {.lex_state = 35, .external_lex_state = 11}, - [1118] = {.lex_state = 35, .external_lex_state = 11}, - [1119] = {.lex_state = 35, .external_lex_state = 11}, - [1120] = {.lex_state = 35, .external_lex_state = 12}, - [1121] = {.lex_state = 35, .external_lex_state = 12}, - [1122] = {.lex_state = 35, .external_lex_state = 11}, - [1123] = {.lex_state = 35, .external_lex_state = 11}, - [1124] = {.lex_state = 41, .external_lex_state = 10}, - [1125] = {.lex_state = 41, .external_lex_state = 10}, - [1126] = {.lex_state = 35, .external_lex_state = 12}, - [1127] = {.lex_state = 35, .external_lex_state = 11}, - [1128] = {.lex_state = 35, .external_lex_state = 11}, - [1129] = {.lex_state = 35, .external_lex_state = 4}, - [1130] = {.lex_state = 35, .external_lex_state = 13}, - [1131] = {.lex_state = 35, .external_lex_state = 11}, - [1132] = {.lex_state = 35, .external_lex_state = 8}, - [1133] = {.lex_state = 35, .external_lex_state = 13}, - [1134] = {.lex_state = 35, .external_lex_state = 13}, - [1135] = {.lex_state = 35, .external_lex_state = 13}, - [1136] = {.lex_state = 35, .external_lex_state = 13}, - [1137] = {.lex_state = 35, .external_lex_state = 8}, - [1138] = {.lex_state = 35, .external_lex_state = 13}, - [1139] = {.lex_state = 35, .external_lex_state = 10}, - [1140] = {.lex_state = 35, .external_lex_state = 13}, - [1141] = {.lex_state = 35, .external_lex_state = 13}, - [1142] = {.lex_state = 41, .external_lex_state = 9}, - [1143] = {.lex_state = 41, .external_lex_state = 9}, - [1144] = {.lex_state = 35, .external_lex_state = 11}, - [1145] = {.lex_state = 35, .external_lex_state = 10}, - [1146] = {.lex_state = 35, .external_lex_state = 10}, - [1147] = {.lex_state = 41, .external_lex_state = 10}, - [1148] = {.lex_state = 35, .external_lex_state = 7}, - [1149] = {.lex_state = 35, .external_lex_state = 13}, - [1150] = {.lex_state = 35, .external_lex_state = 13}, - [1151] = {.lex_state = 41, .external_lex_state = 13}, - [1152] = {.lex_state = 35, .external_lex_state = 13}, - [1153] = {.lex_state = 35, .external_lex_state = 12}, - [1154] = {.lex_state = 35, .external_lex_state = 13}, - [1155] = {.lex_state = 35, .external_lex_state = 11}, - [1156] = {.lex_state = 35, .external_lex_state = 4}, - [1157] = {.lex_state = 35, .external_lex_state = 7}, - [1158] = {.lex_state = 35, .external_lex_state = 6}, - [1159] = {.lex_state = 35, .external_lex_state = 12}, - [1160] = {.lex_state = 41, .external_lex_state = 10}, - [1161] = {.lex_state = 35, .external_lex_state = 9}, - [1162] = {.lex_state = 35, .external_lex_state = 6}, - [1163] = {.lex_state = 35, .external_lex_state = 6}, - [1164] = {.lex_state = 35, .external_lex_state = 7}, - [1165] = {.lex_state = 41, .external_lex_state = 10}, - [1166] = {.lex_state = 41, .external_lex_state = 10}, - [1167] = {.lex_state = 41, .external_lex_state = 10}, - [1168] = {.lex_state = 35, .external_lex_state = 10}, - [1169] = {.lex_state = 41, .external_lex_state = 10}, - [1170] = {.lex_state = 35, .external_lex_state = 13}, - [1171] = {.lex_state = 35, .external_lex_state = 9}, - [1172] = {.lex_state = 35, .external_lex_state = 9}, - [1173] = {.lex_state = 35, .external_lex_state = 9}, - [1174] = {.lex_state = 41, .external_lex_state = 11}, - [1175] = {.lex_state = 41, .external_lex_state = 11}, - [1176] = {.lex_state = 41, .external_lex_state = 13}, - [1177] = {.lex_state = 41, .external_lex_state = 13}, - [1178] = {.lex_state = 35, .external_lex_state = 9}, - [1179] = {.lex_state = 35, .external_lex_state = 9}, - [1180] = {.lex_state = 35, .external_lex_state = 9}, - [1181] = {.lex_state = 35, .external_lex_state = 10}, - [1182] = {.lex_state = 35, .external_lex_state = 13}, - [1183] = {.lex_state = 35, .external_lex_state = 10}, - [1184] = {.lex_state = 35, .external_lex_state = 13}, - [1185] = {.lex_state = 35, .external_lex_state = 10}, - [1186] = {.lex_state = 35, .external_lex_state = 10}, - [1187] = {.lex_state = 35, .external_lex_state = 13}, - [1188] = {.lex_state = 35, .external_lex_state = 13}, - [1189] = {.lex_state = 35, .external_lex_state = 13}, - [1190] = {.lex_state = 35, .external_lex_state = 13}, - [1191] = {.lex_state = 35, .external_lex_state = 13}, - [1192] = {.lex_state = 35, .external_lex_state = 13}, - [1193] = {.lex_state = 35, .external_lex_state = 10}, - [1194] = {.lex_state = 35, .external_lex_state = 13}, - [1195] = {.lex_state = 35, .external_lex_state = 10}, - [1196] = {.lex_state = 35, .external_lex_state = 10}, - [1197] = {.lex_state = 35, .external_lex_state = 10}, - [1198] = {.lex_state = 35, .external_lex_state = 10}, - [1199] = {.lex_state = 35, .external_lex_state = 10}, - [1200] = {.lex_state = 35, .external_lex_state = 13}, - [1201] = {.lex_state = 35, .external_lex_state = 13}, - [1202] = {.lex_state = 35, .external_lex_state = 13}, - [1203] = {.lex_state = 35, .external_lex_state = 9}, - [1204] = {.lex_state = 35, .external_lex_state = 9}, - [1205] = {.lex_state = 35, .external_lex_state = 10}, - [1206] = {.lex_state = 35, .external_lex_state = 10}, - [1207] = {.lex_state = 35, .external_lex_state = 13}, - [1208] = {.lex_state = 35, .external_lex_state = 13}, - [1209] = {.lex_state = 35, .external_lex_state = 9}, - [1210] = {.lex_state = 35, .external_lex_state = 10}, - [1211] = {.lex_state = 35, .external_lex_state = 10}, - [1212] = {.lex_state = 35, .external_lex_state = 10}, - [1213] = {.lex_state = 35, .external_lex_state = 9}, - [1214] = {.lex_state = 35, .external_lex_state = 13}, - [1215] = {.lex_state = 35, .external_lex_state = 10}, - [1216] = {.lex_state = 35, .external_lex_state = 10}, - [1217] = {.lex_state = 35, .external_lex_state = 10}, - [1218] = {.lex_state = 35, .external_lex_state = 10}, - [1219] = {.lex_state = 35, .external_lex_state = 10}, - [1220] = {.lex_state = 35, .external_lex_state = 10}, - [1221] = {.lex_state = 35, .external_lex_state = 10}, - [1222] = {.lex_state = 35, .external_lex_state = 10}, - [1223] = {.lex_state = 35, .external_lex_state = 10}, - [1224] = {.lex_state = 35, .external_lex_state = 10}, - [1225] = {.lex_state = 35, .external_lex_state = 10}, - [1226] = {.lex_state = 35, .external_lex_state = 10}, - [1227] = {.lex_state = 35, .external_lex_state = 10}, - [1228] = {.lex_state = 35, .external_lex_state = 10}, - [1229] = {.lex_state = 35, .external_lex_state = 9}, - [1230] = {.lex_state = 35, .external_lex_state = 9}, - [1231] = {.lex_state = 35, .external_lex_state = 9}, - [1232] = {.lex_state = 35, .external_lex_state = 10}, - [1233] = {.lex_state = 35, .external_lex_state = 10}, - [1234] = {.lex_state = 35, .external_lex_state = 12}, - [1235] = {.lex_state = 35, .external_lex_state = 10}, - [1236] = {.lex_state = 35, .external_lex_state = 10}, - [1237] = {.lex_state = 35, .external_lex_state = 9}, - [1238] = {.lex_state = 35, .external_lex_state = 9}, - [1239] = {.lex_state = 35, .external_lex_state = 12}, - [1240] = {.lex_state = 41, .external_lex_state = 12}, - [1241] = {.lex_state = 35, .external_lex_state = 10}, - [1242] = {.lex_state = 35, .external_lex_state = 13}, - [1243] = {.lex_state = 35, .external_lex_state = 13}, - [1244] = {.lex_state = 35, .external_lex_state = 7}, - [1245] = {.lex_state = 35, .external_lex_state = 11}, - [1246] = {.lex_state = 35, .external_lex_state = 10}, - [1247] = {.lex_state = 35, .external_lex_state = 12}, - [1248] = {.lex_state = 35, .external_lex_state = 10}, - [1249] = {.lex_state = 35, .external_lex_state = 10}, - [1250] = {.lex_state = 41, .external_lex_state = 13}, - [1251] = {.lex_state = 35, .external_lex_state = 12}, - [1252] = {.lex_state = 35, .external_lex_state = 10}, - [1253] = {.lex_state = 35, .external_lex_state = 10}, - [1254] = {.lex_state = 35, .external_lex_state = 10}, - [1255] = {.lex_state = 35, .external_lex_state = 10}, - [1256] = {.lex_state = 35, .external_lex_state = 10}, - [1257] = {.lex_state = 35, .external_lex_state = 10}, - [1258] = {.lex_state = 35, .external_lex_state = 9}, - [1259] = {.lex_state = 35, .external_lex_state = 9}, - [1260] = {.lex_state = 35, .external_lex_state = 12}, - [1261] = {.lex_state = 35, .external_lex_state = 10}, - [1262] = {.lex_state = 35, .external_lex_state = 12}, - [1263] = {.lex_state = 35, .external_lex_state = 12}, - [1264] = {.lex_state = 35, .external_lex_state = 9}, - [1265] = {.lex_state = 35, .external_lex_state = 10}, - [1266] = {.lex_state = 35, .external_lex_state = 9}, - [1267] = {.lex_state = 35, .external_lex_state = 9}, - [1268] = {.lex_state = 41, .external_lex_state = 13}, - [1269] = {.lex_state = 41, .external_lex_state = 13}, - [1270] = {.lex_state = 35, .external_lex_state = 9}, - [1271] = {.lex_state = 35, .external_lex_state = 9}, - [1272] = {.lex_state = 35, .external_lex_state = 9}, - [1273] = {.lex_state = 35, .external_lex_state = 13}, - [1274] = {.lex_state = 35, .external_lex_state = 12}, - [1275] = {.lex_state = 35, .external_lex_state = 12}, - [1276] = {.lex_state = 35, .external_lex_state = 10}, - [1277] = {.lex_state = 35, .external_lex_state = 10}, - [1278] = {.lex_state = 35, .external_lex_state = 10}, - [1279] = {.lex_state = 35, .external_lex_state = 10}, - [1280] = {.lex_state = 35, .external_lex_state = 10}, - [1281] = {.lex_state = 35, .external_lex_state = 12}, - [1282] = {.lex_state = 35, .external_lex_state = 10}, - [1283] = {.lex_state = 35, .external_lex_state = 12}, - [1284] = {.lex_state = 35, .external_lex_state = 8}, - [1285] = {.lex_state = 35, .external_lex_state = 10}, - [1286] = {.lex_state = 35, .external_lex_state = 10}, - [1287] = {.lex_state = 41, .external_lex_state = 12}, - [1288] = {.lex_state = 35, .external_lex_state = 9}, - [1289] = {.lex_state = 35, .external_lex_state = 10}, - [1290] = {.lex_state = 35, .external_lex_state = 10}, - [1291] = {.lex_state = 35, .external_lex_state = 9}, - [1292] = {.lex_state = 35, .external_lex_state = 12}, - [1293] = {.lex_state = 41, .external_lex_state = 12}, - [1294] = {.lex_state = 41, .external_lex_state = 12}, - [1295] = {.lex_state = 35, .external_lex_state = 10}, - [1296] = {.lex_state = 35, .external_lex_state = 10}, - [1297] = {.lex_state = 35, .external_lex_state = 10}, - [1298] = {.lex_state = 35, .external_lex_state = 12}, - [1299] = {.lex_state = 35, .external_lex_state = 9}, - [1300] = {.lex_state = 35, .external_lex_state = 9}, - [1301] = {.lex_state = 35, .external_lex_state = 10}, - [1302] = {.lex_state = 35, .external_lex_state = 10}, - [1303] = {.lex_state = 35, .external_lex_state = 10}, - [1304] = {.lex_state = 35, .external_lex_state = 9}, - [1305] = {.lex_state = 35, .external_lex_state = 9}, - [1306] = {.lex_state = 35, .external_lex_state = 10}, - [1307] = {.lex_state = 35, .external_lex_state = 9}, - [1308] = {.lex_state = 35, .external_lex_state = 13}, - [1309] = {.lex_state = 35, .external_lex_state = 13}, - [1310] = {.lex_state = 35, .external_lex_state = 9}, - [1311] = {.lex_state = 35, .external_lex_state = 9}, - [1312] = {.lex_state = 35, .external_lex_state = 10}, - [1313] = {.lex_state = 35, .external_lex_state = 11}, - [1314] = {.lex_state = 41, .external_lex_state = 13}, - [1315] = {.lex_state = 35, .external_lex_state = 12}, - [1316] = {.lex_state = 35, .external_lex_state = 10}, - [1317] = {.lex_state = 35, .external_lex_state = 10}, - [1318] = {.lex_state = 35, .external_lex_state = 10}, - [1319] = {.lex_state = 35, .external_lex_state = 10}, - [1320] = {.lex_state = 35, .external_lex_state = 8}, - [1321] = {.lex_state = 35, .external_lex_state = 10}, - [1322] = {.lex_state = 35, .external_lex_state = 2}, - [1323] = {.lex_state = 35, .external_lex_state = 10}, - [1324] = {.lex_state = 35, .external_lex_state = 10}, - [1325] = {.lex_state = 35, .external_lex_state = 10}, - [1326] = {.lex_state = 35, .external_lex_state = 10}, - [1327] = {.lex_state = 35, .external_lex_state = 10}, - [1328] = {.lex_state = 35, .external_lex_state = 10}, - [1329] = {.lex_state = 35, .external_lex_state = 9}, - [1330] = {.lex_state = 35, .external_lex_state = 9}, - [1331] = {.lex_state = 35, .external_lex_state = 10}, - [1332] = {.lex_state = 35, .external_lex_state = 9}, - [1333] = {.lex_state = 35, .external_lex_state = 9}, - [1334] = {.lex_state = 35, .external_lex_state = 10}, - [1335] = {.lex_state = 35, .external_lex_state = 10}, - [1336] = {.lex_state = 35, .external_lex_state = 9}, - [1337] = {.lex_state = 35, .external_lex_state = 10}, - [1338] = {.lex_state = 35, .external_lex_state = 10}, - [1339] = {.lex_state = 35, .external_lex_state = 10}, - [1340] = {.lex_state = 35, .external_lex_state = 10}, - [1341] = {.lex_state = 35, .external_lex_state = 10}, - [1342] = {.lex_state = 35, .external_lex_state = 10}, - [1343] = {.lex_state = 35, .external_lex_state = 10}, - [1344] = {.lex_state = 35, .external_lex_state = 9}, - [1345] = {.lex_state = 35, .external_lex_state = 10}, - [1346] = {.lex_state = 35, .external_lex_state = 10}, - [1347] = {.lex_state = 35, .external_lex_state = 9}, - [1348] = {.lex_state = 35, .external_lex_state = 9}, - [1349] = {.lex_state = 35, .external_lex_state = 9}, - [1350] = {.lex_state = 35, .external_lex_state = 9}, - [1351] = {.lex_state = 41, .external_lex_state = 12}, - [1352] = {.lex_state = 35, .external_lex_state = 9}, - [1353] = {.lex_state = 35, .external_lex_state = 2}, - [1354] = {.lex_state = 35, .external_lex_state = 10}, - [1355] = {.lex_state = 35, .external_lex_state = 11}, - [1356] = {.lex_state = 41, .external_lex_state = 12}, - [1357] = {.lex_state = 35, .external_lex_state = 9}, - [1358] = {.lex_state = 35, .external_lex_state = 7}, - [1359] = {.lex_state = 35, .external_lex_state = 12}, - [1360] = {.lex_state = 35, .external_lex_state = 11}, - [1361] = {.lex_state = 35, .external_lex_state = 13}, - [1362] = {.lex_state = 35, .external_lex_state = 12}, - [1363] = {.lex_state = 35, .external_lex_state = 13}, - [1364] = {.lex_state = 35, .external_lex_state = 13}, - [1365] = {.lex_state = 35, .external_lex_state = 13}, - [1366] = {.lex_state = 35, .external_lex_state = 11}, - [1367] = {.lex_state = 35, .external_lex_state = 13}, - [1368] = {.lex_state = 35, .external_lex_state = 13}, - [1369] = {.lex_state = 35, .external_lex_state = 13}, - [1370] = {.lex_state = 35, .external_lex_state = 13}, - [1371] = {.lex_state = 35, .external_lex_state = 13}, - [1372] = {.lex_state = 35, .external_lex_state = 13}, - [1373] = {.lex_state = 35, .external_lex_state = 13}, - [1374] = {.lex_state = 41, .external_lex_state = 13}, - [1375] = {.lex_state = 41, .external_lex_state = 13}, - [1376] = {.lex_state = 35, .external_lex_state = 13}, - [1377] = {.lex_state = 35, .external_lex_state = 11}, - [1378] = {.lex_state = 35, .external_lex_state = 11}, - [1379] = {.lex_state = 35, .external_lex_state = 13}, - [1380] = {.lex_state = 35, .external_lex_state = 13}, - [1381] = {.lex_state = 35, .external_lex_state = 13}, - [1382] = {.lex_state = 35, .external_lex_state = 12}, - [1383] = {.lex_state = 35, .external_lex_state = 13}, - [1384] = {.lex_state = 35, .external_lex_state = 12}, - [1385] = {.lex_state = 35, .external_lex_state = 13}, - [1386] = {.lex_state = 35, .external_lex_state = 12}, - [1387] = {.lex_state = 35, .external_lex_state = 12}, - [1388] = {.lex_state = 35, .external_lex_state = 12}, - [1389] = {.lex_state = 35, .external_lex_state = 12}, - [1390] = {.lex_state = 35, .external_lex_state = 12}, - [1391] = {.lex_state = 35, .external_lex_state = 13}, - [1392] = {.lex_state = 35, .external_lex_state = 13}, - [1393] = {.lex_state = 35, .external_lex_state = 13}, - [1394] = {.lex_state = 35, .external_lex_state = 13}, - [1395] = {.lex_state = 35, .external_lex_state = 13}, - [1396] = {.lex_state = 35, .external_lex_state = 12}, - [1397] = {.lex_state = 35, .external_lex_state = 12}, - [1398] = {.lex_state = 35, .external_lex_state = 11}, - [1399] = {.lex_state = 35, .external_lex_state = 13}, - [1400] = {.lex_state = 35, .external_lex_state = 12}, - [1401] = {.lex_state = 34, .external_lex_state = 9}, - [1402] = {.lex_state = 35, .external_lex_state = 12}, - [1403] = {.lex_state = 35, .external_lex_state = 12}, - [1404] = {.lex_state = 41, .external_lex_state = 13}, - [1405] = {.lex_state = 41, .external_lex_state = 13}, - [1406] = {.lex_state = 35, .external_lex_state = 12}, - [1407] = {.lex_state = 35, .external_lex_state = 13}, - [1408] = {.lex_state = 35, .external_lex_state = 11}, - [1409] = {.lex_state = 35, .external_lex_state = 12}, - [1410] = {.lex_state = 35, .external_lex_state = 12}, - [1411] = {.lex_state = 35, .external_lex_state = 11}, - [1412] = {.lex_state = 35, .external_lex_state = 11}, - [1413] = {.lex_state = 35, .external_lex_state = 13}, - [1414] = {.lex_state = 35, .external_lex_state = 13}, - [1415] = {.lex_state = 35, .external_lex_state = 11}, - [1416] = {.lex_state = 35, .external_lex_state = 12}, - [1417] = {.lex_state = 35, .external_lex_state = 12}, - [1418] = {.lex_state = 35, .external_lex_state = 11}, - [1419] = {.lex_state = 35, .external_lex_state = 11}, - [1420] = {.lex_state = 35, .external_lex_state = 13}, - [1421] = {.lex_state = 35, .external_lex_state = 12}, - [1422] = {.lex_state = 35, .external_lex_state = 12}, - [1423] = {.lex_state = 35, .external_lex_state = 11}, - [1424] = {.lex_state = 35, .external_lex_state = 12}, - [1425] = {.lex_state = 35, .external_lex_state = 11}, - [1426] = {.lex_state = 35, .external_lex_state = 11}, - [1427] = {.lex_state = 35, .external_lex_state = 12}, - [1428] = {.lex_state = 35, .external_lex_state = 12}, - [1429] = {.lex_state = 35, .external_lex_state = 11}, - [1430] = {.lex_state = 35, .external_lex_state = 11}, - [1431] = {.lex_state = 35, .external_lex_state = 13}, - [1432] = {.lex_state = 35, .external_lex_state = 11}, - [1433] = {.lex_state = 35, .external_lex_state = 12}, - [1434] = {.lex_state = 35, .external_lex_state = 12}, - [1435] = {.lex_state = 35, .external_lex_state = 12}, - [1436] = {.lex_state = 35, .external_lex_state = 13}, - [1437] = {.lex_state = 35, .external_lex_state = 13}, - [1438] = {.lex_state = 35, .external_lex_state = 12}, - [1439] = {.lex_state = 35, .external_lex_state = 12}, - [1440] = {.lex_state = 35, .external_lex_state = 13}, - [1441] = {.lex_state = 35, .external_lex_state = 13}, - [1442] = {.lex_state = 35, .external_lex_state = 13}, - [1443] = {.lex_state = 35, .external_lex_state = 13}, - [1444] = {.lex_state = 35, .external_lex_state = 13}, - [1445] = {.lex_state = 35, .external_lex_state = 12}, - [1446] = {.lex_state = 35, .external_lex_state = 13}, - [1447] = {.lex_state = 35, .external_lex_state = 12}, - [1448] = {.lex_state = 35, .external_lex_state = 12}, - [1449] = {.lex_state = 35, .external_lex_state = 11}, - [1450] = {.lex_state = 35, .external_lex_state = 13}, - [1451] = {.lex_state = 35, .external_lex_state = 13}, - [1452] = {.lex_state = 35, .external_lex_state = 12}, - [1453] = {.lex_state = 35, .external_lex_state = 13}, - [1454] = {.lex_state = 35, .external_lex_state = 13}, - [1455] = {.lex_state = 35, .external_lex_state = 11}, - [1456] = {.lex_state = 35, .external_lex_state = 11}, - [1457] = {.lex_state = 35, .external_lex_state = 11}, - [1458] = {.lex_state = 35, .external_lex_state = 11}, - [1459] = {.lex_state = 35, .external_lex_state = 11}, - [1460] = {.lex_state = 35, .external_lex_state = 11}, - [1461] = {.lex_state = 35, .external_lex_state = 12}, - [1462] = {.lex_state = 35, .external_lex_state = 11}, - [1463] = {.lex_state = 35, .external_lex_state = 12}, - [1464] = {.lex_state = 35, .external_lex_state = 11}, - [1465] = {.lex_state = 35, .external_lex_state = 11}, - [1466] = {.lex_state = 35, .external_lex_state = 12}, - [1467] = {.lex_state = 35, .external_lex_state = 13}, - [1468] = {.lex_state = 35, .external_lex_state = 12}, - [1469] = {.lex_state = 35, .external_lex_state = 11}, - [1470] = {.lex_state = 35, .external_lex_state = 12}, - [1471] = {.lex_state = 34, .external_lex_state = 9}, - [1472] = {.lex_state = 35, .external_lex_state = 13}, - [1473] = {.lex_state = 35, .external_lex_state = 11}, - [1474] = {.lex_state = 35, .external_lex_state = 12}, - [1475] = {.lex_state = 34, .external_lex_state = 9}, - [1476] = {.lex_state = 35, .external_lex_state = 12}, - [1477] = {.lex_state = 34, .external_lex_state = 9}, - [1478] = {.lex_state = 34, .external_lex_state = 9}, - [1479] = {.lex_state = 35, .external_lex_state = 8}, - [1480] = {.lex_state = 35, .external_lex_state = 11}, - [1481] = {.lex_state = 35, .external_lex_state = 12}, - [1482] = {.lex_state = 35, .external_lex_state = 12}, - [1483] = {.lex_state = 35, .external_lex_state = 8}, - [1484] = {.lex_state = 35, .external_lex_state = 11}, - [1485] = {.lex_state = 35, .external_lex_state = 11}, - [1486] = {.lex_state = 35, .external_lex_state = 7}, - [1487] = {.lex_state = 35, .external_lex_state = 11}, - [1488] = {.lex_state = 35, .external_lex_state = 11}, - [1489] = {.lex_state = 35, .external_lex_state = 11}, - [1490] = {.lex_state = 35, .external_lex_state = 11}, - [1491] = {.lex_state = 35, .external_lex_state = 12}, - [1492] = {.lex_state = 35, .external_lex_state = 11}, - [1493] = {.lex_state = 35, .external_lex_state = 13}, - [1494] = {.lex_state = 35, .external_lex_state = 11}, - [1495] = {.lex_state = 35, .external_lex_state = 11}, - [1496] = {.lex_state = 35, .external_lex_state = 11}, - [1497] = {.lex_state = 41, .external_lex_state = 12}, - [1498] = {.lex_state = 41, .external_lex_state = 12}, - [1499] = {.lex_state = 35, .external_lex_state = 12}, - [1500] = {.lex_state = 35, .external_lex_state = 12}, - [1501] = {.lex_state = 35, .external_lex_state = 12}, - [1502] = {.lex_state = 35, .external_lex_state = 12}, - [1503] = {.lex_state = 35, .external_lex_state = 11}, - [1504] = {.lex_state = 35, .external_lex_state = 12}, - [1505] = {.lex_state = 35, .external_lex_state = 12}, - [1506] = {.lex_state = 35, .external_lex_state = 12}, - [1507] = {.lex_state = 35, .external_lex_state = 12}, - [1508] = {.lex_state = 35, .external_lex_state = 13}, - [1509] = {.lex_state = 35, .external_lex_state = 11}, - [1510] = {.lex_state = 35, .external_lex_state = 11}, - [1511] = {.lex_state = 35, .external_lex_state = 11}, - [1512] = {.lex_state = 35, .external_lex_state = 7}, - [1513] = {.lex_state = 35, .external_lex_state = 13}, - [1514] = {.lex_state = 35, .external_lex_state = 13}, - [1515] = {.lex_state = 41, .external_lex_state = 12}, - [1516] = {.lex_state = 35, .external_lex_state = 13}, - [1517] = {.lex_state = 35, .external_lex_state = 13}, - [1518] = {.lex_state = 35, .external_lex_state = 13}, - [1519] = {.lex_state = 35, .external_lex_state = 12}, - [1520] = {.lex_state = 35, .external_lex_state = 13}, - [1521] = {.lex_state = 35, .external_lex_state = 13}, - [1522] = {.lex_state = 35, .external_lex_state = 13}, - [1523] = {.lex_state = 35, .external_lex_state = 12}, - [1524] = {.lex_state = 35, .external_lex_state = 12}, - [1525] = {.lex_state = 41, .external_lex_state = 10}, - [1526] = {.lex_state = 35, .external_lex_state = 13}, - [1527] = {.lex_state = 35, .external_lex_state = 13}, - [1528] = {.lex_state = 35, .external_lex_state = 12}, - [1529] = {.lex_state = 35, .external_lex_state = 12}, - [1530] = {.lex_state = 35, .external_lex_state = 13}, - [1531] = {.lex_state = 41, .external_lex_state = 10}, - [1532] = {.lex_state = 35, .external_lex_state = 12}, - [1533] = {.lex_state = 35, .external_lex_state = 13}, - [1534] = {.lex_state = 35, .external_lex_state = 13}, - [1535] = {.lex_state = 35, .external_lex_state = 12}, - [1536] = {.lex_state = 35, .external_lex_state = 12}, - [1537] = {.lex_state = 35, .external_lex_state = 12}, - [1538] = {.lex_state = 35, .external_lex_state = 13}, - [1539] = {.lex_state = 35, .external_lex_state = 12}, - [1540] = {.lex_state = 35, .external_lex_state = 12}, - [1541] = {.lex_state = 35, .external_lex_state = 13}, - [1542] = {.lex_state = 35, .external_lex_state = 13}, - [1543] = {.lex_state = 35, .external_lex_state = 12}, - [1544] = {.lex_state = 35, .external_lex_state = 12}, - [1545] = {.lex_state = 35, .external_lex_state = 12}, - [1546] = {.lex_state = 35, .external_lex_state = 12}, - [1547] = {.lex_state = 35, .external_lex_state = 12}, - [1548] = {.lex_state = 35, .external_lex_state = 12}, - [1549] = {.lex_state = 35, .external_lex_state = 13}, - [1550] = {.lex_state = 35, .external_lex_state = 13}, - [1551] = {.lex_state = 35, .external_lex_state = 12}, - [1552] = {.lex_state = 35, .external_lex_state = 13}, - [1553] = {.lex_state = 35, .external_lex_state = 12}, - [1554] = {.lex_state = 35, .external_lex_state = 13}, - [1555] = {.lex_state = 35, .external_lex_state = 12}, - [1556] = {.lex_state = 35, .external_lex_state = 13}, - [1557] = {.lex_state = 35, .external_lex_state = 13}, - [1558] = {.lex_state = 35, .external_lex_state = 13}, - [1559] = {.lex_state = 35, .external_lex_state = 13}, - [1560] = {.lex_state = 35, .external_lex_state = 13}, - [1561] = {.lex_state = 35, .external_lex_state = 13}, - [1562] = {.lex_state = 35, .external_lex_state = 12}, - [1563] = {.lex_state = 35, .external_lex_state = 13}, - [1564] = {.lex_state = 35, .external_lex_state = 13}, - [1565] = {.lex_state = 35, .external_lex_state = 13}, - [1566] = {.lex_state = 35, .external_lex_state = 12}, - [1567] = {.lex_state = 35, .external_lex_state = 12}, - [1568] = {.lex_state = 35, .external_lex_state = 12}, - [1569] = {.lex_state = 35, .external_lex_state = 13}, - [1570] = {.lex_state = 35, .external_lex_state = 13}, - [1571] = {.lex_state = 35, .external_lex_state = 13}, - [1572] = {.lex_state = 35, .external_lex_state = 13}, - [1573] = {.lex_state = 35, .external_lex_state = 12}, - [1574] = {.lex_state = 35, .external_lex_state = 13}, - [1575] = {.lex_state = 41, .external_lex_state = 13}, - [1576] = {.lex_state = 35, .external_lex_state = 13}, - [1577] = {.lex_state = 35, .external_lex_state = 13}, - [1578] = {.lex_state = 41, .external_lex_state = 13}, - [1579] = {.lex_state = 35, .external_lex_state = 12}, - [1580] = {.lex_state = 35, .external_lex_state = 12}, - [1581] = {.lex_state = 35, .external_lex_state = 12}, - [1582] = {.lex_state = 35, .external_lex_state = 12}, - [1583] = {.lex_state = 35, .external_lex_state = 13}, - [1584] = {.lex_state = 35, .external_lex_state = 12}, - [1585] = {.lex_state = 35, .external_lex_state = 13}, - [1586] = {.lex_state = 35, .external_lex_state = 12}, - [1587] = {.lex_state = 35, .external_lex_state = 12}, - [1588] = {.lex_state = 35, .external_lex_state = 12}, - [1589] = {.lex_state = 35, .external_lex_state = 12}, - [1590] = {.lex_state = 35, .external_lex_state = 12}, - [1591] = {.lex_state = 35, .external_lex_state = 12}, - [1592] = {.lex_state = 35, .external_lex_state = 12}, - [1593] = {.lex_state = 35, .external_lex_state = 12}, - [1594] = {.lex_state = 35, .external_lex_state = 12}, - [1595] = {.lex_state = 35, .external_lex_state = 12}, - [1596] = {.lex_state = 35, .external_lex_state = 12}, - [1597] = {.lex_state = 35, .external_lex_state = 12}, - [1598] = {.lex_state = 35, .external_lex_state = 12}, - [1599] = {.lex_state = 35, .external_lex_state = 13}, - [1600] = {.lex_state = 35, .external_lex_state = 13}, - [1601] = {.lex_state = 35, .external_lex_state = 12}, - [1602] = {.lex_state = 35, .external_lex_state = 13}, - [1603] = {.lex_state = 35, .external_lex_state = 13}, - [1604] = {.lex_state = 35, .external_lex_state = 13}, - [1605] = {.lex_state = 41, .external_lex_state = 12}, - [1606] = {.lex_state = 35, .external_lex_state = 13}, - [1607] = {.lex_state = 35, .external_lex_state = 13}, - [1608] = {.lex_state = 34, .external_lex_state = 11}, - [1609] = {.lex_state = 35, .external_lex_state = 10}, - [1610] = {.lex_state = 34, .external_lex_state = 11}, - [1611] = {.lex_state = 35, .external_lex_state = 12}, - [1612] = {.lex_state = 34, .external_lex_state = 11}, - [1613] = {.lex_state = 34, .external_lex_state = 11}, - [1614] = {.lex_state = 34, .external_lex_state = 11}, - [1615] = {.lex_state = 34, .external_lex_state = 11}, - [1616] = {.lex_state = 34, .external_lex_state = 11}, - [1617] = {.lex_state = 34, .external_lex_state = 11}, - [1618] = {.lex_state = 34, .external_lex_state = 11}, - [1619] = {.lex_state = 34, .external_lex_state = 11}, - [1620] = {.lex_state = 34, .external_lex_state = 11}, - [1621] = {.lex_state = 34, .external_lex_state = 11}, - [1622] = {.lex_state = 34, .external_lex_state = 11}, - [1623] = {.lex_state = 34, .external_lex_state = 11}, - [1624] = {.lex_state = 35, .external_lex_state = 11}, - [1625] = {.lex_state = 35, .external_lex_state = 11}, - [1626] = {.lex_state = 35, .external_lex_state = 11}, - [1627] = {.lex_state = 35, .external_lex_state = 11}, - [1628] = {.lex_state = 35, .external_lex_state = 11}, - [1629] = {.lex_state = 35, .external_lex_state = 11}, - [1630] = {.lex_state = 35, .external_lex_state = 10}, - [1631] = {.lex_state = 35, .external_lex_state = 10}, - [1632] = {.lex_state = 35, .external_lex_state = 10}, - [1633] = {.lex_state = 35, .external_lex_state = 10}, - [1634] = {.lex_state = 35, .external_lex_state = 10}, - [1635] = {.lex_state = 57, .external_lex_state = 9}, - [1636] = {.lex_state = 57, .external_lex_state = 10}, - [1637] = {.lex_state = 57, .external_lex_state = 10}, - [1638] = {.lex_state = 35, .external_lex_state = 11}, - [1639] = {.lex_state = 35, .external_lex_state = 13}, - [1640] = {.lex_state = 39, .external_lex_state = 9}, - [1641] = {.lex_state = 35, .external_lex_state = 13}, - [1642] = {.lex_state = 35, .external_lex_state = 13}, - [1643] = {.lex_state = 57, .external_lex_state = 12}, - [1644] = {.lex_state = 35, .external_lex_state = 13}, - [1645] = {.lex_state = 57, .external_lex_state = 13}, - [1646] = {.lex_state = 39, .external_lex_state = 9}, - [1647] = {.lex_state = 35, .external_lex_state = 11}, - [1648] = {.lex_state = 35, .external_lex_state = 11}, - [1649] = {.lex_state = 35, .external_lex_state = 11}, - [1650] = {.lex_state = 35, .external_lex_state = 11}, - [1651] = {.lex_state = 35, .external_lex_state = 12}, - [1652] = {.lex_state = 35, .external_lex_state = 11}, - [1653] = {.lex_state = 35, .external_lex_state = 11}, - [1654] = {.lex_state = 35, .external_lex_state = 11}, - [1655] = {.lex_state = 35, .external_lex_state = 11}, - [1656] = {.lex_state = 57, .external_lex_state = 13}, - [1657] = {.lex_state = 35, .external_lex_state = 11}, - [1658] = {.lex_state = 35, .external_lex_state = 11}, - [1659] = {.lex_state = 35, .external_lex_state = 11}, - [1660] = {.lex_state = 35, .external_lex_state = 11}, - [1661] = {.lex_state = 35, .external_lex_state = 11}, - [1662] = {.lex_state = 35, .external_lex_state = 11}, - [1663] = {.lex_state = 35, .external_lex_state = 11}, - [1664] = {.lex_state = 35, .external_lex_state = 11}, - [1665] = {.lex_state = 35, .external_lex_state = 11}, - [1666] = {.lex_state = 39, .external_lex_state = 9}, - [1667] = {.lex_state = 35, .external_lex_state = 11}, - [1668] = {.lex_state = 35, .external_lex_state = 11}, - [1669] = {.lex_state = 35, .external_lex_state = 11}, - [1670] = {.lex_state = 35, .external_lex_state = 12}, - [1671] = {.lex_state = 39, .external_lex_state = 9}, - [1672] = {.lex_state = 35, .external_lex_state = 11}, - [1673] = {.lex_state = 35, .external_lex_state = 13}, - [1674] = {.lex_state = 35, .external_lex_state = 11}, - [1675] = {.lex_state = 35, .external_lex_state = 13}, - [1676] = {.lex_state = 35, .external_lex_state = 12}, - [1677] = {.lex_state = 35, .external_lex_state = 11}, - [1678] = {.lex_state = 35, .external_lex_state = 12}, - [1679] = {.lex_state = 35, .external_lex_state = 12}, - [1680] = {.lex_state = 35, .external_lex_state = 13}, - [1681] = {.lex_state = 39, .external_lex_state = 9}, - [1682] = {.lex_state = 35, .external_lex_state = 11}, - [1683] = {.lex_state = 35, .external_lex_state = 13}, - [1684] = {.lex_state = 35, .external_lex_state = 11}, - [1685] = {.lex_state = 35, .external_lex_state = 13}, - [1686] = {.lex_state = 35, .external_lex_state = 11}, - [1687] = {.lex_state = 35, .external_lex_state = 11}, - [1688] = {.lex_state = 39, .external_lex_state = 9}, - [1689] = {.lex_state = 57, .external_lex_state = 12}, - [1690] = {.lex_state = 31, .external_lex_state = 11}, - [1691] = {.lex_state = 31, .external_lex_state = 11}, - [1692] = {.lex_state = 39, .external_lex_state = 11}, - [1693] = {.lex_state = 39, .external_lex_state = 11}, - [1694] = {.lex_state = 31, .external_lex_state = 11}, - [1695] = {.lex_state = 39, .external_lex_state = 11}, - [1696] = {.lex_state = 31, .external_lex_state = 11}, - [1697] = {.lex_state = 31, .external_lex_state = 11}, - [1698] = {.lex_state = 31, .external_lex_state = 11}, - [1699] = {.lex_state = 31, .external_lex_state = 11}, - [1700] = {.lex_state = 31, .external_lex_state = 11}, - [1701] = {.lex_state = 31, .external_lex_state = 11}, - [1702] = {.lex_state = 31, .external_lex_state = 11}, - [1703] = {.lex_state = 31, .external_lex_state = 11}, - [1704] = {.lex_state = 31, .external_lex_state = 11}, - [1705] = {.lex_state = 31, .external_lex_state = 11}, - [1706] = {.lex_state = 31, .external_lex_state = 11}, - [1707] = {.lex_state = 39, .external_lex_state = 11}, - [1708] = {.lex_state = 39, .external_lex_state = 11}, - [1709] = {.lex_state = 31, .external_lex_state = 11}, - [1710] = {.lex_state = 31, .external_lex_state = 11}, - [1711] = {.lex_state = 31, .external_lex_state = 11}, - [1712] = {.lex_state = 39, .external_lex_state = 11}, - [1713] = {.lex_state = 31, .external_lex_state = 11}, - [1714] = {.lex_state = 39, .external_lex_state = 9}, - [1715] = {.lex_state = 31, .external_lex_state = 11}, - [1716] = {.lex_state = 39, .external_lex_state = 11}, - [1717] = {.lex_state = 39, .external_lex_state = 11}, - [1718] = {.lex_state = 31, .external_lex_state = 13}, - [1719] = {.lex_state = 31, .external_lex_state = 11}, - [1720] = {.lex_state = 31, .external_lex_state = 13}, - [1721] = {.lex_state = 31, .external_lex_state = 11}, - [1722] = {.lex_state = 39, .external_lex_state = 11}, - [1723] = {.lex_state = 31, .external_lex_state = 13}, - [1724] = {.lex_state = 31, .external_lex_state = 11}, - [1725] = {.lex_state = 31, .external_lex_state = 11}, - [1726] = {.lex_state = 57, .external_lex_state = 10}, - [1727] = {.lex_state = 57, .external_lex_state = 10}, + [970] = {.lex_state = 36, .external_lex_state = 6}, + [971] = {.lex_state = 36, .external_lex_state = 10}, + [972] = {.lex_state = 36, .external_lex_state = 6}, + [973] = {.lex_state = 36, .external_lex_state = 6}, + [974] = {.lex_state = 36, .external_lex_state = 9}, + [975] = {.lex_state = 36, .external_lex_state = 6}, + [976] = {.lex_state = 36, .external_lex_state = 10}, + [977] = {.lex_state = 36, .external_lex_state = 4}, + [978] = {.lex_state = 36, .external_lex_state = 4}, + [979] = {.lex_state = 36, .external_lex_state = 4}, + [980] = {.lex_state = 36, .external_lex_state = 6}, + [981] = {.lex_state = 36, .external_lex_state = 10}, + [982] = {.lex_state = 36, .external_lex_state = 9}, + [983] = {.lex_state = 36, .external_lex_state = 10}, + [984] = {.lex_state = 36, .external_lex_state = 6}, + [985] = {.lex_state = 36, .external_lex_state = 10}, + [986] = {.lex_state = 36, .external_lex_state = 9}, + [987] = {.lex_state = 36, .external_lex_state = 10}, + [988] = {.lex_state = 36, .external_lex_state = 10}, + [989] = {.lex_state = 36, .external_lex_state = 10}, + [990] = {.lex_state = 36, .external_lex_state = 9}, + [991] = {.lex_state = 36, .external_lex_state = 10}, + [992] = {.lex_state = 36, .external_lex_state = 10}, + [993] = {.lex_state = 36, .external_lex_state = 10}, + [994] = {.lex_state = 36, .external_lex_state = 11}, + [995] = {.lex_state = 36, .external_lex_state = 10}, + [996] = {.lex_state = 36, .external_lex_state = 2}, + [997] = {.lex_state = 36, .external_lex_state = 10}, + [998] = {.lex_state = 36, .external_lex_state = 10}, + [999] = {.lex_state = 36, .external_lex_state = 10}, + [1000] = {.lex_state = 36, .external_lex_state = 10}, + [1001] = {.lex_state = 36, .external_lex_state = 10}, + [1002] = {.lex_state = 36, .external_lex_state = 10}, + [1003] = {.lex_state = 36, .external_lex_state = 10}, + [1004] = {.lex_state = 36, .external_lex_state = 9}, + [1005] = {.lex_state = 36, .external_lex_state = 10}, + [1006] = {.lex_state = 36, .external_lex_state = 10}, + [1007] = {.lex_state = 36, .external_lex_state = 9}, + [1008] = {.lex_state = 36, .external_lex_state = 12}, + [1009] = {.lex_state = 36, .external_lex_state = 9}, + [1010] = {.lex_state = 36, .external_lex_state = 9}, + [1011] = {.lex_state = 36, .external_lex_state = 2}, + [1012] = {.lex_state = 36, .external_lex_state = 8}, + [1013] = {.lex_state = 36, .external_lex_state = 10}, + [1014] = {.lex_state = 36, .external_lex_state = 7}, + [1015] = {.lex_state = 36, .external_lex_state = 10}, + [1016] = {.lex_state = 36, .external_lex_state = 8}, + [1017] = {.lex_state = 36, .external_lex_state = 9}, + [1018] = {.lex_state = 36, .external_lex_state = 10}, + [1019] = {.lex_state = 36, .external_lex_state = 10}, + [1020] = {.lex_state = 36, .external_lex_state = 7}, + [1021] = {.lex_state = 36, .external_lex_state = 8}, + [1022] = {.lex_state = 36, .external_lex_state = 10}, + [1023] = {.lex_state = 36, .external_lex_state = 10}, + [1024] = {.lex_state = 36, .external_lex_state = 10}, + [1025] = {.lex_state = 36, .external_lex_state = 9}, + [1026] = {.lex_state = 36, .external_lex_state = 10}, + [1027] = {.lex_state = 36, .external_lex_state = 9}, + [1028] = {.lex_state = 36, .external_lex_state = 9}, + [1029] = {.lex_state = 36, .external_lex_state = 10}, + [1030] = {.lex_state = 36, .external_lex_state = 10}, + [1031] = {.lex_state = 36, .external_lex_state = 10}, + [1032] = {.lex_state = 36, .external_lex_state = 11}, + [1033] = {.lex_state = 36, .external_lex_state = 13}, + [1034] = {.lex_state = 36, .external_lex_state = 12}, + [1035] = {.lex_state = 36, .external_lex_state = 13}, + [1036] = {.lex_state = 36, .external_lex_state = 7}, + [1037] = {.lex_state = 36, .external_lex_state = 10}, + [1038] = {.lex_state = 36, .external_lex_state = 9}, + [1039] = {.lex_state = 36, .external_lex_state = 2}, + [1040] = {.lex_state = 36, .external_lex_state = 11}, + [1041] = {.lex_state = 41, .external_lex_state = 9}, + [1042] = {.lex_state = 41, .external_lex_state = 10}, + [1043] = {.lex_state = 41, .external_lex_state = 10}, + [1044] = {.lex_state = 36, .external_lex_state = 13}, + [1045] = {.lex_state = 36, .external_lex_state = 10}, + [1046] = {.lex_state = 36, .external_lex_state = 10}, + [1047] = {.lex_state = 36, .external_lex_state = 9}, + [1048] = {.lex_state = 36, .external_lex_state = 9}, + [1049] = {.lex_state = 36, .external_lex_state = 12}, + [1050] = {.lex_state = 36, .external_lex_state = 7}, + [1051] = {.lex_state = 36, .external_lex_state = 12}, + [1052] = {.lex_state = 36, .external_lex_state = 13}, + [1053] = {.lex_state = 36, .external_lex_state = 13}, + [1054] = {.lex_state = 41, .external_lex_state = 10}, + [1055] = {.lex_state = 41, .external_lex_state = 13}, + [1056] = {.lex_state = 41, .external_lex_state = 13}, + [1057] = {.lex_state = 36, .external_lex_state = 13}, + [1058] = {.lex_state = 36, .external_lex_state = 4}, + [1059] = {.lex_state = 36, .external_lex_state = 13}, + [1060] = {.lex_state = 41, .external_lex_state = 10}, + [1061] = {.lex_state = 36, .external_lex_state = 6}, + [1062] = {.lex_state = 36, .external_lex_state = 7}, + [1063] = {.lex_state = 36, .external_lex_state = 13}, + [1064] = {.lex_state = 36, .external_lex_state = 13}, + [1065] = {.lex_state = 36, .external_lex_state = 6}, + [1066] = {.lex_state = 41, .external_lex_state = 10}, + [1067] = {.lex_state = 36, .external_lex_state = 13}, + [1068] = {.lex_state = 36, .external_lex_state = 13}, + [1069] = {.lex_state = 41, .external_lex_state = 9}, + [1070] = {.lex_state = 41, .external_lex_state = 10}, + [1071] = {.lex_state = 36, .external_lex_state = 10}, + [1072] = {.lex_state = 36, .external_lex_state = 12}, + [1073] = {.lex_state = 36, .external_lex_state = 12}, + [1074] = {.lex_state = 36, .external_lex_state = 12}, + [1075] = {.lex_state = 36, .external_lex_state = 12}, + [1076] = {.lex_state = 36, .external_lex_state = 12}, + [1077] = {.lex_state = 36, .external_lex_state = 12}, + [1078] = {.lex_state = 36, .external_lex_state = 12}, + [1079] = {.lex_state = 36, .external_lex_state = 11}, + [1080] = {.lex_state = 36, .external_lex_state = 12}, + [1081] = {.lex_state = 36, .external_lex_state = 8}, + [1082] = {.lex_state = 36, .external_lex_state = 12}, + [1083] = {.lex_state = 36, .external_lex_state = 13}, + [1084] = {.lex_state = 36, .external_lex_state = 11}, + [1085] = {.lex_state = 36, .external_lex_state = 6}, + [1086] = {.lex_state = 36, .external_lex_state = 11}, + [1087] = {.lex_state = 36, .external_lex_state = 8}, + [1088] = {.lex_state = 36, .external_lex_state = 11}, + [1089] = {.lex_state = 36, .external_lex_state = 11}, + [1090] = {.lex_state = 36, .external_lex_state = 11}, + [1091] = {.lex_state = 36, .external_lex_state = 13}, + [1092] = {.lex_state = 36, .external_lex_state = 13}, + [1093] = {.lex_state = 36, .external_lex_state = 12}, + [1094] = {.lex_state = 36, .external_lex_state = 10}, + [1095] = {.lex_state = 36, .external_lex_state = 11}, + [1096] = {.lex_state = 36, .external_lex_state = 11}, + [1097] = {.lex_state = 36, .external_lex_state = 12}, + [1098] = {.lex_state = 41, .external_lex_state = 10}, + [1099] = {.lex_state = 36, .external_lex_state = 8}, + [1100] = {.lex_state = 36, .external_lex_state = 4}, + [1101] = {.lex_state = 41, .external_lex_state = 10}, + [1102] = {.lex_state = 36, .external_lex_state = 13}, + [1103] = {.lex_state = 36, .external_lex_state = 9}, + [1104] = {.lex_state = 36, .external_lex_state = 6}, + [1105] = {.lex_state = 36, .external_lex_state = 11}, + [1106] = {.lex_state = 36, .external_lex_state = 7}, + [1107] = {.lex_state = 36, .external_lex_state = 11}, + [1108] = {.lex_state = 36, .external_lex_state = 10}, + [1109] = {.lex_state = 36, .external_lex_state = 10}, + [1110] = {.lex_state = 36, .external_lex_state = 9}, + [1111] = {.lex_state = 36, .external_lex_state = 10}, + [1112] = {.lex_state = 36, .external_lex_state = 13}, + [1113] = {.lex_state = 36, .external_lex_state = 10}, + [1114] = {.lex_state = 36, .external_lex_state = 10}, + [1115] = {.lex_state = 36, .external_lex_state = 9}, + [1116] = {.lex_state = 36, .external_lex_state = 10}, + [1117] = {.lex_state = 36, .external_lex_state = 10}, + [1118] = {.lex_state = 36, .external_lex_state = 10}, + [1119] = {.lex_state = 36, .external_lex_state = 10}, + [1120] = {.lex_state = 36, .external_lex_state = 9}, + [1121] = {.lex_state = 36, .external_lex_state = 9}, + [1122] = {.lex_state = 36, .external_lex_state = 9}, + [1123] = {.lex_state = 36, .external_lex_state = 10}, + [1124] = {.lex_state = 36, .external_lex_state = 10}, + [1125] = {.lex_state = 36, .external_lex_state = 10}, + [1126] = {.lex_state = 36, .external_lex_state = 10}, + [1127] = {.lex_state = 36, .external_lex_state = 9}, + [1128] = {.lex_state = 36, .external_lex_state = 9}, + [1129] = {.lex_state = 36, .external_lex_state = 10}, + [1130] = {.lex_state = 36, .external_lex_state = 10}, + [1131] = {.lex_state = 36, .external_lex_state = 13}, + [1132] = {.lex_state = 36, .external_lex_state = 9}, + [1133] = {.lex_state = 36, .external_lex_state = 10}, + [1134] = {.lex_state = 36, .external_lex_state = 10}, + [1135] = {.lex_state = 36, .external_lex_state = 10}, + [1136] = {.lex_state = 36, .external_lex_state = 13}, + [1137] = {.lex_state = 36, .external_lex_state = 13}, + [1138] = {.lex_state = 36, .external_lex_state = 13}, + [1139] = {.lex_state = 41, .external_lex_state = 13}, + [1140] = {.lex_state = 36, .external_lex_state = 13}, + [1141] = {.lex_state = 36, .external_lex_state = 10}, + [1142] = {.lex_state = 41, .external_lex_state = 13}, + [1143] = {.lex_state = 36, .external_lex_state = 10}, + [1144] = {.lex_state = 36, .external_lex_state = 9}, + [1145] = {.lex_state = 36, .external_lex_state = 10}, + [1146] = {.lex_state = 36, .external_lex_state = 10}, + [1147] = {.lex_state = 36, .external_lex_state = 10}, + [1148] = {.lex_state = 36, .external_lex_state = 9}, + [1149] = {.lex_state = 36, .external_lex_state = 10}, + [1150] = {.lex_state = 36, .external_lex_state = 10}, + [1151] = {.lex_state = 36, .external_lex_state = 10}, + [1152] = {.lex_state = 36, .external_lex_state = 13}, + [1153] = {.lex_state = 36, .external_lex_state = 13}, + [1154] = {.lex_state = 36, .external_lex_state = 9}, + [1155] = {.lex_state = 36, .external_lex_state = 10}, + [1156] = {.lex_state = 36, .external_lex_state = 9}, + [1157] = {.lex_state = 36, .external_lex_state = 13}, + [1158] = {.lex_state = 36, .external_lex_state = 10}, + [1159] = {.lex_state = 41, .external_lex_state = 13}, + [1160] = {.lex_state = 41, .external_lex_state = 13}, + [1161] = {.lex_state = 36, .external_lex_state = 12}, + [1162] = {.lex_state = 36, .external_lex_state = 9}, + [1163] = {.lex_state = 36, .external_lex_state = 10}, + [1164] = {.lex_state = 36, .external_lex_state = 10}, + [1165] = {.lex_state = 36, .external_lex_state = 9}, + [1166] = {.lex_state = 36, .external_lex_state = 10}, + [1167] = {.lex_state = 36, .external_lex_state = 9}, + [1168] = {.lex_state = 36, .external_lex_state = 13}, + [1169] = {.lex_state = 36, .external_lex_state = 13}, + [1170] = {.lex_state = 36, .external_lex_state = 10}, + [1171] = {.lex_state = 36, .external_lex_state = 9}, + [1172] = {.lex_state = 36, .external_lex_state = 12}, + [1173] = {.lex_state = 41, .external_lex_state = 12}, + [1174] = {.lex_state = 36, .external_lex_state = 9}, + [1175] = {.lex_state = 36, .external_lex_state = 9}, + [1176] = {.lex_state = 36, .external_lex_state = 7}, + [1177] = {.lex_state = 36, .external_lex_state = 9}, + [1178] = {.lex_state = 36, .external_lex_state = 10}, + [1179] = {.lex_state = 36, .external_lex_state = 10}, + [1180] = {.lex_state = 36, .external_lex_state = 13}, + [1181] = {.lex_state = 36, .external_lex_state = 10}, + [1182] = {.lex_state = 36, .external_lex_state = 9}, + [1183] = {.lex_state = 36, .external_lex_state = 10}, + [1184] = {.lex_state = 41, .external_lex_state = 12}, + [1185] = {.lex_state = 36, .external_lex_state = 9}, + [1186] = {.lex_state = 36, .external_lex_state = 11}, + [1187] = {.lex_state = 36, .external_lex_state = 10}, + [1188] = {.lex_state = 36, .external_lex_state = 10}, + [1189] = {.lex_state = 41, .external_lex_state = 12}, + [1190] = {.lex_state = 41, .external_lex_state = 12}, + [1191] = {.lex_state = 36, .external_lex_state = 12}, + [1192] = {.lex_state = 36, .external_lex_state = 10}, + [1193] = {.lex_state = 36, .external_lex_state = 12}, + [1194] = {.lex_state = 36, .external_lex_state = 12}, + [1195] = {.lex_state = 36, .external_lex_state = 10}, + [1196] = {.lex_state = 36, .external_lex_state = 10}, + [1197] = {.lex_state = 36, .external_lex_state = 10}, + [1198] = {.lex_state = 36, .external_lex_state = 10}, + [1199] = {.lex_state = 36, .external_lex_state = 10}, + [1200] = {.lex_state = 36, .external_lex_state = 12}, + [1201] = {.lex_state = 36, .external_lex_state = 10}, + [1202] = {.lex_state = 36, .external_lex_state = 10}, + [1203] = {.lex_state = 36, .external_lex_state = 9}, + [1204] = {.lex_state = 36, .external_lex_state = 12}, + [1205] = {.lex_state = 36, .external_lex_state = 9}, + [1206] = {.lex_state = 36, .external_lex_state = 12}, + [1207] = {.lex_state = 36, .external_lex_state = 10}, + [1208] = {.lex_state = 36, .external_lex_state = 10}, + [1209] = {.lex_state = 36, .external_lex_state = 12}, + [1210] = {.lex_state = 36, .external_lex_state = 12}, + [1211] = {.lex_state = 36, .external_lex_state = 9}, + [1212] = {.lex_state = 36, .external_lex_state = 10}, + [1213] = {.lex_state = 36, .external_lex_state = 10}, + [1214] = {.lex_state = 36, .external_lex_state = 10}, + [1215] = {.lex_state = 36, .external_lex_state = 10}, + [1216] = {.lex_state = 36, .external_lex_state = 10}, + [1217] = {.lex_state = 36, .external_lex_state = 10}, + [1218] = {.lex_state = 36, .external_lex_state = 10}, + [1219] = {.lex_state = 36, .external_lex_state = 10}, + [1220] = {.lex_state = 36, .external_lex_state = 13}, + [1221] = {.lex_state = 36, .external_lex_state = 13}, + [1222] = {.lex_state = 36, .external_lex_state = 13}, + [1223] = {.lex_state = 36, .external_lex_state = 13}, + [1224] = {.lex_state = 36, .external_lex_state = 10}, + [1225] = {.lex_state = 36, .external_lex_state = 12}, + [1226] = {.lex_state = 36, .external_lex_state = 9}, + [1227] = {.lex_state = 36, .external_lex_state = 10}, + [1228] = {.lex_state = 36, .external_lex_state = 10}, + [1229] = {.lex_state = 36, .external_lex_state = 2}, + [1230] = {.lex_state = 36, .external_lex_state = 12}, + [1231] = {.lex_state = 36, .external_lex_state = 12}, + [1232] = {.lex_state = 36, .external_lex_state = 13}, + [1233] = {.lex_state = 36, .external_lex_state = 10}, + [1234] = {.lex_state = 36, .external_lex_state = 9}, + [1235] = {.lex_state = 36, .external_lex_state = 10}, + [1236] = {.lex_state = 36, .external_lex_state = 9}, + [1237] = {.lex_state = 36, .external_lex_state = 10}, + [1238] = {.lex_state = 36, .external_lex_state = 10}, + [1239] = {.lex_state = 36, .external_lex_state = 13}, + [1240] = {.lex_state = 36, .external_lex_state = 10}, + [1241] = {.lex_state = 41, .external_lex_state = 13}, + [1242] = {.lex_state = 36, .external_lex_state = 9}, + [1243] = {.lex_state = 36, .external_lex_state = 9}, + [1244] = {.lex_state = 36, .external_lex_state = 10}, + [1245] = {.lex_state = 36, .external_lex_state = 10}, + [1246] = {.lex_state = 36, .external_lex_state = 13}, + [1247] = {.lex_state = 36, .external_lex_state = 10}, + [1248] = {.lex_state = 36, .external_lex_state = 13}, + [1249] = {.lex_state = 36, .external_lex_state = 13}, + [1250] = {.lex_state = 36, .external_lex_state = 10}, + [1251] = {.lex_state = 36, .external_lex_state = 10}, + [1252] = {.lex_state = 36, .external_lex_state = 10}, + [1253] = {.lex_state = 36, .external_lex_state = 9}, + [1254] = {.lex_state = 36, .external_lex_state = 10}, + [1255] = {.lex_state = 36, .external_lex_state = 10}, + [1256] = {.lex_state = 36, .external_lex_state = 11}, + [1257] = {.lex_state = 36, .external_lex_state = 10}, + [1258] = {.lex_state = 36, .external_lex_state = 12}, + [1259] = {.lex_state = 36, .external_lex_state = 9}, + [1260] = {.lex_state = 36, .external_lex_state = 10}, + [1261] = {.lex_state = 36, .external_lex_state = 10}, + [1262] = {.lex_state = 36, .external_lex_state = 10}, + [1263] = {.lex_state = 36, .external_lex_state = 10}, + [1264] = {.lex_state = 36, .external_lex_state = 10}, + [1265] = {.lex_state = 36, .external_lex_state = 10}, + [1266] = {.lex_state = 36, .external_lex_state = 10}, + [1267] = {.lex_state = 36, .external_lex_state = 9}, + [1268] = {.lex_state = 36, .external_lex_state = 8}, + [1269] = {.lex_state = 36, .external_lex_state = 10}, + [1270] = {.lex_state = 36, .external_lex_state = 10}, + [1271] = {.lex_state = 36, .external_lex_state = 8}, + [1272] = {.lex_state = 36, .external_lex_state = 9}, + [1273] = {.lex_state = 36, .external_lex_state = 11}, + [1274] = {.lex_state = 36, .external_lex_state = 10}, + [1275] = {.lex_state = 36, .external_lex_state = 9}, + [1276] = {.lex_state = 36, .external_lex_state = 9}, + [1277] = {.lex_state = 36, .external_lex_state = 9}, + [1278] = {.lex_state = 36, .external_lex_state = 9}, + [1279] = {.lex_state = 36, .external_lex_state = 10}, + [1280] = {.lex_state = 36, .external_lex_state = 10}, + [1281] = {.lex_state = 36, .external_lex_state = 10}, + [1282] = {.lex_state = 36, .external_lex_state = 9}, + [1283] = {.lex_state = 41, .external_lex_state = 13}, + [1284] = {.lex_state = 41, .external_lex_state = 12}, + [1285] = {.lex_state = 36, .external_lex_state = 10}, + [1286] = {.lex_state = 41, .external_lex_state = 12}, + [1287] = {.lex_state = 36, .external_lex_state = 9}, + [1288] = {.lex_state = 36, .external_lex_state = 7}, + [1289] = {.lex_state = 36, .external_lex_state = 9}, + [1290] = {.lex_state = 36, .external_lex_state = 9}, + [1291] = {.lex_state = 36, .external_lex_state = 9}, + [1292] = {.lex_state = 36, .external_lex_state = 2}, + [1293] = {.lex_state = 41, .external_lex_state = 11}, + [1294] = {.lex_state = 41, .external_lex_state = 11}, + [1295] = {.lex_state = 36, .external_lex_state = 9}, + [1296] = {.lex_state = 36, .external_lex_state = 9}, + [1297] = {.lex_state = 36, .external_lex_state = 12}, + [1298] = {.lex_state = 36, .external_lex_state = 12}, + [1299] = {.lex_state = 36, .external_lex_state = 13}, + [1300] = {.lex_state = 36, .external_lex_state = 13}, + [1301] = {.lex_state = 41, .external_lex_state = 13}, + [1302] = {.lex_state = 36, .external_lex_state = 13}, + [1303] = {.lex_state = 41, .external_lex_state = 13}, + [1304] = {.lex_state = 36, .external_lex_state = 13}, + [1305] = {.lex_state = 36, .external_lex_state = 13}, + [1306] = {.lex_state = 36, .external_lex_state = 13}, + [1307] = {.lex_state = 36, .external_lex_state = 11}, + [1308] = {.lex_state = 36, .external_lex_state = 12}, + [1309] = {.lex_state = 36, .external_lex_state = 11}, + [1310] = {.lex_state = 36, .external_lex_state = 13}, + [1311] = {.lex_state = 36, .external_lex_state = 13}, + [1312] = {.lex_state = 36, .external_lex_state = 11}, + [1313] = {.lex_state = 36, .external_lex_state = 11}, + [1314] = {.lex_state = 36, .external_lex_state = 11}, + [1315] = {.lex_state = 36, .external_lex_state = 11}, + [1316] = {.lex_state = 36, .external_lex_state = 13}, + [1317] = {.lex_state = 36, .external_lex_state = 12}, + [1318] = {.lex_state = 36, .external_lex_state = 11}, + [1319] = {.lex_state = 36, .external_lex_state = 11}, + [1320] = {.lex_state = 36, .external_lex_state = 11}, + [1321] = {.lex_state = 36, .external_lex_state = 13}, + [1322] = {.lex_state = 36, .external_lex_state = 13}, + [1323] = {.lex_state = 36, .external_lex_state = 11}, + [1324] = {.lex_state = 36, .external_lex_state = 13}, + [1325] = {.lex_state = 36, .external_lex_state = 11}, + [1326] = {.lex_state = 36, .external_lex_state = 12}, + [1327] = {.lex_state = 36, .external_lex_state = 12}, + [1328] = {.lex_state = 36, .external_lex_state = 12}, + [1329] = {.lex_state = 36, .external_lex_state = 12}, + [1330] = {.lex_state = 36, .external_lex_state = 12}, + [1331] = {.lex_state = 36, .external_lex_state = 12}, + [1332] = {.lex_state = 36, .external_lex_state = 12}, + [1333] = {.lex_state = 36, .external_lex_state = 12}, + [1334] = {.lex_state = 36, .external_lex_state = 11}, + [1335] = {.lex_state = 36, .external_lex_state = 12}, + [1336] = {.lex_state = 36, .external_lex_state = 12}, + [1337] = {.lex_state = 36, .external_lex_state = 12}, + [1338] = {.lex_state = 36, .external_lex_state = 12}, + [1339] = {.lex_state = 36, .external_lex_state = 12}, + [1340] = {.lex_state = 36, .external_lex_state = 12}, + [1341] = {.lex_state = 36, .external_lex_state = 12}, + [1342] = {.lex_state = 36, .external_lex_state = 12}, + [1343] = {.lex_state = 36, .external_lex_state = 12}, + [1344] = {.lex_state = 36, .external_lex_state = 11}, + [1345] = {.lex_state = 36, .external_lex_state = 12}, + [1346] = {.lex_state = 36, .external_lex_state = 12}, + [1347] = {.lex_state = 36, .external_lex_state = 13}, + [1348] = {.lex_state = 36, .external_lex_state = 12}, + [1349] = {.lex_state = 36, .external_lex_state = 11}, + [1350] = {.lex_state = 36, .external_lex_state = 13}, + [1351] = {.lex_state = 36, .external_lex_state = 13}, + [1352] = {.lex_state = 36, .external_lex_state = 13}, + [1353] = {.lex_state = 36, .external_lex_state = 13}, + [1354] = {.lex_state = 36, .external_lex_state = 12}, + [1355] = {.lex_state = 36, .external_lex_state = 12}, + [1356] = {.lex_state = 36, .external_lex_state = 12}, + [1357] = {.lex_state = 36, .external_lex_state = 13}, + [1358] = {.lex_state = 36, .external_lex_state = 13}, + [1359] = {.lex_state = 36, .external_lex_state = 12}, + [1360] = {.lex_state = 36, .external_lex_state = 13}, + [1361] = {.lex_state = 36, .external_lex_state = 13}, + [1362] = {.lex_state = 36, .external_lex_state = 13}, + [1363] = {.lex_state = 36, .external_lex_state = 12}, + [1364] = {.lex_state = 36, .external_lex_state = 12}, + [1365] = {.lex_state = 36, .external_lex_state = 12}, + [1366] = {.lex_state = 36, .external_lex_state = 13}, + [1367] = {.lex_state = 36, .external_lex_state = 13}, + [1368] = {.lex_state = 36, .external_lex_state = 12}, + [1369] = {.lex_state = 36, .external_lex_state = 12}, + [1370] = {.lex_state = 36, .external_lex_state = 12}, + [1371] = {.lex_state = 36, .external_lex_state = 12}, + [1372] = {.lex_state = 36, .external_lex_state = 13}, + [1373] = {.lex_state = 36, .external_lex_state = 13}, + [1374] = {.lex_state = 36, .external_lex_state = 13}, + [1375] = {.lex_state = 36, .external_lex_state = 13}, + [1376] = {.lex_state = 36, .external_lex_state = 12}, + [1377] = {.lex_state = 35, .external_lex_state = 9}, + [1378] = {.lex_state = 36, .external_lex_state = 13}, + [1379] = {.lex_state = 36, .external_lex_state = 13}, + [1380] = {.lex_state = 35, .external_lex_state = 9}, + [1381] = {.lex_state = 36, .external_lex_state = 12}, + [1382] = {.lex_state = 35, .external_lex_state = 9}, + [1383] = {.lex_state = 36, .external_lex_state = 12}, + [1384] = {.lex_state = 36, .external_lex_state = 11}, + [1385] = {.lex_state = 35, .external_lex_state = 9}, + [1386] = {.lex_state = 36, .external_lex_state = 12}, + [1387] = {.lex_state = 35, .external_lex_state = 9}, + [1388] = {.lex_state = 36, .external_lex_state = 8}, + [1389] = {.lex_state = 41, .external_lex_state = 13}, + [1390] = {.lex_state = 36, .external_lex_state = 12}, + [1391] = {.lex_state = 36, .external_lex_state = 12}, + [1392] = {.lex_state = 36, .external_lex_state = 12}, + [1393] = {.lex_state = 41, .external_lex_state = 13}, + [1394] = {.lex_state = 36, .external_lex_state = 12}, + [1395] = {.lex_state = 36, .external_lex_state = 8}, + [1396] = {.lex_state = 36, .external_lex_state = 11}, + [1397] = {.lex_state = 36, .external_lex_state = 12}, + [1398] = {.lex_state = 36, .external_lex_state = 12}, + [1399] = {.lex_state = 36, .external_lex_state = 12}, + [1400] = {.lex_state = 36, .external_lex_state = 12}, + [1401] = {.lex_state = 36, .external_lex_state = 11}, + [1402] = {.lex_state = 36, .external_lex_state = 12}, + [1403] = {.lex_state = 36, .external_lex_state = 12}, + [1404] = {.lex_state = 36, .external_lex_state = 13}, + [1405] = {.lex_state = 36, .external_lex_state = 13}, + [1406] = {.lex_state = 36, .external_lex_state = 11}, + [1407] = {.lex_state = 36, .external_lex_state = 7}, + [1408] = {.lex_state = 36, .external_lex_state = 13}, + [1409] = {.lex_state = 36, .external_lex_state = 13}, + [1410] = {.lex_state = 36, .external_lex_state = 13}, + [1411] = {.lex_state = 36, .external_lex_state = 13}, + [1412] = {.lex_state = 36, .external_lex_state = 13}, + [1413] = {.lex_state = 36, .external_lex_state = 13}, + [1414] = {.lex_state = 36, .external_lex_state = 13}, + [1415] = {.lex_state = 36, .external_lex_state = 11}, + [1416] = {.lex_state = 36, .external_lex_state = 11}, + [1417] = {.lex_state = 36, .external_lex_state = 12}, + [1418] = {.lex_state = 36, .external_lex_state = 12}, + [1419] = {.lex_state = 36, .external_lex_state = 7}, + [1420] = {.lex_state = 36, .external_lex_state = 13}, + [1421] = {.lex_state = 36, .external_lex_state = 13}, + [1422] = {.lex_state = 36, .external_lex_state = 11}, + [1423] = {.lex_state = 36, .external_lex_state = 11}, + [1424] = {.lex_state = 36, .external_lex_state = 13}, + [1425] = {.lex_state = 36, .external_lex_state = 13}, + [1426] = {.lex_state = 36, .external_lex_state = 11}, + [1427] = {.lex_state = 36, .external_lex_state = 11}, + [1428] = {.lex_state = 36, .external_lex_state = 11}, + [1429] = {.lex_state = 36, .external_lex_state = 11}, + [1430] = {.lex_state = 36, .external_lex_state = 11}, + [1431] = {.lex_state = 36, .external_lex_state = 11}, + [1432] = {.lex_state = 36, .external_lex_state = 11}, + [1433] = {.lex_state = 36, .external_lex_state = 11}, + [1434] = {.lex_state = 36, .external_lex_state = 11}, + [1435] = {.lex_state = 36, .external_lex_state = 11}, + [1436] = {.lex_state = 36, .external_lex_state = 11}, + [1437] = {.lex_state = 36, .external_lex_state = 11}, + [1438] = {.lex_state = 36, .external_lex_state = 11}, + [1439] = {.lex_state = 36, .external_lex_state = 11}, + [1440] = {.lex_state = 36, .external_lex_state = 11}, + [1441] = {.lex_state = 36, .external_lex_state = 11}, + [1442] = {.lex_state = 36, .external_lex_state = 11}, + [1443] = {.lex_state = 36, .external_lex_state = 11}, + [1444] = {.lex_state = 41, .external_lex_state = 12}, + [1445] = {.lex_state = 41, .external_lex_state = 12}, + [1446] = {.lex_state = 36, .external_lex_state = 13}, + [1447] = {.lex_state = 36, .external_lex_state = 11}, + [1448] = {.lex_state = 36, .external_lex_state = 11}, + [1449] = {.lex_state = 36, .external_lex_state = 11}, + [1450] = {.lex_state = 36, .external_lex_state = 11}, + [1451] = {.lex_state = 41, .external_lex_state = 13}, + [1452] = {.lex_state = 36, .external_lex_state = 12}, + [1453] = {.lex_state = 36, .external_lex_state = 12}, + [1454] = {.lex_state = 36, .external_lex_state = 12}, + [1455] = {.lex_state = 36, .external_lex_state = 13}, + [1456] = {.lex_state = 36, .external_lex_state = 13}, + [1457] = {.lex_state = 36, .external_lex_state = 13}, + [1458] = {.lex_state = 36, .external_lex_state = 13}, + [1459] = {.lex_state = 36, .external_lex_state = 13}, + [1460] = {.lex_state = 36, .external_lex_state = 12}, + [1461] = {.lex_state = 36, .external_lex_state = 12}, + [1462] = {.lex_state = 36, .external_lex_state = 13}, + [1463] = {.lex_state = 36, .external_lex_state = 13}, + [1464] = {.lex_state = 36, .external_lex_state = 13}, + [1465] = {.lex_state = 41, .external_lex_state = 12}, + [1466] = {.lex_state = 36, .external_lex_state = 12}, + [1467] = {.lex_state = 36, .external_lex_state = 12}, + [1468] = {.lex_state = 36, .external_lex_state = 12}, + [1469] = {.lex_state = 36, .external_lex_state = 13}, + [1470] = {.lex_state = 36, .external_lex_state = 13}, + [1471] = {.lex_state = 36, .external_lex_state = 13}, + [1472] = {.lex_state = 36, .external_lex_state = 12}, + [1473] = {.lex_state = 36, .external_lex_state = 12}, + [1474] = {.lex_state = 36, .external_lex_state = 12}, + [1475] = {.lex_state = 36, .external_lex_state = 12}, + [1476] = {.lex_state = 36, .external_lex_state = 12}, + [1477] = {.lex_state = 36, .external_lex_state = 12}, + [1478] = {.lex_state = 36, .external_lex_state = 13}, + [1479] = {.lex_state = 36, .external_lex_state = 12}, + [1480] = {.lex_state = 36, .external_lex_state = 12}, + [1481] = {.lex_state = 36, .external_lex_state = 12}, + [1482] = {.lex_state = 36, .external_lex_state = 13}, + [1483] = {.lex_state = 36, .external_lex_state = 13}, + [1484] = {.lex_state = 36, .external_lex_state = 13}, + [1485] = {.lex_state = 36, .external_lex_state = 13}, + [1486] = {.lex_state = 36, .external_lex_state = 13}, + [1487] = {.lex_state = 36, .external_lex_state = 13}, + [1488] = {.lex_state = 36, .external_lex_state = 12}, + [1489] = {.lex_state = 36, .external_lex_state = 13}, + [1490] = {.lex_state = 36, .external_lex_state = 13}, + [1491] = {.lex_state = 36, .external_lex_state = 13}, + [1492] = {.lex_state = 36, .external_lex_state = 12}, + [1493] = {.lex_state = 36, .external_lex_state = 12}, + [1494] = {.lex_state = 36, .external_lex_state = 12}, + [1495] = {.lex_state = 36, .external_lex_state = 12}, + [1496] = {.lex_state = 36, .external_lex_state = 12}, + [1497] = {.lex_state = 36, .external_lex_state = 12}, + [1498] = {.lex_state = 36, .external_lex_state = 12}, + [1499] = {.lex_state = 36, .external_lex_state = 12}, + [1500] = {.lex_state = 36, .external_lex_state = 12}, + [1501] = {.lex_state = 36, .external_lex_state = 12}, + [1502] = {.lex_state = 36, .external_lex_state = 12}, + [1503] = {.lex_state = 36, .external_lex_state = 12}, + [1504] = {.lex_state = 36, .external_lex_state = 13}, + [1505] = {.lex_state = 36, .external_lex_state = 12}, + [1506] = {.lex_state = 36, .external_lex_state = 13}, + [1507] = {.lex_state = 36, .external_lex_state = 13}, + [1508] = {.lex_state = 36, .external_lex_state = 12}, + [1509] = {.lex_state = 41, .external_lex_state = 13}, + [1510] = {.lex_state = 36, .external_lex_state = 13}, + [1511] = {.lex_state = 36, .external_lex_state = 13}, + [1512] = {.lex_state = 36, .external_lex_state = 12}, + [1513] = {.lex_state = 36, .external_lex_state = 12}, + [1514] = {.lex_state = 36, .external_lex_state = 13}, + [1515] = {.lex_state = 36, .external_lex_state = 12}, + [1516] = {.lex_state = 36, .external_lex_state = 12}, + [1517] = {.lex_state = 36, .external_lex_state = 13}, + [1518] = {.lex_state = 36, .external_lex_state = 13}, + [1519] = {.lex_state = 36, .external_lex_state = 12}, + [1520] = {.lex_state = 36, .external_lex_state = 12}, + [1521] = {.lex_state = 36, .external_lex_state = 12}, + [1522] = {.lex_state = 36, .external_lex_state = 13}, + [1523] = {.lex_state = 36, .external_lex_state = 12}, + [1524] = {.lex_state = 41, .external_lex_state = 10}, + [1525] = {.lex_state = 36, .external_lex_state = 13}, + [1526] = {.lex_state = 36, .external_lex_state = 13}, + [1527] = {.lex_state = 41, .external_lex_state = 10}, + [1528] = {.lex_state = 36, .external_lex_state = 12}, + [1529] = {.lex_state = 36, .external_lex_state = 13}, + [1530] = {.lex_state = 36, .external_lex_state = 12}, + [1531] = {.lex_state = 36, .external_lex_state = 12}, + [1532] = {.lex_state = 36, .external_lex_state = 13}, + [1533] = {.lex_state = 36, .external_lex_state = 13}, + [1534] = {.lex_state = 36, .external_lex_state = 13}, + [1535] = {.lex_state = 36, .external_lex_state = 13}, + [1536] = {.lex_state = 36, .external_lex_state = 13}, + [1537] = {.lex_state = 36, .external_lex_state = 12}, + [1538] = {.lex_state = 36, .external_lex_state = 13}, + [1539] = {.lex_state = 41, .external_lex_state = 12}, + [1540] = {.lex_state = 36, .external_lex_state = 13}, + [1541] = {.lex_state = 36, .external_lex_state = 13}, + [1542] = {.lex_state = 36, .external_lex_state = 13}, + [1543] = {.lex_state = 36, .external_lex_state = 13}, + [1544] = {.lex_state = 36, .external_lex_state = 13}, + [1545] = {.lex_state = 36, .external_lex_state = 12}, + [1546] = {.lex_state = 35, .external_lex_state = 11}, + [1547] = {.lex_state = 35, .external_lex_state = 11}, + [1548] = {.lex_state = 35, .external_lex_state = 11}, + [1549] = {.lex_state = 35, .external_lex_state = 11}, + [1550] = {.lex_state = 35, .external_lex_state = 11}, + [1551] = {.lex_state = 35, .external_lex_state = 11}, + [1552] = {.lex_state = 35, .external_lex_state = 11}, + [1553] = {.lex_state = 36, .external_lex_state = 10}, + [1554] = {.lex_state = 35, .external_lex_state = 11}, + [1555] = {.lex_state = 35, .external_lex_state = 11}, + [1556] = {.lex_state = 35, .external_lex_state = 11}, + [1557] = {.lex_state = 35, .external_lex_state = 11}, + [1558] = {.lex_state = 35, .external_lex_state = 11}, + [1559] = {.lex_state = 35, .external_lex_state = 11}, + [1560] = {.lex_state = 35, .external_lex_state = 11}, + [1561] = {.lex_state = 36, .external_lex_state = 13}, + [1562] = {.lex_state = 36, .external_lex_state = 11}, + [1563] = {.lex_state = 36, .external_lex_state = 11}, + [1564] = {.lex_state = 36, .external_lex_state = 11}, + [1565] = {.lex_state = 36, .external_lex_state = 11}, + [1566] = {.lex_state = 36, .external_lex_state = 11}, + [1567] = {.lex_state = 36, .external_lex_state = 11}, + [1568] = {.lex_state = 36, .external_lex_state = 10}, + [1569] = {.lex_state = 36, .external_lex_state = 10}, + [1570] = {.lex_state = 36, .external_lex_state = 10}, + [1571] = {.lex_state = 36, .external_lex_state = 10}, + [1572] = {.lex_state = 36, .external_lex_state = 10}, + [1573] = {.lex_state = 57, .external_lex_state = 10}, + [1574] = {.lex_state = 57, .external_lex_state = 10}, + [1575] = {.lex_state = 36, .external_lex_state = 11}, + [1576] = {.lex_state = 57, .external_lex_state = 9}, + [1577] = {.lex_state = 40, .external_lex_state = 9}, + [1578] = {.lex_state = 40, .external_lex_state = 9}, + [1579] = {.lex_state = 36, .external_lex_state = 13}, + [1580] = {.lex_state = 36, .external_lex_state = 13}, + [1581] = {.lex_state = 36, .external_lex_state = 13}, + [1582] = {.lex_state = 57, .external_lex_state = 13}, + [1583] = {.lex_state = 57, .external_lex_state = 12}, + [1584] = {.lex_state = 36, .external_lex_state = 13}, + [1585] = {.lex_state = 36, .external_lex_state = 11}, + [1586] = {.lex_state = 40, .external_lex_state = 9}, + [1587] = {.lex_state = 36, .external_lex_state = 11}, + [1588] = {.lex_state = 57, .external_lex_state = 12}, + [1589] = {.lex_state = 36, .external_lex_state = 11}, + [1590] = {.lex_state = 36, .external_lex_state = 11}, + [1591] = {.lex_state = 57, .external_lex_state = 13}, + [1592] = {.lex_state = 36, .external_lex_state = 11}, + [1593] = {.lex_state = 36, .external_lex_state = 11}, + [1594] = {.lex_state = 36, .external_lex_state = 11}, + [1595] = {.lex_state = 36, .external_lex_state = 11}, + [1596] = {.lex_state = 36, .external_lex_state = 11}, + [1597] = {.lex_state = 36, .external_lex_state = 11}, + [1598] = {.lex_state = 36, .external_lex_state = 11}, + [1599] = {.lex_state = 36, .external_lex_state = 13}, + [1600] = {.lex_state = 36, .external_lex_state = 11}, + [1601] = {.lex_state = 36, .external_lex_state = 11}, + [1602] = {.lex_state = 36, .external_lex_state = 11}, + [1603] = {.lex_state = 36, .external_lex_state = 11}, + [1604] = {.lex_state = 36, .external_lex_state = 11}, + [1605] = {.lex_state = 36, .external_lex_state = 12}, + [1606] = {.lex_state = 36, .external_lex_state = 13}, + [1607] = {.lex_state = 36, .external_lex_state = 12}, + [1608] = {.lex_state = 36, .external_lex_state = 11}, + [1609] = {.lex_state = 36, .external_lex_state = 11}, + [1610] = {.lex_state = 40, .external_lex_state = 9}, + [1611] = {.lex_state = 40, .external_lex_state = 9}, + [1612] = {.lex_state = 40, .external_lex_state = 9}, + [1613] = {.lex_state = 36, .external_lex_state = 12}, + [1614] = {.lex_state = 36, .external_lex_state = 11}, + [1615] = {.lex_state = 36, .external_lex_state = 11}, + [1616] = {.lex_state = 36, .external_lex_state = 11}, + [1617] = {.lex_state = 36, .external_lex_state = 11}, + [1618] = {.lex_state = 36, .external_lex_state = 11}, + [1619] = {.lex_state = 36, .external_lex_state = 11}, + [1620] = {.lex_state = 36, .external_lex_state = 11}, + [1621] = {.lex_state = 36, .external_lex_state = 13}, + [1622] = {.lex_state = 36, .external_lex_state = 12}, + [1623] = {.lex_state = 36, .external_lex_state = 13}, + [1624] = {.lex_state = 36, .external_lex_state = 11}, + [1625] = {.lex_state = 36, .external_lex_state = 12}, + [1626] = {.lex_state = 36, .external_lex_state = 11}, + [1627] = {.lex_state = 36, .external_lex_state = 13}, + [1628] = {.lex_state = 32, .external_lex_state = 11}, + [1629] = {.lex_state = 32, .external_lex_state = 11}, + [1630] = {.lex_state = 40, .external_lex_state = 11}, + [1631] = {.lex_state = 40, .external_lex_state = 11}, + [1632] = {.lex_state = 40, .external_lex_state = 11}, + [1633] = {.lex_state = 40, .external_lex_state = 9}, + [1634] = {.lex_state = 32, .external_lex_state = 11}, + [1635] = {.lex_state = 32, .external_lex_state = 11}, + [1636] = {.lex_state = 40, .external_lex_state = 11}, + [1637] = {.lex_state = 32, .external_lex_state = 11}, + [1638] = {.lex_state = 40, .external_lex_state = 11}, + [1639] = {.lex_state = 32, .external_lex_state = 11}, + [1640] = {.lex_state = 32, .external_lex_state = 11}, + [1641] = {.lex_state = 32, .external_lex_state = 11}, + [1642] = {.lex_state = 40, .external_lex_state = 11}, + [1643] = {.lex_state = 32, .external_lex_state = 11}, + [1644] = {.lex_state = 32, .external_lex_state = 11}, + [1645] = {.lex_state = 40, .external_lex_state = 11}, + [1646] = {.lex_state = 32, .external_lex_state = 11}, + [1647] = {.lex_state = 32, .external_lex_state = 11}, + [1648] = {.lex_state = 32, .external_lex_state = 11}, + [1649] = {.lex_state = 32, .external_lex_state = 11}, + [1650] = {.lex_state = 32, .external_lex_state = 11}, + [1651] = {.lex_state = 32, .external_lex_state = 11}, + [1652] = {.lex_state = 32, .external_lex_state = 11}, + [1653] = {.lex_state = 40, .external_lex_state = 11}, + [1654] = {.lex_state = 32, .external_lex_state = 11}, + [1655] = {.lex_state = 32, .external_lex_state = 11}, + [1656] = {.lex_state = 31, .external_lex_state = 13}, + [1657] = {.lex_state = 31, .external_lex_state = 13}, + [1658] = {.lex_state = 40, .external_lex_state = 11}, + [1659] = {.lex_state = 32, .external_lex_state = 11}, + [1660] = {.lex_state = 32, .external_lex_state = 11}, + [1661] = {.lex_state = 31, .external_lex_state = 13}, + [1662] = {.lex_state = 31, .external_lex_state = 11}, + [1663] = {.lex_state = 31, .external_lex_state = 11}, + [1664] = {.lex_state = 57, .external_lex_state = 10}, + [1665] = {.lex_state = 57, .external_lex_state = 10}, + [1666] = {.lex_state = 57, .external_lex_state = 10}, + [1667] = {.lex_state = 57, .external_lex_state = 10}, + [1668] = {.lex_state = 57, .external_lex_state = 10}, + [1669] = {.lex_state = 57, .external_lex_state = 10}, + [1670] = {.lex_state = 57, .external_lex_state = 10}, + [1671] = {.lex_state = 57, .external_lex_state = 10}, + [1672] = {.lex_state = 57, .external_lex_state = 13}, + [1673] = {.lex_state = 57, .external_lex_state = 13}, + [1674] = {.lex_state = 57, .external_lex_state = 12}, + [1675] = {.lex_state = 57, .external_lex_state = 13}, + [1676] = {.lex_state = 57, .external_lex_state = 13}, + [1677] = {.lex_state = 57, .external_lex_state = 12}, + [1678] = {.lex_state = 57, .external_lex_state = 13}, + [1679] = {.lex_state = 57, .external_lex_state = 13}, + [1680] = {.lex_state = 57, .external_lex_state = 13}, + [1681] = {.lex_state = 57, .external_lex_state = 13}, + [1682] = {.lex_state = 57, .external_lex_state = 13}, + [1683] = {.lex_state = 57, .external_lex_state = 12}, + [1684] = {.lex_state = 57, .external_lex_state = 12}, + [1685] = {.lex_state = 57, .external_lex_state = 13}, + [1686] = {.lex_state = 57, .external_lex_state = 12}, + [1687] = {.lex_state = 57, .external_lex_state = 13}, + [1688] = {.lex_state = 57, .external_lex_state = 13}, + [1689] = {.lex_state = 57, .external_lex_state = 13}, + [1690] = {.lex_state = 57, .external_lex_state = 12}, + [1691] = {.lex_state = 57, .external_lex_state = 12}, + [1692] = {.lex_state = 57, .external_lex_state = 13}, + [1693] = {.lex_state = 57, .external_lex_state = 13}, + [1694] = {.lex_state = 57, .external_lex_state = 13}, + [1695] = {.lex_state = 57, .external_lex_state = 12}, + [1696] = {.lex_state = 57, .external_lex_state = 13}, + [1697] = {.lex_state = 37, .external_lex_state = 14}, + [1698] = {.lex_state = 37, .external_lex_state = 14}, + [1699] = {.lex_state = 37, .external_lex_state = 14}, + [1700] = {.lex_state = 37, .external_lex_state = 14}, + [1701] = {.lex_state = 37, .external_lex_state = 14}, + [1702] = {.lex_state = 37, .external_lex_state = 14}, + [1703] = {.lex_state = 37, .external_lex_state = 14}, + [1704] = {.lex_state = 57, .external_lex_state = 10}, + [1705] = {.lex_state = 37, .external_lex_state = 14}, + [1706] = {.lex_state = 37, .external_lex_state = 14}, + [1707] = {.lex_state = 37, .external_lex_state = 14}, + [1708] = {.lex_state = 37, .external_lex_state = 14}, + [1709] = {.lex_state = 37, .external_lex_state = 14}, + [1710] = {.lex_state = 57, .external_lex_state = 10}, + [1711] = {.lex_state = 37, .external_lex_state = 14}, + [1712] = {.lex_state = 37, .external_lex_state = 14}, + [1713] = {.lex_state = 37, .external_lex_state = 14}, + [1714] = {.lex_state = 37, .external_lex_state = 14}, + [1715] = {.lex_state = 37, .external_lex_state = 14}, + [1716] = {.lex_state = 37, .external_lex_state = 14}, + [1717] = {.lex_state = 37, .external_lex_state = 14}, + [1718] = {.lex_state = 57, .external_lex_state = 10}, + [1719] = {.lex_state = 57, .external_lex_state = 10}, + [1720] = {.lex_state = 57, .external_lex_state = 10}, + [1721] = {.lex_state = 57, .external_lex_state = 9}, + [1722] = {.lex_state = 57, .external_lex_state = 9}, + [1723] = {.lex_state = 57, .external_lex_state = 10}, + [1724] = {.lex_state = 57, .external_lex_state = 10}, + [1725] = {.lex_state = 57, .external_lex_state = 10}, + [1726] = {.lex_state = 57, .external_lex_state = 9}, + [1727] = {.lex_state = 57, .external_lex_state = 9}, [1728] = {.lex_state = 57, .external_lex_state = 10}, [1729] = {.lex_state = 57, .external_lex_state = 10}, - [1730] = {.lex_state = 57, .external_lex_state = 10}, + [1730] = {.lex_state = 57, .external_lex_state = 9}, [1731] = {.lex_state = 57, .external_lex_state = 10}, - [1732] = {.lex_state = 57, .external_lex_state = 10}, - [1733] = {.lex_state = 57, .external_lex_state = 10}, - [1734] = {.lex_state = 57, .external_lex_state = 13}, - [1735] = {.lex_state = 57, .external_lex_state = 13}, - [1736] = {.lex_state = 57, .external_lex_state = 13}, - [1737] = {.lex_state = 57, .external_lex_state = 13}, - [1738] = {.lex_state = 57, .external_lex_state = 13}, + [1732] = {.lex_state = 57, .external_lex_state = 9}, + [1733] = {.lex_state = 57, .external_lex_state = 9}, + [1734] = {.lex_state = 57, .external_lex_state = 10}, + [1735] = {.lex_state = 57, .external_lex_state = 10}, + [1736] = {.lex_state = 57, .external_lex_state = 10}, + [1737] = {.lex_state = 57, .external_lex_state = 10}, + [1738] = {.lex_state = 57, .external_lex_state = 10}, [1739] = {.lex_state = 57, .external_lex_state = 12}, - [1740] = {.lex_state = 57, .external_lex_state = 12}, + [1740] = {.lex_state = 57, .external_lex_state = 13}, [1741] = {.lex_state = 57, .external_lex_state = 13}, - [1742] = {.lex_state = 57, .external_lex_state = 13}, - [1743] = {.lex_state = 57, .external_lex_state = 12}, + [1742] = {.lex_state = 57, .external_lex_state = 9}, + [1743] = {.lex_state = 57, .external_lex_state = 9}, [1744] = {.lex_state = 57, .external_lex_state = 12}, [1745] = {.lex_state = 57, .external_lex_state = 13}, - [1746] = {.lex_state = 57, .external_lex_state = 13}, - [1747] = {.lex_state = 57, .external_lex_state = 12}, - [1748] = {.lex_state = 57, .external_lex_state = 13}, + [1746] = {.lex_state = 57, .external_lex_state = 11}, + [1747] = {.lex_state = 57, .external_lex_state = 13}, + [1748] = {.lex_state = 57, .external_lex_state = 9}, [1749] = {.lex_state = 57, .external_lex_state = 13}, - [1750] = {.lex_state = 57, .external_lex_state = 12}, - [1751] = {.lex_state = 57, .external_lex_state = 13}, - [1752] = {.lex_state = 57, .external_lex_state = 13}, + [1750] = {.lex_state = 57, .external_lex_state = 9}, + [1751] = {.lex_state = 57, .external_lex_state = 10}, + [1752] = {.lex_state = 57, .external_lex_state = 12}, [1753] = {.lex_state = 57, .external_lex_state = 12}, - [1754] = {.lex_state = 57, .external_lex_state = 13}, - [1755] = {.lex_state = 57, .external_lex_state = 13}, - [1756] = {.lex_state = 57, .external_lex_state = 13}, - [1757] = {.lex_state = 57, .external_lex_state = 13}, - [1758] = {.lex_state = 57, .external_lex_state = 12}, - [1759] = {.lex_state = 36, .external_lex_state = 14}, - [1760] = {.lex_state = 36, .external_lex_state = 14}, - [1761] = {.lex_state = 36, .external_lex_state = 14}, - [1762] = {.lex_state = 36, .external_lex_state = 14}, - [1763] = {.lex_state = 36, .external_lex_state = 14}, - [1764] = {.lex_state = 36, .external_lex_state = 14}, - [1765] = {.lex_state = 36, .external_lex_state = 14}, - [1766] = {.lex_state = 36, .external_lex_state = 14}, - [1767] = {.lex_state = 36, .external_lex_state = 14}, - [1768] = {.lex_state = 57, .external_lex_state = 10}, - [1769] = {.lex_state = 36, .external_lex_state = 14}, - [1770] = {.lex_state = 36, .external_lex_state = 14}, - [1771] = {.lex_state = 36, .external_lex_state = 14}, - [1772] = {.lex_state = 36, .external_lex_state = 14}, - [1773] = {.lex_state = 36, .external_lex_state = 14}, - [1774] = {.lex_state = 36, .external_lex_state = 14}, - [1775] = {.lex_state = 36, .external_lex_state = 14}, - [1776] = {.lex_state = 57, .external_lex_state = 10}, - [1777] = {.lex_state = 36, .external_lex_state = 14}, - [1778] = {.lex_state = 36, .external_lex_state = 14}, - [1779] = {.lex_state = 36, .external_lex_state = 14}, - [1780] = {.lex_state = 57, .external_lex_state = 10}, - [1781] = {.lex_state = 57, .external_lex_state = 10}, + [1754] = {.lex_state = 57, .external_lex_state = 12}, + [1755] = {.lex_state = 39, .external_lex_state = 11}, + [1756] = {.lex_state = 57, .external_lex_state = 9}, + [1757] = {.lex_state = 57, .external_lex_state = 11}, + [1758] = {.lex_state = 57, .external_lex_state = 13}, + [1759] = {.lex_state = 57, .external_lex_state = 12}, + [1760] = {.lex_state = 57, .external_lex_state = 12}, + [1761] = {.lex_state = 39, .external_lex_state = 11}, + [1762] = {.lex_state = 57, .external_lex_state = 12}, + [1763] = {.lex_state = 57, .external_lex_state = 10}, + [1764] = {.lex_state = 57, .external_lex_state = 12}, + [1765] = {.lex_state = 57, .external_lex_state = 12}, + [1766] = {.lex_state = 57, .external_lex_state = 12}, + [1767] = {.lex_state = 57, .external_lex_state = 9}, + [1768] = {.lex_state = 57, .external_lex_state = 12}, + [1769] = {.lex_state = 57, .external_lex_state = 13}, + [1770] = {.lex_state = 39, .external_lex_state = 11}, + [1771] = {.lex_state = 57, .external_lex_state = 12}, + [1772] = {.lex_state = 57, .external_lex_state = 13}, + [1773] = {.lex_state = 57, .external_lex_state = 12}, + [1774] = {.lex_state = 57, .external_lex_state = 12}, + [1775] = {.lex_state = 57, .external_lex_state = 12}, + [1776] = {.lex_state = 57, .external_lex_state = 12}, + [1777] = {.lex_state = 57, .external_lex_state = 11}, + [1778] = {.lex_state = 57, .external_lex_state = 12}, + [1779] = {.lex_state = 57, .external_lex_state = 9}, + [1780] = {.lex_state = 39, .external_lex_state = 11}, + [1781] = {.lex_state = 57, .external_lex_state = 12}, [1782] = {.lex_state = 57, .external_lex_state = 10}, - [1783] = {.lex_state = 57, .external_lex_state = 10}, + [1783] = {.lex_state = 57, .external_lex_state = 9}, [1784] = {.lex_state = 57, .external_lex_state = 9}, - [1785] = {.lex_state = 57, .external_lex_state = 10}, - [1786] = {.lex_state = 57, .external_lex_state = 9}, - [1787] = {.lex_state = 57, .external_lex_state = 9}, - [1788] = {.lex_state = 57, .external_lex_state = 10}, + [1785] = {.lex_state = 57, .external_lex_state = 13}, + [1786] = {.lex_state = 57, .external_lex_state = 10}, + [1787] = {.lex_state = 57, .external_lex_state = 10}, + [1788] = {.lex_state = 57, .external_lex_state = 13}, [1789] = {.lex_state = 57, .external_lex_state = 10}, - [1790] = {.lex_state = 57, .external_lex_state = 10}, + [1790] = {.lex_state = 57, .external_lex_state = 12}, [1791] = {.lex_state = 57, .external_lex_state = 10}, - [1792] = {.lex_state = 57, .external_lex_state = 10}, - [1793] = {.lex_state = 57, .external_lex_state = 10}, - [1794] = {.lex_state = 57, .external_lex_state = 9}, - [1795] = {.lex_state = 57, .external_lex_state = 10}, - [1796] = {.lex_state = 57, .external_lex_state = 9}, - [1797] = {.lex_state = 57, .external_lex_state = 10}, - [1798] = {.lex_state = 57, .external_lex_state = 9}, - [1799] = {.lex_state = 57, .external_lex_state = 9}, - [1800] = {.lex_state = 57, .external_lex_state = 10}, - [1801] = {.lex_state = 57, .external_lex_state = 12}, - [1802] = {.lex_state = 38, .external_lex_state = 11}, - [1803] = {.lex_state = 57, .external_lex_state = 12}, - [1804] = {.lex_state = 57, .external_lex_state = 12}, - [1805] = {.lex_state = 57, .external_lex_state = 12}, - [1806] = {.lex_state = 57, .external_lex_state = 12}, + [1792] = {.lex_state = 57, .external_lex_state = 13}, + [1793] = {.lex_state = 57, .external_lex_state = 11}, + [1794] = {.lex_state = 57, .external_lex_state = 10}, + [1795] = {.lex_state = 57, .external_lex_state = 12}, + [1796] = {.lex_state = 57, .external_lex_state = 11}, + [1797] = {.lex_state = 57, .external_lex_state = 12}, + [1798] = {.lex_state = 57, .external_lex_state = 12}, + [1799] = {.lex_state = 57, .external_lex_state = 13}, + [1800] = {.lex_state = 57, .external_lex_state = 12}, + [1801] = {.lex_state = 57, .external_lex_state = 10}, + [1802] = {.lex_state = 57, .external_lex_state = 13}, + [1803] = {.lex_state = 57, .external_lex_state = 11}, + [1804] = {.lex_state = 57, .external_lex_state = 13}, + [1805] = {.lex_state = 57, .external_lex_state = 13}, + [1806] = {.lex_state = 57, .external_lex_state = 13}, [1807] = {.lex_state = 57, .external_lex_state = 11}, - [1808] = {.lex_state = 38, .external_lex_state = 11}, - [1809] = {.lex_state = 57, .external_lex_state = 13}, + [1808] = {.lex_state = 57, .external_lex_state = 10}, + [1809] = {.lex_state = 57, .external_lex_state = 10}, [1810] = {.lex_state = 57, .external_lex_state = 10}, - [1811] = {.lex_state = 57, .external_lex_state = 13}, - [1812] = {.lex_state = 57, .external_lex_state = 13}, - [1813] = {.lex_state = 57, .external_lex_state = 12}, - [1814] = {.lex_state = 57, .external_lex_state = 13}, - [1815] = {.lex_state = 57, .external_lex_state = 13}, - [1816] = {.lex_state = 57, .external_lex_state = 9}, + [1811] = {.lex_state = 57, .external_lex_state = 11}, + [1812] = {.lex_state = 57, .external_lex_state = 9}, + [1813] = {.lex_state = 57, .external_lex_state = 13}, + [1814] = {.lex_state = 57, .external_lex_state = 11}, + [1815] = {.lex_state = 57, .external_lex_state = 10}, + [1816] = {.lex_state = 57, .external_lex_state = 12}, [1817] = {.lex_state = 57, .external_lex_state = 12}, - [1818] = {.lex_state = 57, .external_lex_state = 9}, - [1819] = {.lex_state = 57, .external_lex_state = 13}, - [1820] = {.lex_state = 57, .external_lex_state = 10}, + [1818] = {.lex_state = 57, .external_lex_state = 12}, + [1819] = {.lex_state = 57, .external_lex_state = 11}, + [1820] = {.lex_state = 57, .external_lex_state = 12}, [1821] = {.lex_state = 57, .external_lex_state = 12}, - [1822] = {.lex_state = 57, .external_lex_state = 11}, - [1823] = {.lex_state = 57, .external_lex_state = 9}, - [1824] = {.lex_state = 57, .external_lex_state = 9}, + [1822] = {.lex_state = 57, .external_lex_state = 12}, + [1823] = {.lex_state = 57, .external_lex_state = 13}, + [1824] = {.lex_state = 57, .external_lex_state = 13}, [1825] = {.lex_state = 57, .external_lex_state = 12}, - [1826] = {.lex_state = 57, .external_lex_state = 9}, - [1827] = {.lex_state = 57, .external_lex_state = 9}, - [1828] = {.lex_state = 57, .external_lex_state = 12}, - [1829] = {.lex_state = 57, .external_lex_state = 12}, - [1830] = {.lex_state = 57, .external_lex_state = 12}, - [1831] = {.lex_state = 57, .external_lex_state = 12}, - [1832] = {.lex_state = 57, .external_lex_state = 9}, + [1826] = {.lex_state = 57, .external_lex_state = 13}, + [1827] = {.lex_state = 34, .external_lex_state = 11}, + [1828] = {.lex_state = 57, .external_lex_state = 11}, + [1829] = {.lex_state = 57, .external_lex_state = 13}, + [1830] = {.lex_state = 37, .external_lex_state = 14}, + [1831] = {.lex_state = 37, .external_lex_state = 14}, + [1832] = {.lex_state = 57, .external_lex_state = 12}, [1833] = {.lex_state = 57, .external_lex_state = 13}, - [1834] = {.lex_state = 57, .external_lex_state = 13}, - [1835] = {.lex_state = 57, .external_lex_state = 11}, + [1834] = {.lex_state = 57, .external_lex_state = 10}, + [1835] = {.lex_state = 57, .external_lex_state = 10}, [1836] = {.lex_state = 57, .external_lex_state = 12}, - [1837] = {.lex_state = 57, .external_lex_state = 9}, - [1838] = {.lex_state = 57, .external_lex_state = 10}, - [1839] = {.lex_state = 57, .external_lex_state = 13}, - [1840] = {.lex_state = 57, .external_lex_state = 12}, + [1837] = {.lex_state = 57, .external_lex_state = 10}, + [1838] = {.lex_state = 57, .external_lex_state = 9}, + [1839] = {.lex_state = 57, .external_lex_state = 9}, + [1840] = {.lex_state = 57, .external_lex_state = 13}, [1841] = {.lex_state = 57, .external_lex_state = 12}, - [1842] = {.lex_state = 57, .external_lex_state = 9}, - [1843] = {.lex_state = 57, .external_lex_state = 12}, - [1844] = {.lex_state = 57, .external_lex_state = 12}, - [1845] = {.lex_state = 38, .external_lex_state = 11}, - [1846] = {.lex_state = 38, .external_lex_state = 11}, - [1847] = {.lex_state = 57, .external_lex_state = 11}, - [1848] = {.lex_state = 57, .external_lex_state = 10}, - [1849] = {.lex_state = 57, .external_lex_state = 12}, - [1850] = {.lex_state = 57, .external_lex_state = 13}, - [1851] = {.lex_state = 57, .external_lex_state = 12}, - [1852] = {.lex_state = 57, .external_lex_state = 9}, + [1842] = {.lex_state = 57, .external_lex_state = 13}, + [1843] = {.lex_state = 57, .external_lex_state = 11}, + [1844] = {.lex_state = 57, .external_lex_state = 10}, + [1845] = {.lex_state = 57, .external_lex_state = 12}, + [1846] = {.lex_state = 57, .external_lex_state = 10}, + [1847] = {.lex_state = 34, .external_lex_state = 9}, + [1848] = {.lex_state = 57, .external_lex_state = 12}, + [1849] = {.lex_state = 34, .external_lex_state = 9}, + [1850] = {.lex_state = 57, .external_lex_state = 9}, + [1851] = {.lex_state = 37, .external_lex_state = 14}, + [1852] = {.lex_state = 57, .external_lex_state = 11}, [1853] = {.lex_state = 57, .external_lex_state = 10}, - [1854] = {.lex_state = 57, .external_lex_state = 9}, - [1855] = {.lex_state = 57, .external_lex_state = 12}, - [1856] = {.lex_state = 57, .external_lex_state = 12}, - [1857] = {.lex_state = 57, .external_lex_state = 10}, + [1854] = {.lex_state = 57, .external_lex_state = 10}, + [1855] = {.lex_state = 57, .external_lex_state = 9}, + [1856] = {.lex_state = 57, .external_lex_state = 13}, + [1857] = {.lex_state = 57, .external_lex_state = 13}, [1858] = {.lex_state = 57, .external_lex_state = 11}, - [1859] = {.lex_state = 57, .external_lex_state = 12}, - [1860] = {.lex_state = 57, .external_lex_state = 13}, - [1861] = {.lex_state = 57, .external_lex_state = 11}, - [1862] = {.lex_state = 57, .external_lex_state = 10}, - [1863] = {.lex_state = 57, .external_lex_state = 13}, - [1864] = {.lex_state = 36, .external_lex_state = 14}, - [1865] = {.lex_state = 57, .external_lex_state = 13}, - [1866] = {.lex_state = 57, .external_lex_state = 9}, - [1867] = {.lex_state = 57, .external_lex_state = 13}, - [1868] = {.lex_state = 57, .external_lex_state = 10}, + [1859] = {.lex_state = 57, .external_lex_state = 10}, + [1860] = {.lex_state = 57, .external_lex_state = 11}, + [1861] = {.lex_state = 57, .external_lex_state = 13}, + [1862] = {.lex_state = 57, .external_lex_state = 11}, + [1863] = {.lex_state = 57, .external_lex_state = 9}, + [1864] = {.lex_state = 57, .external_lex_state = 13}, + [1865] = {.lex_state = 57, .external_lex_state = 12}, + [1866] = {.lex_state = 57, .external_lex_state = 12}, + [1867] = {.lex_state = 57, .external_lex_state = 11}, + [1868] = {.lex_state = 57, .external_lex_state = 13}, [1869] = {.lex_state = 57, .external_lex_state = 13}, - [1870] = {.lex_state = 33, .external_lex_state = 11}, + [1870] = {.lex_state = 57, .external_lex_state = 10}, [1871] = {.lex_state = 57, .external_lex_state = 13}, - [1872] = {.lex_state = 57, .external_lex_state = 12}, - [1873] = {.lex_state = 57, .external_lex_state = 12}, - [1874] = {.lex_state = 57, .external_lex_state = 11}, - [1875] = {.lex_state = 57, .external_lex_state = 10}, + [1872] = {.lex_state = 34, .external_lex_state = 9}, + [1873] = {.lex_state = 57, .external_lex_state = 13}, + [1874] = {.lex_state = 37, .external_lex_state = 14}, + [1875] = {.lex_state = 57, .external_lex_state = 12}, [1876] = {.lex_state = 57, .external_lex_state = 11}, - [1877] = {.lex_state = 57, .external_lex_state = 12}, - [1878] = {.lex_state = 57, .external_lex_state = 12}, + [1877] = {.lex_state = 37, .external_lex_state = 14}, + [1878] = {.lex_state = 57, .external_lex_state = 13}, [1879] = {.lex_state = 57, .external_lex_state = 13}, [1880] = {.lex_state = 57, .external_lex_state = 10}, [1881] = {.lex_state = 57, .external_lex_state = 11}, - [1882] = {.lex_state = 57, .external_lex_state = 11}, - [1883] = {.lex_state = 57, .external_lex_state = 11}, - [1884] = {.lex_state = 57, .external_lex_state = 12}, - [1885] = {.lex_state = 57, .external_lex_state = 13}, + [1882] = {.lex_state = 57, .external_lex_state = 10}, + [1883] = {.lex_state = 57, .external_lex_state = 13}, + [1884] = {.lex_state = 57, .external_lex_state = 10}, + [1885] = {.lex_state = 37, .external_lex_state = 14}, [1886] = {.lex_state = 57, .external_lex_state = 10}, - [1887] = {.lex_state = 57, .external_lex_state = 13}, - [1888] = {.lex_state = 57, .external_lex_state = 11}, - [1889] = {.lex_state = 36, .external_lex_state = 14}, - [1890] = {.lex_state = 57, .external_lex_state = 13}, - [1891] = {.lex_state = 57, .external_lex_state = 12}, - [1892] = {.lex_state = 57, .external_lex_state = 10}, - [1893] = {.lex_state = 57, .external_lex_state = 13}, + [1887] = {.lex_state = 37, .external_lex_state = 14}, + [1888] = {.lex_state = 37, .external_lex_state = 14}, + [1889] = {.lex_state = 57, .external_lex_state = 10}, + [1890] = {.lex_state = 37, .external_lex_state = 14}, + [1891] = {.lex_state = 57, .external_lex_state = 10}, + [1892] = {.lex_state = 37, .external_lex_state = 14}, + [1893] = {.lex_state = 57, .external_lex_state = 12}, [1894] = {.lex_state = 57, .external_lex_state = 13}, - [1895] = {.lex_state = 57, .external_lex_state = 12}, + [1895] = {.lex_state = 57, .external_lex_state = 13}, [1896] = {.lex_state = 57, .external_lex_state = 12}, - [1897] = {.lex_state = 57, .external_lex_state = 10}, + [1897] = {.lex_state = 57, .external_lex_state = 12}, [1898] = {.lex_state = 57, .external_lex_state = 12}, - [1899] = {.lex_state = 57, .external_lex_state = 10}, + [1899] = {.lex_state = 57, .external_lex_state = 11}, [1900] = {.lex_state = 57, .external_lex_state = 12}, - [1901] = {.lex_state = 57, .external_lex_state = 10}, - [1902] = {.lex_state = 57, .external_lex_state = 10}, - [1903] = {.lex_state = 57, .external_lex_state = 12}, - [1904] = {.lex_state = 57, .external_lex_state = 11}, - [1905] = {.lex_state = 36, .external_lex_state = 14}, - [1906] = {.lex_state = 57, .external_lex_state = 12}, - [1907] = {.lex_state = 57, .external_lex_state = 13}, - [1908] = {.lex_state = 57, .external_lex_state = 9}, - [1909] = {.lex_state = 57, .external_lex_state = 12}, + [1901] = {.lex_state = 57, .external_lex_state = 12}, + [1902] = {.lex_state = 57, .external_lex_state = 13}, + [1903] = {.lex_state = 57, .external_lex_state = 11}, + [1904] = {.lex_state = 57, .external_lex_state = 10}, + [1905] = {.lex_state = 57, .external_lex_state = 11}, + [1906] = {.lex_state = 57, .external_lex_state = 11}, + [1907] = {.lex_state = 57, .external_lex_state = 11}, + [1908] = {.lex_state = 34, .external_lex_state = 13}, + [1909] = {.lex_state = 57, .external_lex_state = 11}, [1910] = {.lex_state = 57, .external_lex_state = 11}, - [1911] = {.lex_state = 57, .external_lex_state = 12}, - [1912] = {.lex_state = 57, .external_lex_state = 13}, + [1911] = {.lex_state = 57, .external_lex_state = 11}, + [1912] = {.lex_state = 34, .external_lex_state = 13}, [1913] = {.lex_state = 57, .external_lex_state = 11}, - [1914] = {.lex_state = 57, .external_lex_state = 10}, - [1915] = {.lex_state = 57, .external_lex_state = 13}, - [1916] = {.lex_state = 33, .external_lex_state = 9}, - [1917] = {.lex_state = 57, .external_lex_state = 9}, + [1914] = {.lex_state = 57, .external_lex_state = 11}, + [1915] = {.lex_state = 57, .external_lex_state = 12}, + [1916] = {.lex_state = 57, .external_lex_state = 11}, + [1917] = {.lex_state = 57, .external_lex_state = 10}, [1918] = {.lex_state = 57, .external_lex_state = 11}, [1919] = {.lex_state = 57, .external_lex_state = 10}, [1920] = {.lex_state = 57, .external_lex_state = 12}, - [1921] = {.lex_state = 57, .external_lex_state = 13}, - [1922] = {.lex_state = 57, .external_lex_state = 12}, - [1923] = {.lex_state = 57, .external_lex_state = 13}, - [1924] = {.lex_state = 57, .external_lex_state = 10}, - [1925] = {.lex_state = 57, .external_lex_state = 10}, - [1926] = {.lex_state = 57, .external_lex_state = 10}, - [1927] = {.lex_state = 57, .external_lex_state = 13}, - [1928] = {.lex_state = 57, .external_lex_state = 13}, - [1929] = {.lex_state = 57, .external_lex_state = 12}, - [1930] = {.lex_state = 57, .external_lex_state = 10}, - [1931] = {.lex_state = 57, .external_lex_state = 13}, - [1932] = {.lex_state = 57, .external_lex_state = 12}, - [1933] = {.lex_state = 57, .external_lex_state = 12}, + [1921] = {.lex_state = 57, .external_lex_state = 9}, + [1922] = {.lex_state = 57, .external_lex_state = 11}, + [1923] = {.lex_state = 57, .external_lex_state = 11}, + [1924] = {.lex_state = 34, .external_lex_state = 9}, + [1925] = {.lex_state = 57, .external_lex_state = 12}, + [1926] = {.lex_state = 57, .external_lex_state = 11}, + [1927] = {.lex_state = 57, .external_lex_state = 11}, + [1928] = {.lex_state = 57, .external_lex_state = 11}, + [1929] = {.lex_state = 57, .external_lex_state = 9}, + [1930] = {.lex_state = 57, .external_lex_state = 11}, + [1931] = {.lex_state = 57, .external_lex_state = 11}, + [1932] = {.lex_state = 57, .external_lex_state = 11}, + [1933] = {.lex_state = 57, .external_lex_state = 11}, [1934] = {.lex_state = 57, .external_lex_state = 11}, - [1935] = {.lex_state = 36, .external_lex_state = 14}, - [1936] = {.lex_state = 57, .external_lex_state = 11}, - [1937] = {.lex_state = 57, .external_lex_state = 10}, - [1938] = {.lex_state = 57, .external_lex_state = 11}, - [1939] = {.lex_state = 57, .external_lex_state = 10}, - [1940] = {.lex_state = 57, .external_lex_state = 10}, - [1941] = {.lex_state = 33, .external_lex_state = 9}, - [1942] = {.lex_state = 57, .external_lex_state = 13}, - [1943] = {.lex_state = 57, .external_lex_state = 13}, - [1944] = {.lex_state = 57, .external_lex_state = 10}, - [1945] = {.lex_state = 57, .external_lex_state = 13}, - [1946] = {.lex_state = 57, .external_lex_state = 13}, - [1947] = {.lex_state = 57, .external_lex_state = 13}, - [1948] = {.lex_state = 57, .external_lex_state = 11}, + [1935] = {.lex_state = 57, .external_lex_state = 11}, + [1936] = {.lex_state = 57, .external_lex_state = 9}, + [1937] = {.lex_state = 57, .external_lex_state = 11}, + [1938] = {.lex_state = 57, .external_lex_state = 9}, + [1939] = {.lex_state = 3, .external_lex_state = 10}, + [1940] = {.lex_state = 34, .external_lex_state = 13}, + [1941] = {.lex_state = 57, .external_lex_state = 10}, + [1942] = {.lex_state = 57, .external_lex_state = 11}, + [1943] = {.lex_state = 3, .external_lex_state = 10}, + [1944] = {.lex_state = 3, .external_lex_state = 10}, + [1945] = {.lex_state = 57, .external_lex_state = 10}, + [1946] = {.lex_state = 57, .external_lex_state = 10}, + [1947] = {.lex_state = 57, .external_lex_state = 9}, + [1948] = {.lex_state = 57, .external_lex_state = 10}, [1949] = {.lex_state = 57, .external_lex_state = 9}, - [1950] = {.lex_state = 57, .external_lex_state = 12}, - [1951] = {.lex_state = 57, .external_lex_state = 13}, + [1950] = {.lex_state = 57, .external_lex_state = 11}, + [1951] = {.lex_state = 57, .external_lex_state = 11}, [1952] = {.lex_state = 57, .external_lex_state = 10}, [1953] = {.lex_state = 57, .external_lex_state = 11}, - [1954] = {.lex_state = 57, .external_lex_state = 12}, - [1955] = {.lex_state = 36, .external_lex_state = 14}, - [1956] = {.lex_state = 36, .external_lex_state = 14}, - [1957] = {.lex_state = 57, .external_lex_state = 11}, - [1958] = {.lex_state = 33, .external_lex_state = 9}, - [1959] = {.lex_state = 57, .external_lex_state = 13}, + [1954] = {.lex_state = 57, .external_lex_state = 13}, + [1955] = {.lex_state = 57, .external_lex_state = 11}, + [1956] = {.lex_state = 57, .external_lex_state = 11}, + [1957] = {.lex_state = 57, .external_lex_state = 10}, + [1958] = {.lex_state = 57, .external_lex_state = 11}, + [1959] = {.lex_state = 57, .external_lex_state = 11}, [1960] = {.lex_state = 57, .external_lex_state = 10}, - [1961] = {.lex_state = 57, .external_lex_state = 11}, - [1962] = {.lex_state = 57, .external_lex_state = 12}, - [1963] = {.lex_state = 57, .external_lex_state = 13}, - [1964] = {.lex_state = 36, .external_lex_state = 14}, - [1965] = {.lex_state = 36, .external_lex_state = 14}, - [1966] = {.lex_state = 36, .external_lex_state = 14}, - [1967] = {.lex_state = 57, .external_lex_state = 10}, - [1968] = {.lex_state = 36, .external_lex_state = 14}, - [1969] = {.lex_state = 57, .external_lex_state = 12}, + [1961] = {.lex_state = 57, .external_lex_state = 10}, + [1962] = {.lex_state = 57, .external_lex_state = 13}, + [1963] = {.lex_state = 57, .external_lex_state = 11}, + [1964] = {.lex_state = 57, .external_lex_state = 9}, + [1965] = {.lex_state = 57, .external_lex_state = 11}, + [1966] = {.lex_state = 57, .external_lex_state = 13}, + [1967] = {.lex_state = 57, .external_lex_state = 15}, + [1968] = {.lex_state = 57, .external_lex_state = 9}, + [1969] = {.lex_state = 57, .external_lex_state = 9}, [1970] = {.lex_state = 57, .external_lex_state = 9}, - [1971] = {.lex_state = 57, .external_lex_state = 13}, - [1972] = {.lex_state = 3, .external_lex_state = 10}, - [1973] = {.lex_state = 57, .external_lex_state = 11}, - [1974] = {.lex_state = 57, .external_lex_state = 11}, - [1975] = {.lex_state = 57, .external_lex_state = 10}, - [1976] = {.lex_state = 57, .external_lex_state = 11}, - [1977] = {.lex_state = 57, .external_lex_state = 11}, + [1971] = {.lex_state = 57, .external_lex_state = 9}, + [1972] = {.lex_state = 34, .external_lex_state = 11}, + [1973] = {.lex_state = 57, .external_lex_state = 9}, + [1974] = {.lex_state = 57, .external_lex_state = 13}, + [1975] = {.lex_state = 57, .external_lex_state = 13}, + [1976] = {.lex_state = 57, .external_lex_state = 15}, + [1977] = {.lex_state = 57, .external_lex_state = 9}, [1978] = {.lex_state = 57, .external_lex_state = 11}, - [1979] = {.lex_state = 57, .external_lex_state = 11}, - [1980] = {.lex_state = 57, .external_lex_state = 10}, - [1981] = {.lex_state = 57, .external_lex_state = 11}, - [1982] = {.lex_state = 33, .external_lex_state = 13}, - [1983] = {.lex_state = 3, .external_lex_state = 10}, - [1984] = {.lex_state = 57, .external_lex_state = 11}, - [1985] = {.lex_state = 57, .external_lex_state = 11}, - [1986] = {.lex_state = 57, .external_lex_state = 11}, - [1987] = {.lex_state = 57, .external_lex_state = 12}, - [1988] = {.lex_state = 57, .external_lex_state = 11}, - [1989] = {.lex_state = 57, .external_lex_state = 10}, - [1990] = {.lex_state = 57, .external_lex_state = 9}, - [1991] = {.lex_state = 57, .external_lex_state = 11}, - [1992] = {.lex_state = 57, .external_lex_state = 13}, - [1993] = {.lex_state = 33, .external_lex_state = 13}, + [1979] = {.lex_state = 57, .external_lex_state = 15}, + [1980] = {.lex_state = 57, .external_lex_state = 13}, + [1981] = {.lex_state = 34, .external_lex_state = 11}, + [1982] = {.lex_state = 57, .external_lex_state = 9}, + [1983] = {.lex_state = 57, .external_lex_state = 9}, + [1984] = {.lex_state = 57, .external_lex_state = 15}, + [1985] = {.lex_state = 57, .external_lex_state = 10}, + [1986] = {.lex_state = 57, .external_lex_state = 9}, + [1987] = {.lex_state = 57, .external_lex_state = 11}, + [1988] = {.lex_state = 34, .external_lex_state = 13}, + [1989] = {.lex_state = 57, .external_lex_state = 9}, + [1990] = {.lex_state = 57, .external_lex_state = 15}, + [1991] = {.lex_state = 57, .external_lex_state = 9}, + [1992] = {.lex_state = 57, .external_lex_state = 9}, + [1993] = {.lex_state = 57, .external_lex_state = 11}, [1994] = {.lex_state = 57, .external_lex_state = 11}, [1995] = {.lex_state = 57, .external_lex_state = 11}, - [1996] = {.lex_state = 57, .external_lex_state = 11}, - [1997] = {.lex_state = 57, .external_lex_state = 11}, - [1998] = {.lex_state = 3, .external_lex_state = 10}, - [1999] = {.lex_state = 57, .external_lex_state = 11}, - [2000] = {.lex_state = 57, .external_lex_state = 11}, - [2001] = {.lex_state = 57, .external_lex_state = 10}, - [2002] = {.lex_state = 57, .external_lex_state = 13}, - [2003] = {.lex_state = 57, .external_lex_state = 11}, - [2004] = {.lex_state = 57, .external_lex_state = 10}, - [2005] = {.lex_state = 57, .external_lex_state = 10}, + [1996] = {.lex_state = 57, .external_lex_state = 9}, + [1997] = {.lex_state = 57, .external_lex_state = 9}, + [1998] = {.lex_state = 57, .external_lex_state = 13}, + [1999] = {.lex_state = 57, .external_lex_state = 10}, + [2000] = {.lex_state = 57, .external_lex_state = 9}, + [2001] = {.lex_state = 57, .external_lex_state = 13}, + [2002] = {.lex_state = 57, .external_lex_state = 9}, + [2003] = {.lex_state = 57, .external_lex_state = 9}, + [2004] = {.lex_state = 57, .external_lex_state = 11}, + [2005] = {.lex_state = 57, .external_lex_state = 16}, [2006] = {.lex_state = 57, .external_lex_state = 11}, [2007] = {.lex_state = 57, .external_lex_state = 11}, - [2008] = {.lex_state = 57, .external_lex_state = 10}, + [2008] = {.lex_state = 57, .external_lex_state = 13}, [2009] = {.lex_state = 57, .external_lex_state = 11}, - [2010] = {.lex_state = 57, .external_lex_state = 11}, - [2011] = {.lex_state = 57, .external_lex_state = 11}, - [2012] = {.lex_state = 57, .external_lex_state = 11}, - [2013] = {.lex_state = 57, .external_lex_state = 9}, - [2014] = {.lex_state = 33, .external_lex_state = 13}, - [2015] = {.lex_state = 57, .external_lex_state = 10}, - [2016] = {.lex_state = 33, .external_lex_state = 9}, - [2017] = {.lex_state = 57, .external_lex_state = 10}, - [2018] = {.lex_state = 57, .external_lex_state = 11}, - [2019] = {.lex_state = 57, .external_lex_state = 10}, - [2020] = {.lex_state = 57, .external_lex_state = 11}, - [2021] = {.lex_state = 57, .external_lex_state = 11}, - [2022] = {.lex_state = 57, .external_lex_state = 9}, - [2023] = {.lex_state = 57, .external_lex_state = 11}, - [2024] = {.lex_state = 57, .external_lex_state = 11}, - [2025] = {.lex_state = 57, .external_lex_state = 12}, - [2026] = {.lex_state = 57, .external_lex_state = 9}, + [2010] = {.lex_state = 39, .external_lex_state = 11}, + [2011] = {.lex_state = 57, .external_lex_state = 13}, + [2012] = {.lex_state = 57, .external_lex_state = 9}, + [2013] = {.lex_state = 57, .external_lex_state = 12}, + [2014] = {.lex_state = 57, .external_lex_state = 10}, + [2015] = {.lex_state = 57, .external_lex_state = 12}, + [2016] = {.lex_state = 57, .external_lex_state = 11}, + [2017] = {.lex_state = 57, .external_lex_state = 13}, + [2018] = {.lex_state = 39, .external_lex_state = 11}, + [2019] = {.lex_state = 57, .external_lex_state = 9}, + [2020] = {.lex_state = 57, .external_lex_state = 10}, + [2021] = {.lex_state = 57, .external_lex_state = 13}, + [2022] = {.lex_state = 57, .external_lex_state = 10}, + [2023] = {.lex_state = 57, .external_lex_state = 9}, + [2024] = {.lex_state = 57, .external_lex_state = 9}, + [2025] = {.lex_state = 57, .external_lex_state = 13}, + [2026] = {.lex_state = 57, .external_lex_state = 11}, [2027] = {.lex_state = 57, .external_lex_state = 11}, - [2028] = {.lex_state = 57, .external_lex_state = 11}, - [2029] = {.lex_state = 57, .external_lex_state = 9}, - [2030] = {.lex_state = 57, .external_lex_state = 9}, - [2031] = {.lex_state = 33, .external_lex_state = 13}, + [2028] = {.lex_state = 57, .external_lex_state = 13}, + [2029] = {.lex_state = 57, .external_lex_state = 13}, + [2030] = {.lex_state = 57, .external_lex_state = 11}, + [2031] = {.lex_state = 57, .external_lex_state = 13}, [2032] = {.lex_state = 57, .external_lex_state = 9}, - [2033] = {.lex_state = 33, .external_lex_state = 11}, + [2033] = {.lex_state = 57, .external_lex_state = 10}, [2034] = {.lex_state = 57, .external_lex_state = 9}, - [2035] = {.lex_state = 57, .external_lex_state = 9}, - [2036] = {.lex_state = 57, .external_lex_state = 9}, - [2037] = {.lex_state = 57, .external_lex_state = 9}, - [2038] = {.lex_state = 57, .external_lex_state = 11}, - [2039] = {.lex_state = 57, .external_lex_state = 9}, - [2040] = {.lex_state = 57, .external_lex_state = 9}, - [2041] = {.lex_state = 57, .external_lex_state = 9}, - [2042] = {.lex_state = 57, .external_lex_state = 13}, - [2043] = {.lex_state = 57, .external_lex_state = 9}, - [2044] = {.lex_state = 57, .external_lex_state = 13}, - [2045] = {.lex_state = 57, .external_lex_state = 11}, - [2046] = {.lex_state = 57, .external_lex_state = 9}, - [2047] = {.lex_state = 57, .external_lex_state = 9}, - [2048] = {.lex_state = 57, .external_lex_state = 11}, - [2049] = {.lex_state = 57, .external_lex_state = 9}, - [2050] = {.lex_state = 57, .external_lex_state = 9}, - [2051] = {.lex_state = 57, .external_lex_state = 9}, - [2052] = {.lex_state = 57, .external_lex_state = 9}, - [2053] = {.lex_state = 57, .external_lex_state = 9}, - [2054] = {.lex_state = 57, .external_lex_state = 9}, - [2055] = {.lex_state = 33, .external_lex_state = 11}, - [2056] = {.lex_state = 57, .external_lex_state = 13}, + [2035] = {.lex_state = 57, .external_lex_state = 12}, + [2036] = {.lex_state = 57, .external_lex_state = 12}, + [2037] = {.lex_state = 34, .external_lex_state = 11}, + [2038] = {.lex_state = 57, .external_lex_state = 13}, + [2039] = {.lex_state = 57, .external_lex_state = 13}, + [2040] = {.lex_state = 57, .external_lex_state = 13}, + [2041] = {.lex_state = 57, .external_lex_state = 12}, + [2042] = {.lex_state = 57, .external_lex_state = 11}, + [2043] = {.lex_state = 57, .external_lex_state = 16}, + [2044] = {.lex_state = 57, .external_lex_state = 16}, + [2045] = {.lex_state = 57, .external_lex_state = 13}, + [2046] = {.lex_state = 57, .external_lex_state = 13}, + [2047] = {.lex_state = 57, .external_lex_state = 12}, + [2048] = {.lex_state = 57, .external_lex_state = 12}, + [2049] = {.lex_state = 57, .external_lex_state = 13}, + [2050] = {.lex_state = 57, .external_lex_state = 11}, + [2051] = {.lex_state = 57, .external_lex_state = 13}, + [2052] = {.lex_state = 57, .external_lex_state = 11}, + [2053] = {.lex_state = 57, .external_lex_state = 13}, + [2054] = {.lex_state = 57, .external_lex_state = 11}, + [2055] = {.lex_state = 57, .external_lex_state = 11}, + [2056] = {.lex_state = 34, .external_lex_state = 11}, [2057] = {.lex_state = 57, .external_lex_state = 11}, [2058] = {.lex_state = 57, .external_lex_state = 10}, - [2059] = {.lex_state = 57, .external_lex_state = 13}, - [2060] = {.lex_state = 57, .external_lex_state = 11}, - [2061] = {.lex_state = 57, .external_lex_state = 13}, - [2062] = {.lex_state = 57, .external_lex_state = 10}, - [2063] = {.lex_state = 57, .external_lex_state = 11}, - [2064] = {.lex_state = 57, .external_lex_state = 11}, - [2065] = {.lex_state = 57, .external_lex_state = 13}, - [2066] = {.lex_state = 33, .external_lex_state = 11}, - [2067] = {.lex_state = 57, .external_lex_state = 11}, - [2068] = {.lex_state = 57, .external_lex_state = 11}, - [2069] = {.lex_state = 57, .external_lex_state = 11}, - [2070] = {.lex_state = 57, .external_lex_state = 11}, + [2059] = {.lex_state = 57, .external_lex_state = 10}, + [2060] = {.lex_state = 57, .external_lex_state = 10}, + [2061] = {.lex_state = 57, .external_lex_state = 9}, + [2062] = {.lex_state = 57, .external_lex_state = 12}, + [2063] = {.lex_state = 57, .external_lex_state = 9}, + [2064] = {.lex_state = 57, .external_lex_state = 12}, + [2065] = {.lex_state = 57, .external_lex_state = 11}, + [2066] = {.lex_state = 57, .external_lex_state = 12}, + [2067] = {.lex_state = 57, .external_lex_state = 16}, + [2068] = {.lex_state = 57, .external_lex_state = 13}, + [2069] = {.lex_state = 57, .external_lex_state = 13}, + [2070] = {.lex_state = 57, .external_lex_state = 9}, [2071] = {.lex_state = 57, .external_lex_state = 13}, - [2072] = {.lex_state = 57, .external_lex_state = 13}, + [2072] = {.lex_state = 39, .external_lex_state = 11}, [2073] = {.lex_state = 57, .external_lex_state = 13}, - [2074] = {.lex_state = 57, .external_lex_state = 13}, - [2075] = {.lex_state = 57, .external_lex_state = 12}, + [2074] = {.lex_state = 57, .external_lex_state = 9}, + [2075] = {.lex_state = 57, .external_lex_state = 10}, [2076] = {.lex_state = 57, .external_lex_state = 13}, - [2077] = {.lex_state = 57, .external_lex_state = 12}, - [2078] = {.lex_state = 57, .external_lex_state = 10}, - [2079] = {.lex_state = 57, .external_lex_state = 13}, - [2080] = {.lex_state = 57, .external_lex_state = 9}, + [2077] = {.lex_state = 57, .external_lex_state = 16}, + [2078] = {.lex_state = 57, .external_lex_state = 9}, + [2079] = {.lex_state = 57, .external_lex_state = 11}, + [2080] = {.lex_state = 57, .external_lex_state = 12}, [2081] = {.lex_state = 57, .external_lex_state = 12}, - [2082] = {.lex_state = 57, .external_lex_state = 13}, - [2083] = {.lex_state = 57, .external_lex_state = 10}, - [2084] = {.lex_state = 57, .external_lex_state = 9}, - [2085] = {.lex_state = 57, .external_lex_state = 13}, - [2086] = {.lex_state = 57, .external_lex_state = 13}, - [2087] = {.lex_state = 57, .external_lex_state = 13}, - [2088] = {.lex_state = 57, .external_lex_state = 12}, + [2082] = {.lex_state = 57, .external_lex_state = 12}, + [2083] = {.lex_state = 57, .external_lex_state = 12}, + [2084] = {.lex_state = 57, .external_lex_state = 10}, + [2085] = {.lex_state = 57, .external_lex_state = 10}, + [2086] = {.lex_state = 57, .external_lex_state = 12}, + [2087] = {.lex_state = 3, .external_lex_state = 10}, + [2088] = {.lex_state = 57, .external_lex_state = 11}, [2089] = {.lex_state = 57, .external_lex_state = 13}, - [2090] = {.lex_state = 57, .external_lex_state = 12}, - [2091] = {.lex_state = 57, .external_lex_state = 9}, - [2092] = {.lex_state = 57, .external_lex_state = 12}, - [2093] = {.lex_state = 57, .external_lex_state = 13}, - [2094] = {.lex_state = 38, .external_lex_state = 11}, - [2095] = {.lex_state = 57, .external_lex_state = 10}, - [2096] = {.lex_state = 57, .external_lex_state = 9}, + [2090] = {.lex_state = 57, .external_lex_state = 13}, + [2091] = {.lex_state = 57, .external_lex_state = 12}, + [2092] = {.lex_state = 57, .external_lex_state = 13}, + [2093] = {.lex_state = 57, .external_lex_state = 12}, + [2094] = {.lex_state = 57, .external_lex_state = 12}, + [2095] = {.lex_state = 57, .external_lex_state = 13}, + [2096] = {.lex_state = 57, .external_lex_state = 12}, [2097] = {.lex_state = 57, .external_lex_state = 13}, - [2098] = {.lex_state = 57, .external_lex_state = 12}, - [2099] = {.lex_state = 57, .external_lex_state = 9}, + [2098] = {.lex_state = 57, .external_lex_state = 13}, + [2099] = {.lex_state = 57, .external_lex_state = 13}, [2100] = {.lex_state = 57, .external_lex_state = 13}, - [2101] = {.lex_state = 57, .external_lex_state = 10}, - [2102] = {.lex_state = 57, .external_lex_state = 10}, - [2103] = {.lex_state = 57, .external_lex_state = 9}, - [2104] = {.lex_state = 57, .external_lex_state = 11}, - [2105] = {.lex_state = 57, .external_lex_state = 12}, - [2106] = {.lex_state = 57, .external_lex_state = 10}, + [2101] = {.lex_state = 57, .external_lex_state = 12}, + [2102] = {.lex_state = 57, .external_lex_state = 12}, + [2103] = {.lex_state = 57, .external_lex_state = 11}, + [2104] = {.lex_state = 57, .external_lex_state = 12}, + [2105] = {.lex_state = 57, .external_lex_state = 11}, + [2106] = {.lex_state = 3, .external_lex_state = 10}, [2107] = {.lex_state = 57, .external_lex_state = 11}, - [2108] = {.lex_state = 57, .external_lex_state = 11}, - [2109] = {.lex_state = 57, .external_lex_state = 13}, - [2110] = {.lex_state = 57, .external_lex_state = 13}, - [2111] = {.lex_state = 38, .external_lex_state = 11}, - [2112] = {.lex_state = 57, .external_lex_state = 13}, - [2113] = {.lex_state = 57, .external_lex_state = 13}, - [2114] = {.lex_state = 57, .external_lex_state = 13}, - [2115] = {.lex_state = 57, .external_lex_state = 11}, + [2108] = {.lex_state = 3, .external_lex_state = 10}, + [2109] = {.lex_state = 57, .external_lex_state = 12}, + [2110] = {.lex_state = 3, .external_lex_state = 10}, + [2111] = {.lex_state = 57, .external_lex_state = 10}, + [2112] = {.lex_state = 57, .external_lex_state = 12}, + [2113] = {.lex_state = 57, .external_lex_state = 11}, + [2114] = {.lex_state = 57, .external_lex_state = 11}, + [2115] = {.lex_state = 57, .external_lex_state = 9}, [2116] = {.lex_state = 57, .external_lex_state = 12}, - [2117] = {.lex_state = 57, .external_lex_state = 13}, - [2118] = {.lex_state = 57, .external_lex_state = 13}, + [2117] = {.lex_state = 57, .external_lex_state = 9}, + [2118] = {.lex_state = 57, .external_lex_state = 11}, [2119] = {.lex_state = 57, .external_lex_state = 13}, - [2120] = {.lex_state = 57, .external_lex_state = 11}, - [2121] = {.lex_state = 57, .external_lex_state = 11}, - [2122] = {.lex_state = 57, .external_lex_state = 13}, - [2123] = {.lex_state = 57, .external_lex_state = 13}, - [2124] = {.lex_state = 57, .external_lex_state = 13}, - [2125] = {.lex_state = 57, .external_lex_state = 13}, - [2126] = {.lex_state = 57, .external_lex_state = 12}, + [2120] = {.lex_state = 57, .external_lex_state = 13}, + [2121] = {.lex_state = 57, .external_lex_state = 13}, + [2122] = {.lex_state = 57, .external_lex_state = 9}, + [2123] = {.lex_state = 57, .external_lex_state = 9}, + [2124] = {.lex_state = 57, .external_lex_state = 10}, + [2125] = {.lex_state = 3, .external_lex_state = 10}, + [2126] = {.lex_state = 57, .external_lex_state = 11}, [2127] = {.lex_state = 57, .external_lex_state = 12}, - [2128] = {.lex_state = 57, .external_lex_state = 13}, - [2129] = {.lex_state = 57, .external_lex_state = 11}, - [2130] = {.lex_state = 57, .external_lex_state = 13}, + [2128] = {.lex_state = 3, .external_lex_state = 10}, + [2129] = {.lex_state = 3, .external_lex_state = 10}, + [2130] = {.lex_state = 57, .external_lex_state = 10}, [2131] = {.lex_state = 57, .external_lex_state = 13}, - [2132] = {.lex_state = 57, .external_lex_state = 10}, - [2133] = {.lex_state = 57, .external_lex_state = 11}, - [2134] = {.lex_state = 57, .external_lex_state = 11}, - [2135] = {.lex_state = 57, .external_lex_state = 10}, - [2136] = {.lex_state = 57, .external_lex_state = 13}, - [2137] = {.lex_state = 57, .external_lex_state = 9}, - [2138] = {.lex_state = 57, .external_lex_state = 11}, - [2139] = {.lex_state = 57, .external_lex_state = 10}, - [2140] = {.lex_state = 57, .external_lex_state = 9}, - [2141] = {.lex_state = 57, .external_lex_state = 11}, - [2142] = {.lex_state = 57, .external_lex_state = 13}, + [2132] = {.lex_state = 57, .external_lex_state = 13}, + [2133] = {.lex_state = 57, .external_lex_state = 13}, + [2134] = {.lex_state = 57, .external_lex_state = 9}, + [2135] = {.lex_state = 57, .external_lex_state = 13}, + [2136] = {.lex_state = 57, .external_lex_state = 11}, + [2137] = {.lex_state = 57, .external_lex_state = 10}, + [2138] = {.lex_state = 39, .external_lex_state = 11}, + [2139] = {.lex_state = 57, .external_lex_state = 9}, + [2140] = {.lex_state = 57, .external_lex_state = 10}, + [2141] = {.lex_state = 57, .external_lex_state = 10}, + [2142] = {.lex_state = 57, .external_lex_state = 10}, [2143] = {.lex_state = 57, .external_lex_state = 13}, - [2144] = {.lex_state = 57, .external_lex_state = 11}, + [2144] = {.lex_state = 57, .external_lex_state = 13}, [2145] = {.lex_state = 57, .external_lex_state = 13}, - [2146] = {.lex_state = 57, .external_lex_state = 13}, + [2146] = {.lex_state = 57, .external_lex_state = 9}, [2147] = {.lex_state = 57, .external_lex_state = 13}, - [2148] = {.lex_state = 57, .external_lex_state = 12}, - [2149] = {.lex_state = 57, .external_lex_state = 13}, - [2150] = {.lex_state = 57, .external_lex_state = 10}, - [2151] = {.lex_state = 3, .external_lex_state = 10}, - [2152] = {.lex_state = 57, .external_lex_state = 12}, - [2153] = {.lex_state = 57, .external_lex_state = 12}, + [2148] = {.lex_state = 57, .external_lex_state = 13}, + [2149] = {.lex_state = 3, .external_lex_state = 10}, + [2150] = {.lex_state = 57, .external_lex_state = 12}, + [2151] = {.lex_state = 57, .external_lex_state = 12}, + [2152] = {.lex_state = 57, .external_lex_state = 13}, + [2153] = {.lex_state = 57, .external_lex_state = 10}, [2154] = {.lex_state = 57, .external_lex_state = 13}, - [2155] = {.lex_state = 57, .external_lex_state = 10}, + [2155] = {.lex_state = 57, .external_lex_state = 9}, [2156] = {.lex_state = 57, .external_lex_state = 13}, - [2157] = {.lex_state = 57, .external_lex_state = 10}, + [2157] = {.lex_state = 57, .external_lex_state = 11}, [2158] = {.lex_state = 57, .external_lex_state = 13}, - [2159] = {.lex_state = 57, .external_lex_state = 9}, - [2160] = {.lex_state = 57, .external_lex_state = 13}, - [2161] = {.lex_state = 57, .external_lex_state = 13}, - [2162] = {.lex_state = 57, .external_lex_state = 10}, - [2163] = {.lex_state = 57, .external_lex_state = 12}, - [2164] = {.lex_state = 57, .external_lex_state = 12}, - [2165] = {.lex_state = 33, .external_lex_state = 11}, - [2166] = {.lex_state = 57, .external_lex_state = 10}, - [2167] = {.lex_state = 57, .external_lex_state = 10}, + [2159] = {.lex_state = 57, .external_lex_state = 13}, + [2160] = {.lex_state = 57, .external_lex_state = 12}, + [2161] = {.lex_state = 57, .external_lex_state = 12}, + [2162] = {.lex_state = 57, .external_lex_state = 12}, + [2163] = {.lex_state = 57, .external_lex_state = 13}, + [2164] = {.lex_state = 57, .external_lex_state = 13}, + [2165] = {.lex_state = 57, .external_lex_state = 13}, + [2166] = {.lex_state = 57, .external_lex_state = 11}, + [2167] = {.lex_state = 57, .external_lex_state = 13}, [2168] = {.lex_state = 57, .external_lex_state = 12}, [2169] = {.lex_state = 57, .external_lex_state = 12}, - [2170] = {.lex_state = 57, .external_lex_state = 11}, - [2171] = {.lex_state = 57, .external_lex_state = 12}, + [2170] = {.lex_state = 57, .external_lex_state = 10}, + [2171] = {.lex_state = 57, .external_lex_state = 13}, [2172] = {.lex_state = 57, .external_lex_state = 13}, [2173] = {.lex_state = 57, .external_lex_state = 13}, - [2174] = {.lex_state = 57, .external_lex_state = 11}, - [2175] = {.lex_state = 57, .external_lex_state = 9}, - [2176] = {.lex_state = 57, .external_lex_state = 12}, - [2177] = {.lex_state = 57, .external_lex_state = 11}, - [2178] = {.lex_state = 57, .external_lex_state = 10}, - [2179] = {.lex_state = 57, .external_lex_state = 12}, - [2180] = {.lex_state = 57, .external_lex_state = 9}, - [2181] = {.lex_state = 57, .external_lex_state = 13}, + [2174] = {.lex_state = 57, .external_lex_state = 9}, + [2175] = {.lex_state = 57, .external_lex_state = 13}, + [2176] = {.lex_state = 57, .external_lex_state = 9}, + [2177] = {.lex_state = 57, .external_lex_state = 16}, + [2178] = {.lex_state = 39, .external_lex_state = 11}, + [2179] = {.lex_state = 57, .external_lex_state = 13}, + [2180] = {.lex_state = 57, .external_lex_state = 12}, + [2181] = {.lex_state = 57, .external_lex_state = 9}, [2182] = {.lex_state = 57, .external_lex_state = 12}, [2183] = {.lex_state = 57, .external_lex_state = 13}, - [2184] = {.lex_state = 57, .external_lex_state = 12}, - [2185] = {.lex_state = 57, .external_lex_state = 12}, - [2186] = {.lex_state = 57, .external_lex_state = 12}, - [2187] = {.lex_state = 57, .external_lex_state = 12}, - [2188] = {.lex_state = 57, .external_lex_state = 9}, - [2189] = {.lex_state = 57, .external_lex_state = 9}, - [2190] = {.lex_state = 57, .external_lex_state = 13}, + [2184] = {.lex_state = 57, .external_lex_state = 13}, + [2185] = {.lex_state = 57, .external_lex_state = 11}, + [2186] = {.lex_state = 57, .external_lex_state = 13}, + [2187] = {.lex_state = 57, .external_lex_state = 10}, + [2188] = {.lex_state = 57, .external_lex_state = 13}, + [2189] = {.lex_state = 57, .external_lex_state = 13}, + [2190] = {.lex_state = 57, .external_lex_state = 10}, [2191] = {.lex_state = 57, .external_lex_state = 9}, - [2192] = {.lex_state = 57, .external_lex_state = 11}, + [2192] = {.lex_state = 57, .external_lex_state = 16}, [2193] = {.lex_state = 57, .external_lex_state = 13}, - [2194] = {.lex_state = 57, .external_lex_state = 11}, - [2195] = {.lex_state = 57, .external_lex_state = 10}, - [2196] = {.lex_state = 38, .external_lex_state = 11}, - [2197] = {.lex_state = 38, .external_lex_state = 11}, - [2198] = {.lex_state = 57, .external_lex_state = 13}, - [2199] = {.lex_state = 57, .external_lex_state = 9}, - [2200] = {.lex_state = 57, .external_lex_state = 11}, - [2201] = {.lex_state = 57, .external_lex_state = 12}, - [2202] = {.lex_state = 57, .external_lex_state = 11}, - [2203] = {.lex_state = 38, .external_lex_state = 11}, + [2194] = {.lex_state = 57, .external_lex_state = 13}, + [2195] = {.lex_state = 57, .external_lex_state = 9}, + [2196] = {.lex_state = 57, .external_lex_state = 13}, + [2197] = {.lex_state = 3, .external_lex_state = 10}, + [2198] = {.lex_state = 57, .external_lex_state = 10}, + [2199] = {.lex_state = 57, .external_lex_state = 10}, + [2200] = {.lex_state = 57, .external_lex_state = 13}, + [2201] = {.lex_state = 57, .external_lex_state = 13}, + [2202] = {.lex_state = 57, .external_lex_state = 12}, + [2203] = {.lex_state = 57, .external_lex_state = 9}, [2204] = {.lex_state = 57, .external_lex_state = 13}, - [2205] = {.lex_state = 57, .external_lex_state = 12}, + [2205] = {.lex_state = 57, .external_lex_state = 13}, [2206] = {.lex_state = 57, .external_lex_state = 13}, - [2207] = {.lex_state = 57, .external_lex_state = 13}, - [2208] = {.lex_state = 57, .external_lex_state = 13}, - [2209] = {.lex_state = 57, .external_lex_state = 11}, - [2210] = {.lex_state = 57, .external_lex_state = 12}, - [2211] = {.lex_state = 57, .external_lex_state = 13}, - [2212] = {.lex_state = 57, .external_lex_state = 10}, - [2213] = {.lex_state = 3, .external_lex_state = 10}, + [2207] = {.lex_state = 34, .external_lex_state = 11}, + [2208] = {.lex_state = 57, .external_lex_state = 12}, + [2209] = {.lex_state = 57, .external_lex_state = 13}, + [2210] = {.lex_state = 57, .external_lex_state = 11}, + [2211] = {.lex_state = 57, .external_lex_state = 11}, + [2212] = {.lex_state = 57, .external_lex_state = 13}, + [2213] = {.lex_state = 57, .external_lex_state = 11}, [2214] = {.lex_state = 57, .external_lex_state = 13}, - [2215] = {.lex_state = 33, .external_lex_state = 11}, - [2216] = {.lex_state = 57, .external_lex_state = 9}, - [2217] = {.lex_state = 57, .external_lex_state = 11}, - [2218] = {.lex_state = 57, .external_lex_state = 10}, + [2215] = {.lex_state = 57, .external_lex_state = 16}, + [2216] = {.lex_state = 57, .external_lex_state = 12}, + [2217] = {.lex_state = 57, .external_lex_state = 12}, + [2218] = {.lex_state = 57, .external_lex_state = 11}, [2219] = {.lex_state = 57, .external_lex_state = 10}, - [2220] = {.lex_state = 57, .external_lex_state = 11}, - [2221] = {.lex_state = 57, .external_lex_state = 13}, - [2222] = {.lex_state = 3, .external_lex_state = 10}, - [2223] = {.lex_state = 57, .external_lex_state = 10}, - [2224] = {.lex_state = 57, .external_lex_state = 13}, - [2225] = {.lex_state = 57, .external_lex_state = 9}, - [2226] = {.lex_state = 57, .external_lex_state = 11}, - [2227] = {.lex_state = 3, .external_lex_state = 10}, - [2228] = {.lex_state = 57, .external_lex_state = 13}, - [2229] = {.lex_state = 57, .external_lex_state = 13}, - [2230] = {.lex_state = 57, .external_lex_state = 13}, - [2231] = {.lex_state = 57, .external_lex_state = 9}, - [2232] = {.lex_state = 3, .external_lex_state = 10}, + [2220] = {.lex_state = 57, .external_lex_state = 9}, + [2221] = {.lex_state = 57, .external_lex_state = 15}, + [2222] = {.lex_state = 57, .external_lex_state = 13}, + [2223] = {.lex_state = 57, .external_lex_state = 9}, + [2224] = {.lex_state = 57, .external_lex_state = 9}, + [2225] = {.lex_state = 57, .external_lex_state = 13}, + [2226] = {.lex_state = 34, .external_lex_state = 11}, + [2227] = {.lex_state = 57, .external_lex_state = 13}, + [2228] = {.lex_state = 57, .external_lex_state = 11}, + [2229] = {.lex_state = 57, .external_lex_state = 9}, + [2230] = {.lex_state = 57, .external_lex_state = 15}, + [2231] = {.lex_state = 57, .external_lex_state = 11}, + [2232] = {.lex_state = 57, .external_lex_state = 12}, [2233] = {.lex_state = 57, .external_lex_state = 12}, [2234] = {.lex_state = 57, .external_lex_state = 11}, - [2235] = {.lex_state = 57, .external_lex_state = 13}, + [2235] = {.lex_state = 57, .external_lex_state = 15}, [2236] = {.lex_state = 57, .external_lex_state = 9}, - [2237] = {.lex_state = 57, .external_lex_state = 13}, - [2238] = {.lex_state = 57, .external_lex_state = 13}, - [2239] = {.lex_state = 57, .external_lex_state = 13}, - [2240] = {.lex_state = 57, .external_lex_state = 13}, - [2241] = {.lex_state = 57, .external_lex_state = 12}, + [2237] = {.lex_state = 57, .external_lex_state = 11}, + [2238] = {.lex_state = 57, .external_lex_state = 15}, + [2239] = {.lex_state = 57, .external_lex_state = 15}, + [2240] = {.lex_state = 57, .external_lex_state = 15}, + [2241] = {.lex_state = 57, .external_lex_state = 9}, [2242] = {.lex_state = 57, .external_lex_state = 12}, - [2243] = {.lex_state = 57, .external_lex_state = 12}, - [2244] = {.lex_state = 57, .external_lex_state = 12}, - [2245] = {.lex_state = 57, .external_lex_state = 10}, - [2246] = {.lex_state = 57, .external_lex_state = 12}, - [2247] = {.lex_state = 57, .external_lex_state = 9}, - [2248] = {.lex_state = 57, .external_lex_state = 9}, - [2249] = {.lex_state = 57, .external_lex_state = 13}, - [2250] = {.lex_state = 3, .external_lex_state = 10}, - [2251] = {.lex_state = 57, .external_lex_state = 13}, - [2252] = {.lex_state = 3, .external_lex_state = 10}, - [2253] = {.lex_state = 3, .external_lex_state = 10}, - [2254] = {.lex_state = 57, .external_lex_state = 12}, - [2255] = {.lex_state = 57, .external_lex_state = 9}, - [2256] = {.lex_state = 57, .external_lex_state = 9}, - [2257] = {.lex_state = 57, .external_lex_state = 12}, - [2258] = {.lex_state = 57, .external_lex_state = 12}, - [2259] = {.lex_state = 57, .external_lex_state = 13}, + [2243] = {.lex_state = 57, .external_lex_state = 15}, + [2244] = {.lex_state = 57, .external_lex_state = 15}, + [2245] = {.lex_state = 57, .external_lex_state = 15}, + [2246] = {.lex_state = 57, .external_lex_state = 15}, + [2247] = {.lex_state = 57, .external_lex_state = 15}, + [2248] = {.lex_state = 57, .external_lex_state = 15}, + [2249] = {.lex_state = 57, .external_lex_state = 15}, + [2250] = {.lex_state = 57, .external_lex_state = 15}, + [2251] = {.lex_state = 57, .external_lex_state = 9}, + [2252] = {.lex_state = 57, .external_lex_state = 10}, + [2253] = {.lex_state = 57, .external_lex_state = 9}, + [2254] = {.lex_state = 57, .external_lex_state = 15}, + [2255] = {.lex_state = 57, .external_lex_state = 15}, + [2256] = {.lex_state = 57, .external_lex_state = 10}, + [2257] = {.lex_state = 57, .external_lex_state = 9}, + [2258] = {.lex_state = 57, .external_lex_state = 15}, + [2259] = {.lex_state = 57, .external_lex_state = 10}, [2260] = {.lex_state = 57, .external_lex_state = 13}, - [2261] = {.lex_state = 57, .external_lex_state = 13}, - [2262] = {.lex_state = 57, .external_lex_state = 11}, - [2263] = {.lex_state = 3, .external_lex_state = 10}, - [2264] = {.lex_state = 57, .external_lex_state = 13}, - [2265] = {.lex_state = 57, .external_lex_state = 12}, - [2266] = {.lex_state = 57, .external_lex_state = 10}, - [2267] = {.lex_state = 57, .external_lex_state = 11}, - [2268] = {.lex_state = 57, .external_lex_state = 10}, - [2269] = {.lex_state = 57, .external_lex_state = 13}, - [2270] = {.lex_state = 57, .external_lex_state = 11}, + [2261] = {.lex_state = 39, .external_lex_state = 11}, + [2262] = {.lex_state = 57, .external_lex_state = 10}, + [2263] = {.lex_state = 57, .external_lex_state = 15}, + [2264] = {.lex_state = 57, .external_lex_state = 15}, + [2265] = {.lex_state = 57, .external_lex_state = 9}, + [2266] = {.lex_state = 57, .external_lex_state = 15}, + [2267] = {.lex_state = 57, .external_lex_state = 15}, + [2268] = {.lex_state = 57, .external_lex_state = 15}, + [2269] = {.lex_state = 39, .external_lex_state = 11}, + [2270] = {.lex_state = 57, .external_lex_state = 15}, [2271] = {.lex_state = 57, .external_lex_state = 13}, - [2272] = {.lex_state = 57, .external_lex_state = 11}, + [2272] = {.lex_state = 57, .external_lex_state = 13}, [2273] = {.lex_state = 57, .external_lex_state = 12}, - [2274] = {.lex_state = 57, .external_lex_state = 13}, + [2274] = {.lex_state = 57, .external_lex_state = 12}, [2275] = {.lex_state = 57, .external_lex_state = 13}, - [2276] = {.lex_state = 38, .external_lex_state = 11}, - [2277] = {.lex_state = 57, .external_lex_state = 9}, - [2278] = {.lex_state = 57, .external_lex_state = 9}, - [2279] = {.lex_state = 57, .external_lex_state = 9}, - [2280] = {.lex_state = 57, .external_lex_state = 11}, - [2281] = {.lex_state = 57, .external_lex_state = 9}, - [2282] = {.lex_state = 57, .external_lex_state = 11}, - [2283] = {.lex_state = 57, .external_lex_state = 10}, - [2284] = {.lex_state = 57, .external_lex_state = 10}, - [2285] = {.lex_state = 57, .external_lex_state = 10}, - [2286] = {.lex_state = 57, .external_lex_state = 9}, + [2276] = {.lex_state = 57, .external_lex_state = 13}, + [2277] = {.lex_state = 57, .external_lex_state = 12}, + [2278] = {.lex_state = 39, .external_lex_state = 11}, + [2279] = {.lex_state = 57, .external_lex_state = 13}, + [2280] = {.lex_state = 57, .external_lex_state = 13}, + [2281] = {.lex_state = 39, .external_lex_state = 11}, + [2282] = {.lex_state = 57, .external_lex_state = 12}, + [2283] = {.lex_state = 57, .external_lex_state = 13}, + [2284] = {.lex_state = 57, .external_lex_state = 13}, + [2285] = {.lex_state = 57, .external_lex_state = 13}, + [2286] = {.lex_state = 57, .external_lex_state = 13}, [2287] = {.lex_state = 57, .external_lex_state = 13}, - [2288] = {.lex_state = 57, .external_lex_state = 11}, + [2288] = {.lex_state = 57, .external_lex_state = 9}, [2289] = {.lex_state = 57, .external_lex_state = 12}, - [2290] = {.lex_state = 57, .external_lex_state = 12}, - [2291] = {.lex_state = 57, .external_lex_state = 11}, + [2290] = {.lex_state = 57, .external_lex_state = 11}, + [2291] = {.lex_state = 57, .external_lex_state = 9}, [2292] = {.lex_state = 57, .external_lex_state = 9}, - [2293] = {.lex_state = 57, .external_lex_state = 9}, - [2294] = {.lex_state = 57, .external_lex_state = 13}, - [2295] = {.lex_state = 57, .external_lex_state = 12}, - [2296] = {.lex_state = 57, .external_lex_state = 12}, - [2297] = {.lex_state = 57, .external_lex_state = 9}, - [2298] = {.lex_state = 38, .external_lex_state = 11}, - [2299] = {.lex_state = 57, .external_lex_state = 13}, - [2300] = {.lex_state = 57, .external_lex_state = 9}, - [2301] = {.lex_state = 57, .external_lex_state = 9}, - [2302] = {.lex_state = 57, .external_lex_state = 13}, - [2303] = {.lex_state = 57, .external_lex_state = 12}, - [2304] = {.lex_state = 57, .external_lex_state = 9}, - [2305] = {.lex_state = 38, .external_lex_state = 11}, - [2306] = {.lex_state = 57, .external_lex_state = 9}, - [2307] = {.lex_state = 57, .external_lex_state = 13}, - [2308] = {.lex_state = 38, .external_lex_state = 11}, + [2293] = {.lex_state = 57, .external_lex_state = 15}, + [2294] = {.lex_state = 57, .external_lex_state = 9}, + [2295] = {.lex_state = 57, .external_lex_state = 9}, + [2296] = {.lex_state = 57, .external_lex_state = 9}, + [2297] = {.lex_state = 57, .external_lex_state = 11}, + [2298] = {.lex_state = 39, .external_lex_state = 11}, + [2299] = {.lex_state = 57, .external_lex_state = 11}, + [2300] = {.lex_state = 57, .external_lex_state = 15}, + [2301] = {.lex_state = 57, .external_lex_state = 11}, + [2302] = {.lex_state = 57, .external_lex_state = 11}, + [2303] = {.lex_state = 57, .external_lex_state = 13}, + [2304] = {.lex_state = 57, .external_lex_state = 11}, + [2305] = {.lex_state = 57, .external_lex_state = 9}, + [2306] = {.lex_state = 57, .external_lex_state = 12}, + [2307] = {.lex_state = 57, .external_lex_state = 9}, + [2308] = {.lex_state = 57, .external_lex_state = 15}, [2309] = {.lex_state = 57, .external_lex_state = 11}, - [2310] = {.lex_state = 57, .external_lex_state = 13}, - [2311] = {.lex_state = 57, .external_lex_state = 13}, - [2312] = {.lex_state = 57, .external_lex_state = 9}, - [2313] = {.lex_state = 38, .external_lex_state = 11}, + [2310] = {.lex_state = 39, .external_lex_state = 11}, + [2311] = {.lex_state = 57, .external_lex_state = 10}, + [2312] = {.lex_state = 57, .external_lex_state = 11}, + [2313] = {.lex_state = 57, .external_lex_state = 13}, [2314] = {.lex_state = 57, .external_lex_state = 12}, - [2315] = {.lex_state = 38, .external_lex_state = 11}, - [2316] = {.lex_state = 57, .external_lex_state = 13}, - [2317] = {.lex_state = 57, .external_lex_state = 11}, - [2318] = {.lex_state = 57, .external_lex_state = 9}, + [2315] = {.lex_state = 57, .external_lex_state = 11}, + [2316] = {.lex_state = 57, .external_lex_state = 11}, + [2317] = {.lex_state = 57, .external_lex_state = 10}, + [2318] = {.lex_state = 57, .external_lex_state = 10}, [2319] = {.lex_state = 57, .external_lex_state = 11}, - [2320] = {.lex_state = 57, .external_lex_state = 9}, - [2321] = {.lex_state = 57, .external_lex_state = 12}, + [2320] = {.lex_state = 57, .external_lex_state = 10}, + [2321] = {.lex_state = 57, .external_lex_state = 13}, [2322] = {.lex_state = 57, .external_lex_state = 11}, - [2323] = {.lex_state = 57, .external_lex_state = 11}, - [2324] = {.lex_state = 57, .external_lex_state = 13}, - [2325] = {.lex_state = 57, .external_lex_state = 13}, - [2326] = {.lex_state = 57, .external_lex_state = 12}, - [2327] = {.lex_state = 57, .external_lex_state = 13}, - [2328] = {.lex_state = 57, .external_lex_state = 9}, - [2329] = {.lex_state = 57, .external_lex_state = 9}, - [2330] = {.lex_state = 57, .external_lex_state = 13}, - [2331] = {.lex_state = 33, .external_lex_state = 11}, - [2332] = {.lex_state = 57, .external_lex_state = 9}, - [2333] = {.lex_state = 57, .external_lex_state = 10}, - [2334] = {.lex_state = 57, .external_lex_state = 11}, + [2323] = {.lex_state = 57, .external_lex_state = 10}, + [2324] = {.lex_state = 57, .external_lex_state = 10}, + [2325] = {.lex_state = 57, .external_lex_state = 10}, + [2326] = {.lex_state = 57, .external_lex_state = 11}, + [2327] = {.lex_state = 57, .external_lex_state = 12}, + [2328] = {.lex_state = 57, .external_lex_state = 12}, + [2329] = {.lex_state = 57, .external_lex_state = 13}, + [2330] = {.lex_state = 57, .external_lex_state = 10}, + [2331] = {.lex_state = 57, .external_lex_state = 10}, + [2332] = {.lex_state = 57, .external_lex_state = 13}, + [2333] = {.lex_state = 30, .external_lex_state = 11}, + [2334] = {.lex_state = 57, .external_lex_state = 10}, [2335] = {.lex_state = 57, .external_lex_state = 11}, - [2336] = {.lex_state = 57, .external_lex_state = 10}, - [2337] = {.lex_state = 57, .external_lex_state = 12}, - [2338] = {.lex_state = 57, .external_lex_state = 12}, - [2339] = {.lex_state = 57, .external_lex_state = 11}, - [2340] = {.lex_state = 57, .external_lex_state = 10}, - [2341] = {.lex_state = 57, .external_lex_state = 13}, - [2342] = {.lex_state = 57, .external_lex_state = 11}, - [2343] = {.lex_state = 57, .external_lex_state = 10}, - [2344] = {.lex_state = 57, .external_lex_state = 11}, + [2336] = {.lex_state = 57, .external_lex_state = 11}, + [2337] = {.lex_state = 57, .external_lex_state = 10}, + [2338] = {.lex_state = 30, .external_lex_state = 11}, + [2339] = {.lex_state = 57, .external_lex_state = 13}, + [2340] = {.lex_state = 57, .external_lex_state = 11}, + [2341] = {.lex_state = 57, .external_lex_state = 11}, + [2342] = {.lex_state = 57, .external_lex_state = 13}, + [2343] = {.lex_state = 57, .external_lex_state = 11}, + [2344] = {.lex_state = 57, .external_lex_state = 13}, [2345] = {.lex_state = 57, .external_lex_state = 11}, [2346] = {.lex_state = 57, .external_lex_state = 13}, - [2347] = {.lex_state = 57, .external_lex_state = 12}, - [2348] = {.lex_state = 57, .external_lex_state = 11}, + [2347] = {.lex_state = 57, .external_lex_state = 11}, + [2348] = {.lex_state = 57, .external_lex_state = 13}, [2349] = {.lex_state = 57, .external_lex_state = 10}, - [2350] = {.lex_state = 57, .external_lex_state = 10}, - [2351] = {.lex_state = 57, .external_lex_state = 13}, - [2352] = {.lex_state = 57, .external_lex_state = 11}, - [2353] = {.lex_state = 57, .external_lex_state = 10}, + [2350] = {.lex_state = 57, .external_lex_state = 12}, + [2351] = {.lex_state = 57, .external_lex_state = 10}, + [2352] = {.lex_state = 30, .external_lex_state = 11}, + [2353] = {.lex_state = 57, .external_lex_state = 11}, [2354] = {.lex_state = 57, .external_lex_state = 11}, - [2355] = {.lex_state = 57, .external_lex_state = 10}, - [2356] = {.lex_state = 57, .external_lex_state = 11}, - [2357] = {.lex_state = 57, .external_lex_state = 11}, - [2358] = {.lex_state = 57, .external_lex_state = 11}, - [2359] = {.lex_state = 57, .external_lex_state = 12}, - [2360] = {.lex_state = 57, .external_lex_state = 11}, - [2361] = {.lex_state = 57, .external_lex_state = 11}, - [2362] = {.lex_state = 57, .external_lex_state = 13}, - [2363] = {.lex_state = 30, .external_lex_state = 11}, - [2364] = {.lex_state = 57, .external_lex_state = 11}, - [2365] = {.lex_state = 57, .external_lex_state = 11}, - [2366] = {.lex_state = 30, .external_lex_state = 11}, - [2367] = {.lex_state = 57, .external_lex_state = 13}, + [2355] = {.lex_state = 57, .external_lex_state = 11}, + [2356] = {.lex_state = 57, .external_lex_state = 10}, + [2357] = {.lex_state = 57, .external_lex_state = 12}, + [2358] = {.lex_state = 57, .external_lex_state = 13}, + [2359] = {.lex_state = 57, .external_lex_state = 11}, + [2360] = {.lex_state = 57, .external_lex_state = 10}, + [2361] = {.lex_state = 57, .external_lex_state = 12}, + [2362] = {.lex_state = 57, .external_lex_state = 11}, + [2363] = {.lex_state = 57, .external_lex_state = 11}, + [2364] = {.lex_state = 57, .external_lex_state = 13}, + [2365] = {.lex_state = 30, .external_lex_state = 11}, + [2366] = {.lex_state = 57, .external_lex_state = 11}, + [2367] = {.lex_state = 57, .external_lex_state = 10}, [2368] = {.lex_state = 57, .external_lex_state = 11}, [2369] = {.lex_state = 57, .external_lex_state = 11}, - [2370] = {.lex_state = 57, .external_lex_state = 10}, + [2370] = {.lex_state = 30, .external_lex_state = 11}, [2371] = {.lex_state = 57, .external_lex_state = 11}, [2372] = {.lex_state = 57, .external_lex_state = 11}, - [2373] = {.lex_state = 57, .external_lex_state = 10}, + [2373] = {.lex_state = 57, .external_lex_state = 12}, [2374] = {.lex_state = 57, .external_lex_state = 11}, - [2375] = {.lex_state = 57, .external_lex_state = 10}, - [2376] = {.lex_state = 30, .external_lex_state = 11}, - [2377] = {.lex_state = 57, .external_lex_state = 11}, + [2375] = {.lex_state = 30, .external_lex_state = 11}, + [2376] = {.lex_state = 57, .external_lex_state = 11}, + [2377] = {.lex_state = 57, .external_lex_state = 12}, [2378] = {.lex_state = 57, .external_lex_state = 11}, - [2379] = {.lex_state = 30, .external_lex_state = 11}, - [2380] = {.lex_state = 57, .external_lex_state = 13}, - [2381] = {.lex_state = 57, .external_lex_state = 13}, - [2382] = {.lex_state = 57, .external_lex_state = 10}, - [2383] = {.lex_state = 57, .external_lex_state = 10}, - [2384] = {.lex_state = 57, .external_lex_state = 10}, + [2379] = {.lex_state = 57, .external_lex_state = 12}, + [2380] = {.lex_state = 30, .external_lex_state = 11}, + [2381] = {.lex_state = 57, .external_lex_state = 11}, + [2382] = {.lex_state = 57, .external_lex_state = 13}, + [2383] = {.lex_state = 57, .external_lex_state = 11}, + [2384] = {.lex_state = 57, .external_lex_state = 13}, [2385] = {.lex_state = 30, .external_lex_state = 11}, [2386] = {.lex_state = 57, .external_lex_state = 11}, - [2387] = {.lex_state = 57, .external_lex_state = 10}, - [2388] = {.lex_state = 57, .external_lex_state = 12}, - [2389] = {.lex_state = 57, .external_lex_state = 13}, + [2387] = {.lex_state = 30, .external_lex_state = 11}, + [2388] = {.lex_state = 57, .external_lex_state = 10}, + [2389] = {.lex_state = 57, .external_lex_state = 10}, [2390] = {.lex_state = 30, .external_lex_state = 11}, - [2391] = {.lex_state = 57, .external_lex_state = 11}, + [2391] = {.lex_state = 57, .external_lex_state = 10}, [2392] = {.lex_state = 57, .external_lex_state = 11}, [2393] = {.lex_state = 57, .external_lex_state = 11}, - [2394] = {.lex_state = 57, .external_lex_state = 11}, - [2395] = {.lex_state = 30, .external_lex_state = 11}, - [2396] = {.lex_state = 57, .external_lex_state = 11}, - [2397] = {.lex_state = 57, .external_lex_state = 13}, - [2398] = {.lex_state = 57, .external_lex_state = 10}, - [2399] = {.lex_state = 57, .external_lex_state = 12}, - [2400] = {.lex_state = 30, .external_lex_state = 11}, + [2394] = {.lex_state = 57, .external_lex_state = 12}, + [2395] = {.lex_state = 57, .external_lex_state = 10}, + [2396] = {.lex_state = 57, .external_lex_state = 10}, + [2397] = {.lex_state = 57, .external_lex_state = 11}, + [2398] = {.lex_state = 57, .external_lex_state = 11}, + [2399] = {.lex_state = 57, .external_lex_state = 13}, + [2400] = {.lex_state = 57, .external_lex_state = 10}, [2401] = {.lex_state = 57, .external_lex_state = 11}, [2402] = {.lex_state = 57, .external_lex_state = 10}, [2403] = {.lex_state = 57, .external_lex_state = 11}, - [2404] = {.lex_state = 57, .external_lex_state = 11}, - [2405] = {.lex_state = 30, .external_lex_state = 11}, - [2406] = {.lex_state = 30, .external_lex_state = 11}, - [2407] = {.lex_state = 57, .external_lex_state = 10}, + [2404] = {.lex_state = 30, .external_lex_state = 11}, + [2405] = {.lex_state = 57, .external_lex_state = 13}, + [2406] = {.lex_state = 57, .external_lex_state = 11}, + [2407] = {.lex_state = 57, .external_lex_state = 11}, [2408] = {.lex_state = 57, .external_lex_state = 12}, - [2409] = {.lex_state = 57, .external_lex_state = 12}, + [2409] = {.lex_state = 57, .external_lex_state = 11}, [2410] = {.lex_state = 57, .external_lex_state = 12}, - [2411] = {.lex_state = 30, .external_lex_state = 11}, + [2411] = {.lex_state = 57, .external_lex_state = 10}, [2412] = {.lex_state = 57, .external_lex_state = 11}, [2413] = {.lex_state = 57, .external_lex_state = 13}, - [2414] = {.lex_state = 57, .external_lex_state = 13}, - [2415] = {.lex_state = 30, .external_lex_state = 11}, - [2416] = {.lex_state = 57, .external_lex_state = 10}, - [2417] = {.lex_state = 57, .external_lex_state = 13}, + [2414] = {.lex_state = 57, .external_lex_state = 11}, + [2415] = {.lex_state = 57, .external_lex_state = 11}, + [2416] = {.lex_state = 57, .external_lex_state = 11}, + [2417] = {.lex_state = 57, .external_lex_state = 11}, [2418] = {.lex_state = 57, .external_lex_state = 11}, - [2419] = {.lex_state = 57, .external_lex_state = 10}, - [2420] = {.lex_state = 30, .external_lex_state = 11}, + [2419] = {.lex_state = 57, .external_lex_state = 11}, + [2420] = {.lex_state = 57, .external_lex_state = 11}, [2421] = {.lex_state = 57, .external_lex_state = 11}, - [2422] = {.lex_state = 57, .external_lex_state = 10}, - [2423] = {.lex_state = 57, .external_lex_state = 13}, - [2424] = {.lex_state = 57, .external_lex_state = 10}, + [2422] = {.lex_state = 57, .external_lex_state = 13}, + [2423] = {.lex_state = 57, .external_lex_state = 12}, + [2424] = {.lex_state = 57, .external_lex_state = 13}, [2425] = {.lex_state = 57, .external_lex_state = 11}, - [2426] = {.lex_state = 57, .external_lex_state = 10}, - [2427] = {.lex_state = 57, .external_lex_state = 13}, + [2426] = {.lex_state = 57, .external_lex_state = 13}, + [2427] = {.lex_state = 57, .external_lex_state = 12}, [2428] = {.lex_state = 57, .external_lex_state = 11}, [2429] = {.lex_state = 57, .external_lex_state = 11}, [2430] = {.lex_state = 57, .external_lex_state = 11}, - [2431] = {.lex_state = 57, .external_lex_state = 11}, - [2432] = {.lex_state = 57, .external_lex_state = 11}, - [2433] = {.lex_state = 57, .external_lex_state = 11}, + [2431] = {.lex_state = 57, .external_lex_state = 13}, + [2432] = {.lex_state = 57, .external_lex_state = 10}, + [2433] = {.lex_state = 57, .external_lex_state = 10}, [2434] = {.lex_state = 57, .external_lex_state = 11}, - [2435] = {.lex_state = 57, .external_lex_state = 10}, - [2436] = {.lex_state = 57, .external_lex_state = 11}, + [2435] = {.lex_state = 57, .external_lex_state = 12}, + [2436] = {.lex_state = 30, .external_lex_state = 11}, [2437] = {.lex_state = 57, .external_lex_state = 11}, - [2438] = {.lex_state = 57, .external_lex_state = 11}, - [2439] = {.lex_state = 57, .external_lex_state = 13}, - [2440] = {.lex_state = 57, .external_lex_state = 10}, + [2438] = {.lex_state = 30, .external_lex_state = 11}, + [2439] = {.lex_state = 57, .external_lex_state = 11}, + [2440] = {.lex_state = 57, .external_lex_state = 13}, [2441] = {.lex_state = 57, .external_lex_state = 11}, - [2442] = {.lex_state = 57, .external_lex_state = 13}, - [2443] = {.lex_state = 57, .external_lex_state = 12}, - [2444] = {.lex_state = 57, .external_lex_state = 13}, + [2442] = {.lex_state = 57, .external_lex_state = 11}, + [2443] = {.lex_state = 57, .external_lex_state = 11}, + [2444] = {.lex_state = 57, .external_lex_state = 10}, [2445] = {.lex_state = 57, .external_lex_state = 11}, - [2446] = {.lex_state = 57, .external_lex_state = 13}, + [2446] = {.lex_state = 57, .external_lex_state = 11}, [2447] = {.lex_state = 57, .external_lex_state = 13}, - [2448] = {.lex_state = 57, .external_lex_state = 11}, + [2448] = {.lex_state = 57, .external_lex_state = 12}, [2449] = {.lex_state = 57, .external_lex_state = 11}, - [2450] = {.lex_state = 57, .external_lex_state = 11}, - [2451] = {.lex_state = 57, .external_lex_state = 11}, + [2450] = {.lex_state = 57, .external_lex_state = 13}, + [2451] = {.lex_state = 57, .external_lex_state = 10}, [2452] = {.lex_state = 57, .external_lex_state = 11}, - [2453] = {.lex_state = 57, .external_lex_state = 11}, - [2454] = {.lex_state = 57, .external_lex_state = 13}, - [2455] = {.lex_state = 57, .external_lex_state = 11}, - [2456] = {.lex_state = 57, .external_lex_state = 11}, + [2453] = {.lex_state = 57, .external_lex_state = 10}, + [2454] = {.lex_state = 57, .external_lex_state = 10}, + [2455] = {.lex_state = 57, .external_lex_state = 10}, + [2456] = {.lex_state = 57, .external_lex_state = 10}, [2457] = {.lex_state = 57, .external_lex_state = 11}, [2458] = {.lex_state = 57, .external_lex_state = 12}, [2459] = {.lex_state = 57, .external_lex_state = 13}, - [2460] = {.lex_state = 57, .external_lex_state = 13}, - [2461] = {.lex_state = 57, .external_lex_state = 12}, + [2460] = {.lex_state = 57, .external_lex_state = 11}, + [2461] = {.lex_state = 57, .external_lex_state = 11}, [2462] = {.lex_state = 57, .external_lex_state = 11}, [2463] = {.lex_state = 57, .external_lex_state = 11}, - [2464] = {.lex_state = 57, .external_lex_state = 11}, + [2464] = {.lex_state = 57, .external_lex_state = 13}, [2465] = {.lex_state = 57, .external_lex_state = 11}, [2466] = {.lex_state = 57, .external_lex_state = 11}, [2467] = {.lex_state = 57, .external_lex_state = 11}, [2468] = {.lex_state = 57, .external_lex_state = 11}, - [2469] = {.lex_state = 57, .external_lex_state = 10}, - [2470] = {.lex_state = 57, .external_lex_state = 11}, - [2471] = {.lex_state = 57, .external_lex_state = 11}, - [2472] = {.lex_state = 57, .external_lex_state = 11}, - [2473] = {.lex_state = 57, .external_lex_state = 10}, - [2474] = {.lex_state = 57, .external_lex_state = 12}, + [2469] = {.lex_state = 57, .external_lex_state = 11}, + [2470] = {.lex_state = 57, .external_lex_state = 10}, + [2471] = {.lex_state = 57, .external_lex_state = 10}, + [2472] = {.lex_state = 57, .external_lex_state = 13}, + [2473] = {.lex_state = 57, .external_lex_state = 11}, + [2474] = {.lex_state = 57, .external_lex_state = 11}, [2475] = {.lex_state = 57, .external_lex_state = 11}, - [2476] = {.lex_state = 57, .external_lex_state = 10}, - [2477] = {.lex_state = 57, .external_lex_state = 10}, - [2478] = {.lex_state = 57, .external_lex_state = 13}, - [2479] = {.lex_state = 57, .external_lex_state = 10}, - [2480] = {.lex_state = 57, .external_lex_state = 11}, - [2481] = {.lex_state = 57, .external_lex_state = 12}, - [2482] = {.lex_state = 57, .external_lex_state = 12}, - [2483] = {.lex_state = 57, .external_lex_state = 11}, - [2484] = {.lex_state = 57, .external_lex_state = 13}, - [2485] = {.lex_state = 57, .external_lex_state = 13}, - [2486] = {.lex_state = 57, .external_lex_state = 13}, + [2476] = {.lex_state = 57, .external_lex_state = 11}, + [2477] = {.lex_state = 57, .external_lex_state = 12}, + [2478] = {.lex_state = 57, .external_lex_state = 11}, + [2479] = {.lex_state = 57, .external_lex_state = 13}, + [2480] = {.lex_state = 57, .external_lex_state = 12}, + [2481] = {.lex_state = 57, .external_lex_state = 10}, + [2482] = {.lex_state = 57, .external_lex_state = 11}, + [2483] = {.lex_state = 57, .external_lex_state = 12}, + [2484] = {.lex_state = 57, .external_lex_state = 10}, + [2485] = {.lex_state = 57, .external_lex_state = 11}, + [2486] = {.lex_state = 57, .external_lex_state = 10}, [2487] = {.lex_state = 57, .external_lex_state = 11}, [2488] = {.lex_state = 57, .external_lex_state = 11}, - [2489] = {.lex_state = 30, .external_lex_state = 11}, + [2489] = {.lex_state = 57, .external_lex_state = 12}, [2490] = {.lex_state = 57, .external_lex_state = 10}, [2491] = {.lex_state = 57, .external_lex_state = 11}, - [2492] = {.lex_state = 57, .external_lex_state = 10}, + [2492] = {.lex_state = 57, .external_lex_state = 13}, [2493] = {.lex_state = 57, .external_lex_state = 11}, - [2494] = {.lex_state = 57, .external_lex_state = 11}, - [2495] = {.lex_state = 57, .external_lex_state = 10}, - [2496] = {.lex_state = 57, .external_lex_state = 10}, + [2494] = {.lex_state = 30, .external_lex_state = 11}, + [2495] = {.lex_state = 30, .external_lex_state = 11}, + [2496] = {.lex_state = 57, .external_lex_state = 13}, [2497] = {.lex_state = 57, .external_lex_state = 11}, - [2498] = {.lex_state = 57, .external_lex_state = 11}, - [2499] = {.lex_state = 57, .external_lex_state = 10}, - [2500] = {.lex_state = 57, .external_lex_state = 12}, - [2501] = {.lex_state = 57, .external_lex_state = 12}, - [2502] = {.lex_state = 57, .external_lex_state = 12}, - [2503] = {.lex_state = 57, .external_lex_state = 13}, - [2504] = {.lex_state = 30, .external_lex_state = 11}, + [2498] = {.lex_state = 57, .external_lex_state = 13}, + [2499] = {.lex_state = 57, .external_lex_state = 11}, + [2500] = {.lex_state = 57, .external_lex_state = 11}, + [2501] = {.lex_state = 57, .external_lex_state = 11}, + [2502] = {.lex_state = 57, .external_lex_state = 11}, + [2503] = {.lex_state = 57, .external_lex_state = 11}, + [2504] = {.lex_state = 57, .external_lex_state = 13}, [2505] = {.lex_state = 57, .external_lex_state = 13}, - [2506] = {.lex_state = 57, .external_lex_state = 13}, + [2506] = {.lex_state = 57, .external_lex_state = 11}, [2507] = {.lex_state = 57, .external_lex_state = 11}, - [2508] = {.lex_state = 57, .external_lex_state = 10}, - [2509] = {.lex_state = 57, .external_lex_state = 13}, + [2508] = {.lex_state = 57, .external_lex_state = 11}, + [2509] = {.lex_state = 57, .external_lex_state = 10}, [2510] = {.lex_state = 57, .external_lex_state = 11}, [2511] = {.lex_state = 57, .external_lex_state = 11}, [2512] = {.lex_state = 57, .external_lex_state = 11}, - [2513] = {.lex_state = 57, .external_lex_state = 11}, + [2513] = {.lex_state = 30, .external_lex_state = 11}, [2514] = {.lex_state = 57, .external_lex_state = 11}, - [2515] = {.lex_state = 57, .external_lex_state = 10}, + [2515] = {.lex_state = 57, .external_lex_state = 11}, [2516] = {.lex_state = 57, .external_lex_state = 11}, - [2517] = {.lex_state = 57, .external_lex_state = 12}, - [2518] = {.lex_state = 57, .external_lex_state = 13}, - [2519] = {.lex_state = 57, .external_lex_state = 11}, - [2520] = {.lex_state = 57, .external_lex_state = 10}, - [2521] = {.lex_state = 57, .external_lex_state = 11}, - [2522] = {.lex_state = 57, .external_lex_state = 10}, - [2523] = {.lex_state = 57, .external_lex_state = 11}, - [2524] = {.lex_state = 57, .external_lex_state = 11}, - [2525] = {.lex_state = 57, .external_lex_state = 11}, - [2526] = {.lex_state = 30, .external_lex_state = 11}, - [2527] = {.lex_state = 57, .external_lex_state = 11}, - [2528] = {.lex_state = 57, .external_lex_state = 11}, - [2529] = {.lex_state = 57, .external_lex_state = 10}, - [2530] = {.lex_state = 57, .external_lex_state = 11}, - [2531] = {.lex_state = 57, .external_lex_state = 12}, - [2532] = {.lex_state = 57, .external_lex_state = 10}, - [2533] = {.lex_state = 57, .external_lex_state = 11}, - [2534] = {.lex_state = 57, .external_lex_state = 11}, - [2535] = {.lex_state = 57, .external_lex_state = 11}, - [2536] = {.lex_state = 57, .external_lex_state = 13}, - [2537] = {.lex_state = 57, .external_lex_state = 11}, - [2538] = {.lex_state = 57, .external_lex_state = 11}, - [2539] = {.lex_state = 57, .external_lex_state = 11}, - [2540] = {.lex_state = 57, .external_lex_state = 11}, - [2541] = {.lex_state = 57, .external_lex_state = 11}, - [2542] = {.lex_state = 57, .external_lex_state = 11}, - [2543] = {.lex_state = 57, .external_lex_state = 11}, - [2544] = {.lex_state = 57, .external_lex_state = 12}, + [2517] = {.lex_state = 57, .external_lex_state = 10}, }; enum { @@ -12084,7 +12039,7 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token_RBRACE] = anon_sym_RBRACE, }; -static const bool ts_external_scanner_states[15][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[17][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__newline] = true, [ts_external_token__indent] = true, @@ -12156,6 +12111,15 @@ static const bool ts_external_scanner_states[15][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_string_end] = true, [ts_external_token_comment] = true, }, + [15] = { + [ts_external_token__dedent] = true, + [ts_external_token_comment] = true, + }, + [16] = { + [ts_external_token__newline] = true, + [ts_external_token__indent] = true, + [ts_external_token_comment] = true, + }, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -12266,71 +12230,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_end] = ACTIONS(1), }, [1] = { - [sym_module] = STATE(2507), - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(2084), - [sym_future_import_statement] = STATE(2084), - [sym_import_from_statement] = STATE(2084), - [sym_print_statement] = STATE(2084), - [sym_assert_statement] = STATE(2084), - [sym_expression_statement] = STATE(2084), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2084), - [sym_delete_statement] = STATE(2084), - [sym_raise_statement] = STATE(2084), - [sym_pass_statement] = STATE(2084), - [sym_break_statement] = STATE(2084), - [sym_continue_statement] = STATE(2084), - [sym_if_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_global_statement] = STATE(2084), - [sym_nonlocal_statement] = STATE(2084), - [sym_exec_statement] = STATE(2084), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(1847), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(1847), + [sym_module] = STATE(2497), + [sym__statement] = STATE(54), + [sym__simple_statements] = STATE(54), + [sym_import_statement] = STATE(2012), + [sym_future_import_statement] = STATE(2012), + [sym_import_from_statement] = STATE(2012), + [sym_print_statement] = STATE(2012), + [sym_assert_statement] = STATE(2012), + [sym_expression_statement] = STATE(2012), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2012), + [sym_delete_statement] = STATE(2012), + [sym_raise_statement] = STATE(2012), + [sym_pass_statement] = STATE(2012), + [sym_break_statement] = STATE(2012), + [sym_continue_statement] = STATE(2012), + [sym_if_statement] = STATE(54), + [sym_match_statement] = STATE(54), + [sym_for_statement] = STATE(54), + [sym_while_statement] = STATE(54), + [sym_try_statement] = STATE(54), + [sym_with_statement] = STATE(54), + [sym_function_definition] = STATE(54), + [sym_global_statement] = STATE(2012), + [sym_nonlocal_statement] = STATE(2012), + [sym_exec_statement] = STATE(2012), + [sym_class_definition] = STATE(54), + [sym_decorated_definition] = STATE(54), + [sym_decorator] = STATE(1777), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(54), + [aux_sym_decorated_definition_repeat1] = STATE(1777), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -12378,71 +12342,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(79), }, [2] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(758), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(719), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12490,71 +12454,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(79), }, [3] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(787), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(53), + [sym__simple_statements] = STATE(53), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(53), + [sym_match_statement] = STATE(53), + [sym_for_statement] = STATE(53), + [sym_while_statement] = STATE(53), + [sym_try_statement] = STATE(53), + [sym_with_statement] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(53), + [sym_decorated_definition] = STATE(53), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(677), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(53), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12602,71 +12566,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(79), }, [4] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(869), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(58), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(649), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12710,75 +12674,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(79), }, [5] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(800), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(52), + [sym__simple_statements] = STATE(52), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(52), + [sym_match_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_try_statement] = STATE(52), + [sym_with_statement] = STATE(52), + [sym_function_definition] = STATE(52), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(52), + [sym_decorated_definition] = STATE(52), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(1770), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(52), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12822,75 +12786,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(79), }, [6] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [sym_if_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_global_statement] = STATE(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(718), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(58), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(720), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12938,71 +12902,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(79), }, [7] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(762), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(641), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13050,71 +13014,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(79), }, [8] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(693), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(835), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13158,75 +13122,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(99), [sym_string_start] = ACTIONS(79), }, [9] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(803), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(58), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(824), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13270,75 +13234,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(79), }, [10] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(808), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(783), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13382,75 +13346,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(99), [sym_string_start] = ACTIONS(79), }, [11] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(771), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(58), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(822), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13494,75 +13458,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(79), }, [12] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(812), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(702), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13606,75 +13570,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(79), }, [13] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(822), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(816), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13722,71 +13686,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(79), }, [14] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(827), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(52), + [sym__simple_statements] = STATE(52), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(52), + [sym_match_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_try_statement] = STATE(52), + [sym_with_statement] = STATE(52), + [sym_function_definition] = STATE(52), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(52), + [sym_decorated_definition] = STATE(52), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(1780), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(52), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13830,75 +13794,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(79), }, [15] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(692), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(58), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(811), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13942,75 +13906,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(79), }, [16] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(825), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(797), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14058,71 +14022,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(79), }, [17] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(691), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(796), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14166,75 +14130,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(99), [sym_string_start] = ACTIONS(79), }, [18] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(734), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(55), + [sym__simple_statements] = STATE(55), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(55), + [sym_match_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_try_statement] = STATE(55), + [sym_with_statement] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(55), + [sym_decorated_definition] = STATE(55), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(685), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(55), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14282,71 +14246,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(79), }, [19] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(810), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(792), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14390,75 +14354,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(99), [sym_string_start] = ACTIONS(79), }, [20] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(799), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(728), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14506,71 +14470,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(79), }, [21] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(817), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(709), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14614,75 +14578,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(79), }, [22] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(788), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(57), + [sym__simple_statements] = STATE(57), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(57), + [sym_match_statement] = STATE(57), + [sym_for_statement] = STATE(57), + [sym_while_statement] = STATE(57), + [sym_try_statement] = STATE(57), + [sym_with_statement] = STATE(57), + [sym_function_definition] = STATE(57), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(57), + [sym_decorated_definition] = STATE(57), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(2248), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(57), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14726,75 +14690,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), + [sym__dedent] = ACTIONS(111), [sym_string_start] = ACTIONS(79), }, [23] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(786), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(58), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(789), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14838,75 +14802,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(79), }, [24] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(670), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(58), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(785), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14950,75 +14914,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(79), }, [25] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(784), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(57), + [sym__simple_statements] = STATE(57), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(57), + [sym_match_statement] = STATE(57), + [sym_for_statement] = STATE(57), + [sym_while_statement] = STATE(57), + [sym_try_statement] = STATE(57), + [sym_with_statement] = STATE(57), + [sym_function_definition] = STATE(57), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(57), + [sym_decorated_definition] = STATE(57), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(2270), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(57), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15062,75 +15026,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(111), [sym_string_start] = ACTIONS(79), }, [26] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(862), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(788), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15178,71 +15142,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(79), }, [27] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(755), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(57), + [sym__simple_statements] = STATE(57), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(57), + [sym_match_statement] = STATE(57), + [sym_for_statement] = STATE(57), + [sym_while_statement] = STATE(57), + [sym_try_statement] = STATE(57), + [sym_with_statement] = STATE(57), + [sym_function_definition] = STATE(57), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(57), + [sym_decorated_definition] = STATE(57), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(2263), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(57), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15286,75 +15250,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(111), [sym_string_start] = ACTIONS(79), }, [28] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(819), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(57), + [sym__simple_statements] = STATE(57), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(57), + [sym_match_statement] = STATE(57), + [sym_for_statement] = STATE(57), + [sym_while_statement] = STATE(57), + [sym_try_statement] = STATE(57), + [sym_with_statement] = STATE(57), + [sym_function_definition] = STATE(57), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(57), + [sym_decorated_definition] = STATE(57), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(2255), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(57), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15398,75 +15362,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(111), [sym_string_start] = ACTIONS(79), }, [29] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(778), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(742), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15514,71 +15478,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(79), }, [30] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [sym_if_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_global_statement] = STATE(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(699), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(717), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15622,75 +15586,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(99), [sym_string_start] = ACTIONS(79), }, [31] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(774), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(59), + [sym__simple_statements] = STATE(59), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(59), + [sym_match_statement] = STATE(59), + [sym_for_statement] = STATE(59), + [sym_while_statement] = STATE(59), + [sym_try_statement] = STATE(59), + [sym_with_statement] = STATE(59), + [sym_function_definition] = STATE(59), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(59), + [sym_decorated_definition] = STATE(59), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(698), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(59), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15734,75 +15698,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), + [sym__dedent] = ACTIONS(113), [sym_string_start] = ACTIONS(79), }, [32] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(700), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(59), + [sym__simple_statements] = STATE(59), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(59), + [sym_match_statement] = STATE(59), + [sym_for_statement] = STATE(59), + [sym_while_statement] = STATE(59), + [sym_try_statement] = STATE(59), + [sym_with_statement] = STATE(59), + [sym_function_definition] = STATE(59), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(59), + [sym_decorated_definition] = STATE(59), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(691), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(59), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15846,75 +15810,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(113), [sym_string_start] = ACTIONS(79), }, [33] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(792), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(663), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15958,75 +15922,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(79), }, [34] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(756), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(780), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16070,75 +16034,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(99), [sym_string_start] = ACTIONS(79), }, [35] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(874), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(58), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(757), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16182,75 +16146,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(79), }, [36] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(759), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(58), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(722), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16294,75 +16258,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(79), }, [37] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(883), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(58), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(775), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16406,75 +16370,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(79), }, [38] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(1802), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(57), + [sym__simple_statements] = STATE(57), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(57), + [sym_match_statement] = STATE(57), + [sym_for_statement] = STATE(57), + [sym_while_statement] = STATE(57), + [sym_try_statement] = STATE(57), + [sym_with_statement] = STATE(57), + [sym_function_definition] = STATE(57), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(57), + [sym_decorated_definition] = STATE(57), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(2308), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(57), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16522,71 +16486,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(79), }, [39] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(652), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(58), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(760), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16630,75 +16594,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(79), }, [40] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(801), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(58), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(730), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16742,75 +16706,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(79), }, [41] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(848), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(55), + [sym__simple_statements] = STATE(55), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(55), + [sym_match_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_try_statement] = STATE(55), + [sym_with_statement] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(55), + [sym_decorated_definition] = STATE(55), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(689), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(55), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16854,75 +16818,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(79), }, [42] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(753), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(721), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16970,71 +16934,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(79), }, [43] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(1808), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(57), + [sym__simple_statements] = STATE(57), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(57), + [sym_match_statement] = STATE(57), + [sym_for_statement] = STATE(57), + [sym_while_statement] = STATE(57), + [sym_try_statement] = STATE(57), + [sym_with_statement] = STATE(57), + [sym_function_definition] = STATE(57), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(57), + [sym_decorated_definition] = STATE(57), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(2230), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(57), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17082,71 +17046,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(79), }, [44] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(743), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(53), + [sym__simple_statements] = STATE(53), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(53), + [sym_match_statement] = STATE(53), + [sym_for_statement] = STATE(53), + [sym_while_statement] = STATE(53), + [sym_try_statement] = STATE(53), + [sym_with_statement] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(53), + [sym_decorated_definition] = STATE(53), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(673), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(53), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17190,75 +17154,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(79), }, [45] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(744), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(55), + [sym__simple_statements] = STATE(55), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(55), + [sym_match_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_try_statement] = STATE(55), + [sym_with_statement] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(55), + [sym_decorated_definition] = STATE(55), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(665), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(55), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17306,71 +17270,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(79), }, [46] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(873), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(58), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(723), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17414,75 +17378,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(79), }, [47] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(903), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(57), + [sym__simple_statements] = STATE(57), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(57), + [sym_match_statement] = STATE(57), + [sym_for_statement] = STATE(57), + [sym_while_statement] = STATE(57), + [sym_try_statement] = STATE(57), + [sym_with_statement] = STATE(57), + [sym_function_definition] = STATE(57), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(57), + [sym_decorated_definition] = STATE(57), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(2238), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(57), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17526,75 +17490,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(111), [sym_string_start] = ACTIONS(79), }, [48] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(760), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(58), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(773), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1757), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_def] = ACTIONS(95), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_class] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(103), + [sym_string_start] = ACTIONS(79), + }, + [49] = { + [sym__statement] = STATE(57), + [sym__simple_statements] = STATE(57), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(57), + [sym_match_statement] = STATE(57), + [sym_for_statement] = STATE(57), + [sym_while_statement] = STATE(57), + [sym_try_statement] = STATE(57), + [sym_with_statement] = STATE(57), + [sym_function_definition] = STATE(57), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(57), + [sym_decorated_definition] = STATE(57), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(2244), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(57), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17638,187 +17714,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), - [sym_string_start] = ACTIONS(79), - }, - [49] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(705), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1807), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(81), - [anon_sym_match] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_def] = ACTIONS(95), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_class] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(67), - [anon_sym_yield] = ACTIONS(69), - [sym_ellipsis] = ACTIONS(71), - [anon_sym_LBRACE] = ACTIONS(73), - [sym_integer] = ACTIONS(75), - [sym_float] = ACTIONS(71), - [anon_sym_await] = ACTIONS(77), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_none] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(111), [sym_string_start] = ACTIONS(79), }, [50] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(902), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_try_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(58), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(739), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17862,75 +17826,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(79), }, [51] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(769), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_if_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(1757), + [sym_block] = STATE(777), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17974,75 +17938,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(99), [sym_string_start] = ACTIONS(79), }, [52] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(793), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [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(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1757), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18086,75 +18049,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), + [sym__dedent] = ACTIONS(115), [sym_string_start] = ACTIONS(79), }, [53] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(876), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [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(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1757), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18198,75 +18160,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(117), [sym_string_start] = ACTIONS(79), }, [54] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(849), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(56), + [sym__simple_statements] = STATE(56), + [sym_import_statement] = STATE(2012), + [sym_future_import_statement] = STATE(2012), + [sym_import_from_statement] = STATE(2012), + [sym_print_statement] = STATE(2012), + [sym_assert_statement] = STATE(2012), + [sym_expression_statement] = STATE(2012), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2012), + [sym_delete_statement] = STATE(2012), + [sym_raise_statement] = STATE(2012), + [sym_pass_statement] = STATE(2012), + [sym_break_statement] = STATE(2012), + [sym_continue_statement] = STATE(2012), + [sym_if_statement] = STATE(56), + [sym_match_statement] = STATE(56), + [sym_for_statement] = STATE(56), + [sym_while_statement] = STATE(56), + [sym_try_statement] = STATE(56), + [sym_with_statement] = STATE(56), + [sym_function_definition] = STATE(56), + [sym_global_statement] = STATE(2012), + [sym_nonlocal_statement] = STATE(2012), + [sym_exec_statement] = STATE(2012), + [sym_class_definition] = STATE(56), + [sym_decorated_definition] = STATE(56), + [sym_decorator] = STATE(1777), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(56), + [aux_sym_decorated_definition_repeat1] = STATE(1777), + [ts_builtin_sym_end] = ACTIONS(119), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18280,18 +18242,18 @@ 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(81), - [anon_sym_match] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_def] = ACTIONS(95), + [anon_sym_if] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_async] = ACTIONS(39), + [anon_sym_for] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_with] = ACTIONS(47), + [anon_sym_def] = ACTIONS(49), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), - [anon_sym_class] = ACTIONS(97), + [anon_sym_class] = ACTIONS(57), [anon_sym_AT] = ACTIONS(59), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_not] = ACTIONS(63), @@ -18310,75 +18272,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), [sym_string_start] = ACTIONS(79), }, [55] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(838), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [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(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1757), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18422,187 +18382,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), + [sym__dedent] = ACTIONS(121), [sym_string_start] = ACTIONS(79), }, [56] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(775), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1807), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(81), - [anon_sym_match] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_def] = ACTIONS(95), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_class] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(67), - [anon_sym_yield] = ACTIONS(69), - [sym_ellipsis] = ACTIONS(71), - [anon_sym_LBRACE] = ACTIONS(73), - [sym_integer] = ACTIONS(75), - [sym_float] = ACTIONS(71), - [anon_sym_await] = ACTIONS(77), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_none] = ACTIONS(75), + [sym__statement] = STATE(56), + [sym__simple_statements] = STATE(56), + [sym_import_statement] = STATE(2012), + [sym_future_import_statement] = STATE(2012), + [sym_import_from_statement] = STATE(2012), + [sym_print_statement] = STATE(2012), + [sym_assert_statement] = STATE(2012), + [sym_expression_statement] = STATE(2012), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2012), + [sym_delete_statement] = STATE(2012), + [sym_raise_statement] = STATE(2012), + [sym_pass_statement] = STATE(2012), + [sym_break_statement] = STATE(2012), + [sym_continue_statement] = STATE(2012), + [sym_if_statement] = STATE(56), + [sym_match_statement] = STATE(56), + [sym_for_statement] = STATE(56), + [sym_while_statement] = STATE(56), + [sym_try_statement] = STATE(56), + [sym_with_statement] = STATE(56), + [sym_function_definition] = STATE(56), + [sym_global_statement] = STATE(2012), + [sym_nonlocal_statement] = STATE(2012), + [sym_exec_statement] = STATE(2012), + [sym_class_definition] = STATE(56), + [sym_decorated_definition] = STATE(56), + [sym_decorator] = STATE(1777), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(56), + [aux_sym_decorated_definition_repeat1] = STATE(1777), + [ts_builtin_sym_end] = ACTIONS(123), + [sym_identifier] = ACTIONS(125), + [anon_sym_import] = ACTIONS(128), + [anon_sym_from] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(134), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_print] = ACTIONS(140), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_return] = ACTIONS(146), + [anon_sym_del] = ACTIONS(149), + [anon_sym_raise] = ACTIONS(152), + [anon_sym_pass] = ACTIONS(155), + [anon_sym_break] = ACTIONS(158), + [anon_sym_continue] = ACTIONS(161), + [anon_sym_if] = ACTIONS(164), + [anon_sym_match] = ACTIONS(167), + [anon_sym_async] = ACTIONS(170), + [anon_sym_for] = ACTIONS(173), + [anon_sym_while] = ACTIONS(176), + [anon_sym_try] = ACTIONS(179), + [anon_sym_with] = ACTIONS(182), + [anon_sym_def] = ACTIONS(185), + [anon_sym_global] = ACTIONS(188), + [anon_sym_nonlocal] = ACTIONS(191), + [anon_sym_exec] = ACTIONS(194), + [anon_sym_class] = ACTIONS(197), + [anon_sym_AT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_not] = ACTIONS(206), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_lambda] = ACTIONS(212), + [anon_sym_yield] = ACTIONS(215), + [sym_ellipsis] = ACTIONS(218), + [anon_sym_LBRACE] = ACTIONS(221), + [sym_integer] = ACTIONS(224), + [sym_float] = ACTIONS(218), + [anon_sym_await] = ACTIONS(227), + [sym_true] = ACTIONS(224), + [sym_false] = ACTIONS(224), + [sym_none] = ACTIONS(224), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(99), - [sym_string_start] = ACTIONS(79), + [sym_string_start] = ACTIONS(230), }, [57] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(889), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [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(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1757), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18646,75 +18604,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(233), [sym_string_start] = ACTIONS(79), }, [58] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(890), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [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(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1757), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18758,75 +18715,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(235), [sym_string_start] = ACTIONS(79), }, [59] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1807), - [sym_block] = STATE(866), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [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(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1757), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18870,74 +18826,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(237), [sym_string_start] = ACTIONS(79), }, [60] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1807), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [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(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1757), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18981,185 +18937,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(113), + [sym__dedent] = ACTIONS(239), [sym_string_start] = ACTIONS(79), }, [61] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2084), - [sym_future_import_statement] = STATE(2084), - [sym_import_from_statement] = STATE(2084), - [sym_print_statement] = STATE(2084), - [sym_assert_statement] = STATE(2084), - [sym_expression_statement] = STATE(2084), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2084), - [sym_delete_statement] = STATE(2084), - [sym_raise_statement] = STATE(2084), - [sym_pass_statement] = STATE(2084), - [sym_break_statement] = STATE(2084), - [sym_continue_statement] = STATE(2084), - [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(2084), - [sym_nonlocal_statement] = STATE(2084), - [sym_exec_statement] = STATE(2084), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1847), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1847), - [ts_builtin_sym_end] = ACTIONS(115), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_for] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), - [anon_sym_def] = ACTIONS(49), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_class] = ACTIONS(57), - [anon_sym_AT] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(67), - [anon_sym_yield] = ACTIONS(69), - [sym_ellipsis] = ACTIONS(71), - [anon_sym_LBRACE] = ACTIONS(73), - [sym_integer] = ACTIONS(75), - [sym_float] = ACTIONS(71), - [anon_sym_await] = ACTIONS(77), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_none] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(79), - }, - [62] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1807), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [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(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1757), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1757), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -19203,74 +19048,657 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(117), + [sym__dedent] = ACTIONS(241), [sym_string_start] = ACTIONS(79), }, + [62] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [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(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1757), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1757), + [sym_identifier] = ACTIONS(125), + [anon_sym_import] = ACTIONS(128), + [anon_sym_from] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(134), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_print] = ACTIONS(140), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_return] = ACTIONS(146), + [anon_sym_del] = ACTIONS(149), + [anon_sym_raise] = ACTIONS(152), + [anon_sym_pass] = ACTIONS(155), + [anon_sym_break] = ACTIONS(158), + [anon_sym_continue] = ACTIONS(161), + [anon_sym_if] = ACTIONS(243), + [anon_sym_match] = ACTIONS(246), + [anon_sym_async] = ACTIONS(249), + [anon_sym_for] = ACTIONS(252), + [anon_sym_while] = ACTIONS(255), + [anon_sym_try] = ACTIONS(258), + [anon_sym_with] = ACTIONS(261), + [anon_sym_def] = ACTIONS(264), + [anon_sym_global] = ACTIONS(188), + [anon_sym_nonlocal] = ACTIONS(191), + [anon_sym_exec] = ACTIONS(194), + [anon_sym_class] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_not] = ACTIONS(206), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_lambda] = ACTIONS(212), + [anon_sym_yield] = ACTIONS(215), + [sym_ellipsis] = ACTIONS(218), + [anon_sym_LBRACE] = ACTIONS(221), + [sym_integer] = ACTIONS(224), + [sym_float] = ACTIONS(218), + [anon_sym_await] = ACTIONS(227), + [sym_true] = ACTIONS(224), + [sym_false] = ACTIONS(224), + [sym_none] = ACTIONS(224), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(123), + [sym_string_start] = ACTIONS(230), + }, [63] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1807), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_chevron] = STATE(1968), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_list_splat_pattern] = STATE(1295), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1743), + [sym_primary_expression] = STATE(982), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_attribute] = STATE(1272), + [sym_subscript] = STATE(1272), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [sym_identifier] = ACTIONS(270), + [anon_sym_SEMI] = ACTIONS(272), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_COMMA] = ACTIONS(279), + [anon_sym_as] = ACTIONS(274), + [anon_sym_STAR] = ACTIONS(282), + [anon_sym_print] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(287), + [anon_sym_COLON_EQ] = ACTIONS(289), + [anon_sym_if] = ACTIONS(274), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_match] = ACTIONS(285), + [anon_sym_async] = ACTIONS(285), + [anon_sym_in] = ACTIONS(274), + [anon_sym_STAR_STAR] = ACTIONS(274), + [anon_sym_exec] = ACTIONS(285), + [anon_sym_AT] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_not] = ACTIONS(296), + [anon_sym_and] = ACTIONS(274), + [anon_sym_or] = ACTIONS(274), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(274), + [anon_sym_SLASH_SLASH] = ACTIONS(274), + [anon_sym_PIPE] = ACTIONS(274), + [anon_sym_AMP] = ACTIONS(274), + [anon_sym_CARET] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(274), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_LT_EQ] = ACTIONS(272), + [anon_sym_EQ_EQ] = ACTIONS(272), + [anon_sym_BANG_EQ] = ACTIONS(272), + [anon_sym_GT_EQ] = ACTIONS(272), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_LT_GT] = ACTIONS(272), + [anon_sym_is] = ACTIONS(274), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_PLUS_EQ] = ACTIONS(302), + [anon_sym_DASH_EQ] = ACTIONS(302), + [anon_sym_STAR_EQ] = ACTIONS(302), + [anon_sym_SLASH_EQ] = ACTIONS(302), + [anon_sym_AT_EQ] = ACTIONS(302), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(302), + [anon_sym_PERCENT_EQ] = ACTIONS(302), + [anon_sym_STAR_STAR_EQ] = ACTIONS(302), + [anon_sym_GT_GT_EQ] = ACTIONS(302), + [anon_sym_LT_LT_EQ] = ACTIONS(302), + [anon_sym_AMP_EQ] = ACTIONS(302), + [anon_sym_CARET_EQ] = ACTIONS(302), + [anon_sym_PIPE_EQ] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(304), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(272), + [sym_string_start] = ACTIONS(79), + }, + [64] = { + [sym_named_expression] = STATE(1427), + [sym__named_expression_lhs] = STATE(2513), + [sym_list_splat_pattern] = STATE(1406), + [sym_as_pattern] = STATE(1427), + [sym_expression] = STATE(1796), + [sym_primary_expression] = STATE(994), + [sym_not_operator] = STATE(1427), + [sym_boolean_operator] = STATE(1427), + [sym_binary_operator] = STATE(1426), + [sym_unary_operator] = STATE(1426), + [sym_comparison_operator] = STATE(1427), + [sym_lambda] = STATE(1427), + [sym_attribute] = STATE(1426), + [sym_subscript] = STATE(1426), + [sym_call] = STATE(1426), + [sym_list] = STATE(1426), + [sym_set] = STATE(1426), + [sym_tuple] = STATE(1426), + [sym_dictionary] = STATE(1426), + [sym_list_comprehension] = STATE(1426), + [sym_dictionary_comprehension] = STATE(1426), + [sym_set_comprehension] = STATE(1426), + [sym_generator_expression] = STATE(1426), + [sym_parenthesized_expression] = STATE(1426), + [sym_conditional_expression] = STATE(1427), + [sym_concatenated_string] = STATE(1426), + [sym_string] = STATE(996), + [sym_await] = STATE(1426), + [sym_identifier] = ACTIONS(306), + [anon_sym_SEMI] = ACTIONS(272), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(308), + [anon_sym_COMMA] = ACTIONS(279), + [anon_sym_as] = ACTIONS(274), + [anon_sym_STAR] = ACTIONS(310), + [anon_sym_print] = ACTIONS(312), + [anon_sym_GT_GT] = ACTIONS(274), + [anon_sym_COLON_EQ] = ACTIONS(289), + [anon_sym_if] = ACTIONS(274), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_match] = ACTIONS(312), + [anon_sym_async] = ACTIONS(312), + [anon_sym_in] = ACTIONS(274), + [anon_sym_STAR_STAR] = ACTIONS(274), + [anon_sym_exec] = ACTIONS(312), + [anon_sym_AT] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_not] = ACTIONS(316), + [anon_sym_and] = ACTIONS(274), + [anon_sym_or] = ACTIONS(274), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(274), + [anon_sym_SLASH_SLASH] = ACTIONS(274), + [anon_sym_PIPE] = ACTIONS(274), + [anon_sym_AMP] = ACTIONS(274), + [anon_sym_CARET] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(274), + [anon_sym_TILDE] = ACTIONS(320), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_LT_EQ] = ACTIONS(272), + [anon_sym_EQ_EQ] = ACTIONS(272), + [anon_sym_BANG_EQ] = ACTIONS(272), + [anon_sym_GT_EQ] = ACTIONS(272), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_LT_GT] = ACTIONS(272), + [anon_sym_is] = ACTIONS(274), + [anon_sym_lambda] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(302), + [anon_sym_DASH_EQ] = ACTIONS(302), + [anon_sym_STAR_EQ] = ACTIONS(302), + [anon_sym_SLASH_EQ] = ACTIONS(302), + [anon_sym_AT_EQ] = ACTIONS(302), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(302), + [anon_sym_PERCENT_EQ] = ACTIONS(302), + [anon_sym_STAR_STAR_EQ] = ACTIONS(302), + [anon_sym_GT_GT_EQ] = ACTIONS(302), + [anon_sym_LT_LT_EQ] = ACTIONS(302), + [anon_sym_AMP_EQ] = ACTIONS(302), + [anon_sym_CARET_EQ] = ACTIONS(302), + [anon_sym_PIPE_EQ] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(324), + [anon_sym_LBRACE] = ACTIONS(326), + [sym_integer] = ACTIONS(328), + [sym_float] = ACTIONS(324), + [anon_sym_await] = ACTIONS(330), + [sym_true] = ACTIONS(328), + [sym_false] = ACTIONS(328), + [sym_none] = ACTIONS(328), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(272), + [sym_string_start] = ACTIONS(332), + }, + [65] = { + [sym_named_expression] = STATE(1427), + [sym__named_expression_lhs] = STATE(2513), + [sym_list_splat_pattern] = STATE(1406), + [sym_as_pattern] = STATE(1427), + [sym_expression] = STATE(1803), + [sym_primary_expression] = STATE(994), + [sym_not_operator] = STATE(1427), + [sym_boolean_operator] = STATE(1427), + [sym_binary_operator] = STATE(1426), + [sym_unary_operator] = STATE(1426), + [sym_comparison_operator] = STATE(1427), + [sym_lambda] = STATE(1427), + [sym_attribute] = STATE(1426), + [sym_subscript] = STATE(1426), + [sym_call] = STATE(1426), + [sym_list] = STATE(1426), + [sym_set] = STATE(1426), + [sym_tuple] = STATE(1426), + [sym_dictionary] = STATE(1426), + [sym_list_comprehension] = STATE(1426), + [sym_dictionary_comprehension] = STATE(1426), + [sym_set_comprehension] = STATE(1426), + [sym_generator_expression] = STATE(1426), + [sym_parenthesized_expression] = STATE(1426), + [sym_conditional_expression] = STATE(1427), + [sym_concatenated_string] = STATE(1426), + [sym_string] = STATE(996), + [sym_await] = STATE(1426), + [sym_identifier] = ACTIONS(306), + [anon_sym_SEMI] = ACTIONS(272), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(308), + [anon_sym_COMMA] = ACTIONS(279), + [anon_sym_as] = ACTIONS(274), + [anon_sym_STAR] = ACTIONS(310), + [anon_sym_print] = ACTIONS(312), + [anon_sym_GT_GT] = ACTIONS(274), + [anon_sym_COLON_EQ] = ACTIONS(289), + [anon_sym_if] = ACTIONS(274), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_match] = ACTIONS(312), + [anon_sym_async] = ACTIONS(312), + [anon_sym_in] = ACTIONS(274), + [anon_sym_STAR_STAR] = ACTIONS(274), + [anon_sym_exec] = ACTIONS(312), + [anon_sym_AT] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_not] = ACTIONS(316), + [anon_sym_and] = ACTIONS(274), + [anon_sym_or] = ACTIONS(274), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(274), + [anon_sym_SLASH_SLASH] = ACTIONS(274), + [anon_sym_PIPE] = ACTIONS(274), + [anon_sym_AMP] = ACTIONS(274), + [anon_sym_CARET] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(274), + [anon_sym_TILDE] = ACTIONS(320), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_LT_EQ] = ACTIONS(272), + [anon_sym_EQ_EQ] = ACTIONS(272), + [anon_sym_BANG_EQ] = ACTIONS(272), + [anon_sym_GT_EQ] = ACTIONS(272), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_LT_GT] = ACTIONS(272), + [anon_sym_is] = ACTIONS(274), + [anon_sym_lambda] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(302), + [anon_sym_DASH_EQ] = ACTIONS(302), + [anon_sym_STAR_EQ] = ACTIONS(302), + [anon_sym_SLASH_EQ] = ACTIONS(302), + [anon_sym_AT_EQ] = ACTIONS(302), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(302), + [anon_sym_PERCENT_EQ] = ACTIONS(302), + [anon_sym_STAR_STAR_EQ] = ACTIONS(302), + [anon_sym_GT_GT_EQ] = ACTIONS(302), + [anon_sym_LT_LT_EQ] = ACTIONS(302), + [anon_sym_AMP_EQ] = ACTIONS(302), + [anon_sym_CARET_EQ] = ACTIONS(302), + [anon_sym_PIPE_EQ] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(324), + [anon_sym_LBRACE] = ACTIONS(326), + [sym_integer] = ACTIONS(328), + [sym_float] = ACTIONS(324), + [anon_sym_await] = ACTIONS(330), + [sym_true] = ACTIONS(328), + [sym_false] = ACTIONS(328), + [sym_none] = ACTIONS(328), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(272), + [sym_string_start] = ACTIONS(332), + }, + [66] = { + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2390), + [sym_list_splat_pattern] = STATE(1295), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1174), + [sym_primary_expression] = STATE(974), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_attribute] = STATE(1272), + [sym_subscript] = STATE(1272), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [sym_identifier] = ACTIONS(270), + [anon_sym_SEMI] = ACTIONS(272), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(334), + [anon_sym_COMMA] = ACTIONS(279), + [anon_sym_as] = ACTIONS(274), + [anon_sym_STAR] = ACTIONS(336), + [anon_sym_print] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(274), + [anon_sym_COLON_EQ] = ACTIONS(289), + [anon_sym_if] = ACTIONS(274), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_match] = ACTIONS(285), + [anon_sym_async] = ACTIONS(285), + [anon_sym_in] = ACTIONS(274), + [anon_sym_STAR_STAR] = ACTIONS(274), + [anon_sym_exec] = ACTIONS(285), + [anon_sym_AT] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_not] = ACTIONS(340), + [anon_sym_and] = ACTIONS(274), + [anon_sym_or] = ACTIONS(274), + [anon_sym_PLUS] = ACTIONS(342), + [anon_sym_DASH] = ACTIONS(342), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(274), + [anon_sym_SLASH_SLASH] = ACTIONS(274), + [anon_sym_PIPE] = ACTIONS(274), + [anon_sym_AMP] = ACTIONS(274), + [anon_sym_CARET] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(274), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_LT_EQ] = ACTIONS(272), + [anon_sym_EQ_EQ] = ACTIONS(272), + [anon_sym_BANG_EQ] = ACTIONS(272), + [anon_sym_GT_EQ] = ACTIONS(272), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_LT_GT] = ACTIONS(272), + [anon_sym_is] = ACTIONS(274), + [anon_sym_lambda] = ACTIONS(344), + [anon_sym_PLUS_EQ] = ACTIONS(302), + [anon_sym_DASH_EQ] = ACTIONS(302), + [anon_sym_STAR_EQ] = ACTIONS(302), + [anon_sym_SLASH_EQ] = ACTIONS(302), + [anon_sym_AT_EQ] = ACTIONS(302), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(302), + [anon_sym_PERCENT_EQ] = ACTIONS(302), + [anon_sym_STAR_STAR_EQ] = ACTIONS(302), + [anon_sym_GT_GT_EQ] = ACTIONS(302), + [anon_sym_LT_LT_EQ] = ACTIONS(302), + [anon_sym_AMP_EQ] = ACTIONS(302), + [anon_sym_CARET_EQ] = ACTIONS(302), + [anon_sym_PIPE_EQ] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(304), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(272), + [sym_string_start] = ACTIONS(79), + }, + [67] = { + [sym_named_expression] = STATE(1427), + [sym__named_expression_lhs] = STATE(2513), + [sym_list_splat_pattern] = STATE(1406), + [sym_as_pattern] = STATE(1427), + [sym_expression] = STATE(1575), + [sym_primary_expression] = STATE(994), + [sym_not_operator] = STATE(1427), + [sym_boolean_operator] = STATE(1427), + [sym_binary_operator] = STATE(1426), + [sym_unary_operator] = STATE(1426), + [sym_comparison_operator] = STATE(1427), + [sym_lambda] = STATE(1427), + [sym_attribute] = STATE(1426), + [sym_subscript] = STATE(1426), + [sym_call] = STATE(1426), + [sym_list] = STATE(1426), + [sym_set] = STATE(1426), + [sym_tuple] = STATE(1426), + [sym_dictionary] = STATE(1426), + [sym_list_comprehension] = STATE(1426), + [sym_dictionary_comprehension] = STATE(1426), + [sym_set_comprehension] = STATE(1426), + [sym_generator_expression] = STATE(1426), + [sym_parenthesized_expression] = STATE(1426), + [sym_conditional_expression] = STATE(1427), + [sym_concatenated_string] = STATE(1426), + [sym_string] = STATE(996), + [sym_await] = STATE(1426), + [sym_identifier] = ACTIONS(306), + [anon_sym_SEMI] = ACTIONS(346), + [anon_sym_DOT] = ACTIONS(348), + [anon_sym_LPAREN] = ACTIONS(308), + [anon_sym_COMMA] = ACTIONS(346), + [anon_sym_as] = ACTIONS(351), + [anon_sym_STAR] = ACTIONS(310), + [anon_sym_print] = ACTIONS(312), + [anon_sym_GT_GT] = ACTIONS(348), + [anon_sym_if] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(346), + [anon_sym_match] = ACTIONS(312), + [anon_sym_async] = ACTIONS(312), + [anon_sym_in] = ACTIONS(351), + [anon_sym_STAR_STAR] = ACTIONS(348), + [anon_sym_exec] = ACTIONS(312), + [anon_sym_AT] = ACTIONS(348), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_not] = ACTIONS(316), + [anon_sym_and] = ACTIONS(351), + [anon_sym_or] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(348), + [anon_sym_PERCENT] = ACTIONS(348), + [anon_sym_SLASH_SLASH] = ACTIONS(348), + [anon_sym_PIPE] = ACTIONS(348), + [anon_sym_AMP] = ACTIONS(348), + [anon_sym_CARET] = ACTIONS(348), + [anon_sym_LT_LT] = ACTIONS(348), + [anon_sym_TILDE] = ACTIONS(320), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(346), + [anon_sym_EQ_EQ] = ACTIONS(346), + [anon_sym_BANG_EQ] = ACTIONS(346), + [anon_sym_GT_EQ] = ACTIONS(346), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_LT_GT] = ACTIONS(346), + [anon_sym_is] = ACTIONS(351), + [anon_sym_lambda] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(346), + [anon_sym_DASH_EQ] = ACTIONS(346), + [anon_sym_STAR_EQ] = ACTIONS(346), + [anon_sym_SLASH_EQ] = ACTIONS(346), + [anon_sym_AT_EQ] = ACTIONS(346), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(346), + [anon_sym_PERCENT_EQ] = ACTIONS(346), + [anon_sym_STAR_STAR_EQ] = ACTIONS(346), + [anon_sym_GT_GT_EQ] = ACTIONS(346), + [anon_sym_LT_LT_EQ] = ACTIONS(346), + [anon_sym_AMP_EQ] = ACTIONS(346), + [anon_sym_CARET_EQ] = ACTIONS(346), + [anon_sym_PIPE_EQ] = ACTIONS(346), + [sym_ellipsis] = ACTIONS(324), + [anon_sym_LBRACE] = ACTIONS(326), + [sym_integer] = ACTIONS(328), + [sym_float] = ACTIONS(324), + [anon_sym_await] = ACTIONS(330), + [sym_true] = ACTIONS(328), + [sym_false] = ACTIONS(328), + [sym_none] = ACTIONS(328), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(346), + [sym_string_start] = ACTIONS(332), + }, + [68] = { + [sym__simple_statements] = STATE(1761), + [sym_import_statement] = STATE(2176), + [sym_future_import_statement] = STATE(2176), + [sym_import_from_statement] = STATE(2176), + [sym_print_statement] = STATE(2176), + [sym_assert_statement] = STATE(2176), + [sym_expression_statement] = STATE(2176), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2176), + [sym_delete_statement] = STATE(2176), + [sym_raise_statement] = STATE(2176), + [sym_pass_statement] = STATE(2176), + [sym_break_statement] = STATE(2176), + [sym_continue_statement] = STATE(2176), + [sym_global_statement] = STATE(2176), + [sym_nonlocal_statement] = STATE(2176), + [sym_exec_statement] = STATE(2176), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -19284,19 +19712,11 @@ 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(81), - [anon_sym_match] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_def] = ACTIONS(95), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), - [anon_sym_class] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(59), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_not] = ACTIONS(63), [anon_sym_PLUS] = ACTIONS(65), @@ -19314,74 +19734,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(119), + [sym__newline] = ACTIONS(355), + [sym__indent] = ACTIONS(357), [sym_string_start] = ACTIONS(79), }, - [64] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1807), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [69] = { + [sym__simple_statements] = STATE(735), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -19395,19 +19803,11 @@ 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(81), - [anon_sym_match] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_def] = ACTIONS(95), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), - [anon_sym_class] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(59), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_not] = ACTIONS(63), [anon_sym_PLUS] = ACTIONS(65), @@ -19425,74 +19825,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(121), + [sym__newline] = ACTIONS(359), + [sym__indent] = ACTIONS(361), [sym_string_start] = ACTIONS(79), }, - [65] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1807), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [70] = { + [sym__simple_statements] = STATE(2250), + [sym_import_statement] = STATE(2174), + [sym_future_import_statement] = STATE(2174), + [sym_import_from_statement] = STATE(2174), + [sym_print_statement] = STATE(2174), + [sym_assert_statement] = STATE(2174), + [sym_expression_statement] = STATE(2174), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2174), + [sym_delete_statement] = STATE(2174), + [sym_raise_statement] = STATE(2174), + [sym_pass_statement] = STATE(2174), + [sym_break_statement] = STATE(2174), + [sym_continue_statement] = STATE(2174), + [sym_global_statement] = STATE(2174), + [sym_nonlocal_statement] = STATE(2174), + [sym_exec_statement] = STATE(2174), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -19506,19 +19894,11 @@ 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(81), - [anon_sym_match] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_def] = ACTIONS(95), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), - [anon_sym_class] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(59), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_not] = ACTIONS(63), [anon_sym_PLUS] = ACTIONS(65), @@ -19536,185 +19916,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(123), + [sym__newline] = ACTIONS(363), + [sym__indent] = ACTIONS(365), [sym_string_start] = ACTIONS(79), }, - [66] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2084), - [sym_future_import_statement] = STATE(2084), - [sym_import_from_statement] = STATE(2084), - [sym_print_statement] = STATE(2084), - [sym_assert_statement] = STATE(2084), - [sym_expression_statement] = STATE(2084), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2084), - [sym_delete_statement] = STATE(2084), - [sym_raise_statement] = STATE(2084), - [sym_pass_statement] = STATE(2084), - [sym_break_statement] = STATE(2084), - [sym_continue_statement] = STATE(2084), - [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(2084), - [sym_nonlocal_statement] = STATE(2084), - [sym_exec_statement] = STATE(2084), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1847), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1847), - [ts_builtin_sym_end] = ACTIONS(125), - [sym_identifier] = ACTIONS(127), - [anon_sym_import] = ACTIONS(130), - [anon_sym_from] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_STAR] = ACTIONS(139), - [anon_sym_print] = ACTIONS(142), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_return] = ACTIONS(148), - [anon_sym_del] = ACTIONS(151), - [anon_sym_raise] = ACTIONS(154), - [anon_sym_pass] = ACTIONS(157), - [anon_sym_break] = ACTIONS(160), - [anon_sym_continue] = ACTIONS(163), - [anon_sym_if] = ACTIONS(166), - [anon_sym_match] = ACTIONS(169), - [anon_sym_async] = ACTIONS(172), - [anon_sym_for] = ACTIONS(175), - [anon_sym_while] = ACTIONS(178), - [anon_sym_try] = ACTIONS(181), - [anon_sym_with] = ACTIONS(184), - [anon_sym_def] = ACTIONS(187), - [anon_sym_global] = ACTIONS(190), - [anon_sym_nonlocal] = ACTIONS(193), - [anon_sym_exec] = ACTIONS(196), - [anon_sym_class] = ACTIONS(199), - [anon_sym_AT] = ACTIONS(202), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_not] = ACTIONS(208), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(211), - [anon_sym_lambda] = ACTIONS(214), - [anon_sym_yield] = ACTIONS(217), - [sym_ellipsis] = ACTIONS(220), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_integer] = ACTIONS(226), - [sym_float] = ACTIONS(220), - [anon_sym_await] = ACTIONS(229), - [sym_true] = ACTIONS(226), - [sym_false] = ACTIONS(226), - [sym_none] = ACTIONS(226), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(232), - }, - [67] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1807), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [71] = { + [sym__simple_statements] = STATE(714), + [sym_import_statement] = STATE(2203), + [sym_future_import_statement] = STATE(2203), + [sym_import_from_statement] = STATE(2203), + [sym_print_statement] = STATE(2203), + [sym_assert_statement] = STATE(2203), + [sym_expression_statement] = STATE(2203), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2203), + [sym_delete_statement] = STATE(2203), + [sym_raise_statement] = STATE(2203), + [sym_pass_statement] = STATE(2203), + [sym_break_statement] = STATE(2203), + [sym_continue_statement] = STATE(2203), + [sym_global_statement] = STATE(2203), + [sym_nonlocal_statement] = STATE(2203), + [sym_exec_statement] = STATE(2203), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -19728,19 +19985,11 @@ 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(81), - [anon_sym_match] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_def] = ACTIONS(95), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), - [anon_sym_class] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(59), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_not] = ACTIONS(63), [anon_sym_PLUS] = ACTIONS(65), @@ -19758,185 +20007,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(235), + [sym__newline] = ACTIONS(367), + [sym__indent] = ACTIONS(369), [sym_string_start] = ACTIONS(79), }, - [68] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1807), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1807), - [sym_identifier] = ACTIONS(127), - [anon_sym_import] = ACTIONS(130), - [anon_sym_from] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_STAR] = ACTIONS(139), - [anon_sym_print] = ACTIONS(142), - [anon_sym_assert] = ACTIONS(145), - [anon_sym_return] = ACTIONS(148), - [anon_sym_del] = ACTIONS(151), - [anon_sym_raise] = ACTIONS(154), - [anon_sym_pass] = ACTIONS(157), - [anon_sym_break] = ACTIONS(160), - [anon_sym_continue] = ACTIONS(163), - [anon_sym_if] = ACTIONS(237), - [anon_sym_match] = ACTIONS(240), - [anon_sym_async] = ACTIONS(243), - [anon_sym_for] = ACTIONS(246), - [anon_sym_while] = ACTIONS(249), - [anon_sym_try] = ACTIONS(252), - [anon_sym_with] = ACTIONS(255), - [anon_sym_def] = ACTIONS(258), - [anon_sym_global] = ACTIONS(190), - [anon_sym_nonlocal] = ACTIONS(193), - [anon_sym_exec] = ACTIONS(196), - [anon_sym_class] = ACTIONS(261), - [anon_sym_AT] = ACTIONS(202), - [anon_sym_LBRACK] = ACTIONS(205), - [anon_sym_not] = ACTIONS(208), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_TILDE] = ACTIONS(211), - [anon_sym_lambda] = ACTIONS(214), - [anon_sym_yield] = ACTIONS(217), - [sym_ellipsis] = ACTIONS(220), - [anon_sym_LBRACE] = ACTIONS(223), - [sym_integer] = ACTIONS(226), - [sym_float] = ACTIONS(220), - [anon_sym_await] = ACTIONS(229), - [sym_true] = ACTIONS(226), - [sym_false] = ACTIONS(226), - [sym_none] = ACTIONS(226), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(125), - [sym_string_start] = ACTIONS(232), - }, - [69] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [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(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1807), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1807), + [72] = { + [sym__simple_statements] = STATE(656), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -19950,19 +20076,11 @@ 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(81), - [anon_sym_match] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_def] = ACTIONS(95), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), - [anon_sym_class] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(59), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_not] = ACTIONS(63), [anon_sym_PLUS] = ACTIONS(65), @@ -19980,546 +20098,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(264), + [sym__newline] = ACTIONS(371), + [sym__indent] = ACTIONS(373), [sym_string_start] = ACTIONS(79), }, - [70] = { - [sym_chevron] = STATE(2053), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_list_splat_pattern] = STATE(1172), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1826), - [sym_primary_expression] = STATE(1036), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_attribute] = STATE(1344), - [sym_subscript] = STATE(1344), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [sym_identifier] = ACTIONS(266), - [anon_sym_SEMI] = ACTIONS(268), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(272), - [anon_sym_COMMA] = ACTIONS(275), - [anon_sym_as] = ACTIONS(270), - [anon_sym_STAR] = ACTIONS(278), - [anon_sym_print] = ACTIONS(281), - [anon_sym_GT_GT] = ACTIONS(283), - [anon_sym_COLON_EQ] = ACTIONS(285), - [anon_sym_if] = ACTIONS(270), - [anon_sym_COLON] = ACTIONS(287), - [anon_sym_match] = ACTIONS(281), - [anon_sym_async] = ACTIONS(281), - [anon_sym_in] = ACTIONS(270), - [anon_sym_STAR_STAR] = ACTIONS(270), - [anon_sym_exec] = ACTIONS(281), - [anon_sym_AT] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_EQ] = ACTIONS(287), - [anon_sym_not] = ACTIONS(292), - [anon_sym_and] = ACTIONS(270), - [anon_sym_or] = ACTIONS(270), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(270), - [anon_sym_SLASH_SLASH] = ACTIONS(270), - [anon_sym_PIPE] = ACTIONS(270), - [anon_sym_AMP] = ACTIONS(270), - [anon_sym_CARET] = ACTIONS(270), - [anon_sym_LT_LT] = ACTIONS(270), + [73] = { + [sym__simple_statements] = STATE(2239), + [sym_import_statement] = STATE(2174), + [sym_future_import_statement] = STATE(2174), + [sym_import_from_statement] = STATE(2174), + [sym_print_statement] = STATE(2174), + [sym_assert_statement] = STATE(2174), + [sym_expression_statement] = STATE(2174), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2174), + [sym_delete_statement] = STATE(2174), + [sym_raise_statement] = STATE(2174), + [sym_pass_statement] = STATE(2174), + [sym_break_statement] = STATE(2174), + [sym_continue_statement] = STATE(2174), + [sym_global_statement] = STATE(2174), + [sym_nonlocal_statement] = STATE(2174), + [sym_exec_statement] = STATE(2174), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [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(353), + [anon_sym_async] = ACTIONS(353), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_LT_EQ] = ACTIONS(268), - [anon_sym_EQ_EQ] = ACTIONS(268), - [anon_sym_BANG_EQ] = ACTIONS(268), - [anon_sym_GT_EQ] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_LT_GT] = ACTIONS(268), - [anon_sym_is] = ACTIONS(270), [anon_sym_lambda] = ACTIONS(67), - [anon_sym_PLUS_EQ] = ACTIONS(298), - [anon_sym_DASH_EQ] = ACTIONS(298), - [anon_sym_STAR_EQ] = ACTIONS(298), - [anon_sym_SLASH_EQ] = ACTIONS(298), - [anon_sym_AT_EQ] = ACTIONS(298), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(298), - [anon_sym_PERCENT_EQ] = ACTIONS(298), - [anon_sym_STAR_STAR_EQ] = ACTIONS(298), - [anon_sym_GT_GT_EQ] = ACTIONS(298), - [anon_sym_LT_LT_EQ] = ACTIONS(298), - [anon_sym_AMP_EQ] = ACTIONS(298), - [anon_sym_CARET_EQ] = ACTIONS(298), - [anon_sym_PIPE_EQ] = ACTIONS(298), - [sym_ellipsis] = ACTIONS(71), - [anon_sym_LBRACE] = ACTIONS(73), - [sym_integer] = ACTIONS(75), - [sym_float] = ACTIONS(71), - [anon_sym_await] = ACTIONS(300), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_none] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(268), - [sym_string_start] = ACTIONS(79), - }, - [71] = { - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2411), - [sym_list_splat_pattern] = STATE(1172), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1300), - [sym_primary_expression] = STATE(1046), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_attribute] = STATE(1344), - [sym_subscript] = STATE(1344), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [sym_identifier] = ACTIONS(266), - [anon_sym_SEMI] = ACTIONS(268), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(302), - [anon_sym_COMMA] = ACTIONS(275), - [anon_sym_as] = ACTIONS(270), - [anon_sym_STAR] = ACTIONS(304), - [anon_sym_print] = ACTIONS(281), - [anon_sym_GT_GT] = ACTIONS(270), - [anon_sym_COLON_EQ] = ACTIONS(285), - [anon_sym_if] = ACTIONS(270), - [anon_sym_COLON] = ACTIONS(287), - [anon_sym_match] = ACTIONS(281), - [anon_sym_async] = ACTIONS(281), - [anon_sym_in] = ACTIONS(270), - [anon_sym_STAR_STAR] = ACTIONS(270), - [anon_sym_exec] = ACTIONS(281), - [anon_sym_AT] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(306), - [anon_sym_EQ] = ACTIONS(287), - [anon_sym_not] = ACTIONS(308), - [anon_sym_and] = ACTIONS(270), - [anon_sym_or] = ACTIONS(270), - [anon_sym_PLUS] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(310), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(270), - [anon_sym_SLASH_SLASH] = ACTIONS(270), - [anon_sym_PIPE] = ACTIONS(270), - [anon_sym_AMP] = ACTIONS(270), - [anon_sym_CARET] = ACTIONS(270), - [anon_sym_LT_LT] = ACTIONS(270), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_LT_EQ] = ACTIONS(268), - [anon_sym_EQ_EQ] = ACTIONS(268), - [anon_sym_BANG_EQ] = ACTIONS(268), - [anon_sym_GT_EQ] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_LT_GT] = ACTIONS(268), - [anon_sym_is] = ACTIONS(270), - [anon_sym_lambda] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(298), - [anon_sym_DASH_EQ] = ACTIONS(298), - [anon_sym_STAR_EQ] = ACTIONS(298), - [anon_sym_SLASH_EQ] = ACTIONS(298), - [anon_sym_AT_EQ] = ACTIONS(298), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(298), - [anon_sym_PERCENT_EQ] = ACTIONS(298), - [anon_sym_STAR_STAR_EQ] = ACTIONS(298), - [anon_sym_GT_GT_EQ] = ACTIONS(298), - [anon_sym_LT_LT_EQ] = ACTIONS(298), - [anon_sym_AMP_EQ] = ACTIONS(298), - [anon_sym_CARET_EQ] = ACTIONS(298), - [anon_sym_PIPE_EQ] = ACTIONS(298), + [anon_sym_yield] = ACTIONS(69), [sym_ellipsis] = ACTIONS(71), [anon_sym_LBRACE] = ACTIONS(73), [sym_integer] = ACTIONS(75), [sym_float] = ACTIONS(71), - [anon_sym_await] = ACTIONS(300), + [anon_sym_await] = ACTIONS(77), [sym_true] = ACTIONS(75), [sym_false] = ACTIONS(75), [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(268), + [sym__newline] = ACTIONS(375), + [sym__indent] = ACTIONS(377), [sym_string_start] = ACTIONS(79), }, - [72] = { - [sym_named_expression] = STATE(1456), - [sym__named_expression_lhs] = STATE(2379), - [sym_list_splat_pattern] = STATE(1366), - [sym_as_pattern] = STATE(1456), - [sym_expression] = STATE(1876), - [sym_primary_expression] = STATE(1079), - [sym_not_operator] = STATE(1456), - [sym_boolean_operator] = STATE(1456), - [sym_binary_operator] = STATE(1455), - [sym_unary_operator] = STATE(1455), - [sym_comparison_operator] = STATE(1456), - [sym_lambda] = STATE(1456), - [sym_attribute] = STATE(1455), - [sym_subscript] = STATE(1455), - [sym_call] = STATE(1455), - [sym_list] = STATE(1455), - [sym_set] = STATE(1455), - [sym_tuple] = STATE(1455), - [sym_dictionary] = STATE(1455), - [sym_list_comprehension] = STATE(1455), - [sym_dictionary_comprehension] = STATE(1455), - [sym_set_comprehension] = STATE(1455), - [sym_generator_expression] = STATE(1455), - [sym_parenthesized_expression] = STATE(1455), - [sym_conditional_expression] = STATE(1456), - [sym_concatenated_string] = STATE(1455), - [sym_string] = STATE(1071), - [sym_await] = STATE(1455), - [sym_identifier] = ACTIONS(314), - [anon_sym_SEMI] = ACTIONS(268), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_COMMA] = ACTIONS(275), - [anon_sym_as] = ACTIONS(270), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_print] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(270), - [anon_sym_COLON_EQ] = ACTIONS(285), - [anon_sym_if] = ACTIONS(270), - [anon_sym_COLON] = ACTIONS(287), - [anon_sym_match] = ACTIONS(320), - [anon_sym_async] = ACTIONS(320), - [anon_sym_in] = ACTIONS(270), - [anon_sym_STAR_STAR] = ACTIONS(270), - [anon_sym_exec] = ACTIONS(320), - [anon_sym_AT] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_EQ] = ACTIONS(287), - [anon_sym_not] = ACTIONS(324), - [anon_sym_and] = ACTIONS(270), - [anon_sym_or] = ACTIONS(270), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(270), - [anon_sym_SLASH_SLASH] = ACTIONS(270), - [anon_sym_PIPE] = ACTIONS(270), - [anon_sym_AMP] = ACTIONS(270), - [anon_sym_CARET] = ACTIONS(270), - [anon_sym_LT_LT] = ACTIONS(270), - [anon_sym_TILDE] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_LT_EQ] = ACTIONS(268), - [anon_sym_EQ_EQ] = ACTIONS(268), - [anon_sym_BANG_EQ] = ACTIONS(268), - [anon_sym_GT_EQ] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_LT_GT] = ACTIONS(268), - [anon_sym_is] = ACTIONS(270), - [anon_sym_lambda] = ACTIONS(330), - [anon_sym_PLUS_EQ] = ACTIONS(298), - [anon_sym_DASH_EQ] = ACTIONS(298), - [anon_sym_STAR_EQ] = ACTIONS(298), - [anon_sym_SLASH_EQ] = ACTIONS(298), - [anon_sym_AT_EQ] = ACTIONS(298), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(298), - [anon_sym_PERCENT_EQ] = ACTIONS(298), - [anon_sym_STAR_STAR_EQ] = ACTIONS(298), - [anon_sym_GT_GT_EQ] = ACTIONS(298), - [anon_sym_LT_LT_EQ] = ACTIONS(298), - [anon_sym_AMP_EQ] = ACTIONS(298), - [anon_sym_CARET_EQ] = ACTIONS(298), - [anon_sym_PIPE_EQ] = ACTIONS(298), - [sym_ellipsis] = ACTIONS(332), - [anon_sym_LBRACE] = ACTIONS(334), - [sym_integer] = ACTIONS(336), - [sym_float] = ACTIONS(332), - [anon_sym_await] = ACTIONS(338), - [sym_true] = ACTIONS(336), - [sym_false] = ACTIONS(336), - [sym_none] = ACTIONS(336), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(268), - [sym_string_start] = ACTIONS(340), - }, - [73] = { - [sym_named_expression] = STATE(1456), - [sym__named_expression_lhs] = STATE(2379), - [sym_list_splat_pattern] = STATE(1366), - [sym_as_pattern] = STATE(1456), - [sym_expression] = STATE(1888), - [sym_primary_expression] = STATE(1079), - [sym_not_operator] = STATE(1456), - [sym_boolean_operator] = STATE(1456), - [sym_binary_operator] = STATE(1455), - [sym_unary_operator] = STATE(1455), - [sym_comparison_operator] = STATE(1456), - [sym_lambda] = STATE(1456), - [sym_attribute] = STATE(1455), - [sym_subscript] = STATE(1455), - [sym_call] = STATE(1455), - [sym_list] = STATE(1455), - [sym_set] = STATE(1455), - [sym_tuple] = STATE(1455), - [sym_dictionary] = STATE(1455), - [sym_list_comprehension] = STATE(1455), - [sym_dictionary_comprehension] = STATE(1455), - [sym_set_comprehension] = STATE(1455), - [sym_generator_expression] = STATE(1455), - [sym_parenthesized_expression] = STATE(1455), - [sym_conditional_expression] = STATE(1456), - [sym_concatenated_string] = STATE(1455), - [sym_string] = STATE(1071), - [sym_await] = STATE(1455), - [sym_identifier] = ACTIONS(314), - [anon_sym_SEMI] = ACTIONS(268), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_COMMA] = ACTIONS(275), - [anon_sym_as] = ACTIONS(270), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_print] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(270), - [anon_sym_COLON_EQ] = ACTIONS(285), - [anon_sym_if] = ACTIONS(270), - [anon_sym_COLON] = ACTIONS(287), - [anon_sym_match] = ACTIONS(320), - [anon_sym_async] = ACTIONS(320), - [anon_sym_in] = ACTIONS(270), - [anon_sym_STAR_STAR] = ACTIONS(270), - [anon_sym_exec] = ACTIONS(320), - [anon_sym_AT] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_EQ] = ACTIONS(287), - [anon_sym_not] = ACTIONS(324), - [anon_sym_and] = ACTIONS(270), - [anon_sym_or] = ACTIONS(270), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(270), - [anon_sym_SLASH_SLASH] = ACTIONS(270), - [anon_sym_PIPE] = ACTIONS(270), - [anon_sym_AMP] = ACTIONS(270), - [anon_sym_CARET] = ACTIONS(270), - [anon_sym_LT_LT] = ACTIONS(270), - [anon_sym_TILDE] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_LT_EQ] = ACTIONS(268), - [anon_sym_EQ_EQ] = ACTIONS(268), - [anon_sym_BANG_EQ] = ACTIONS(268), - [anon_sym_GT_EQ] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_LT_GT] = ACTIONS(268), - [anon_sym_is] = ACTIONS(270), - [anon_sym_lambda] = ACTIONS(330), - [anon_sym_PLUS_EQ] = ACTIONS(298), - [anon_sym_DASH_EQ] = ACTIONS(298), - [anon_sym_STAR_EQ] = ACTIONS(298), - [anon_sym_SLASH_EQ] = ACTIONS(298), - [anon_sym_AT_EQ] = ACTIONS(298), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(298), - [anon_sym_PERCENT_EQ] = ACTIONS(298), - [anon_sym_STAR_STAR_EQ] = ACTIONS(298), - [anon_sym_GT_GT_EQ] = ACTIONS(298), - [anon_sym_LT_LT_EQ] = ACTIONS(298), - [anon_sym_AMP_EQ] = ACTIONS(298), - [anon_sym_CARET_EQ] = ACTIONS(298), - [anon_sym_PIPE_EQ] = ACTIONS(298), - [sym_ellipsis] = ACTIONS(332), - [anon_sym_LBRACE] = ACTIONS(334), - [sym_integer] = ACTIONS(336), - [sym_float] = ACTIONS(332), - [anon_sym_await] = ACTIONS(338), - [sym_true] = ACTIONS(336), - [sym_false] = ACTIONS(336), - [sym_none] = ACTIONS(336), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(268), - [sym_string_start] = ACTIONS(340), - }, [74] = { - [sym_named_expression] = STATE(1456), - [sym__named_expression_lhs] = STATE(2379), - [sym_list_splat_pattern] = STATE(1366), - [sym_as_pattern] = STATE(1456), - [sym_expression] = STATE(1638), - [sym_primary_expression] = STATE(1079), - [sym_not_operator] = STATE(1456), - [sym_boolean_operator] = STATE(1456), - [sym_binary_operator] = STATE(1455), - [sym_unary_operator] = STATE(1455), - [sym_comparison_operator] = STATE(1456), - [sym_lambda] = STATE(1456), - [sym_attribute] = STATE(1455), - [sym_subscript] = STATE(1455), - [sym_call] = STATE(1455), - [sym_list] = STATE(1455), - [sym_set] = STATE(1455), - [sym_tuple] = STATE(1455), - [sym_dictionary] = STATE(1455), - [sym_list_comprehension] = STATE(1455), - [sym_dictionary_comprehension] = STATE(1455), - [sym_set_comprehension] = STATE(1455), - [sym_generator_expression] = STATE(1455), - [sym_parenthesized_expression] = STATE(1455), - [sym_conditional_expression] = STATE(1456), - [sym_concatenated_string] = STATE(1455), - [sym_string] = STATE(1071), - [sym_await] = STATE(1455), - [sym_identifier] = ACTIONS(314), - [anon_sym_SEMI] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_COMMA] = ACTIONS(342), - [anon_sym_as] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_print] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(344), - [anon_sym_if] = ACTIONS(347), - [anon_sym_COLON] = ACTIONS(342), - [anon_sym_match] = ACTIONS(320), - [anon_sym_async] = ACTIONS(320), - [anon_sym_in] = ACTIONS(347), - [anon_sym_STAR_STAR] = ACTIONS(344), - [anon_sym_exec] = ACTIONS(320), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_EQ] = ACTIONS(347), - [anon_sym_not] = ACTIONS(324), - [anon_sym_and] = ACTIONS(347), - [anon_sym_or] = ACTIONS(347), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(344), - [anon_sym_PERCENT] = ACTIONS(344), - [anon_sym_SLASH_SLASH] = ACTIONS(344), - [anon_sym_PIPE] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(344), - [anon_sym_CARET] = ACTIONS(344), - [anon_sym_LT_LT] = ACTIONS(344), - [anon_sym_TILDE] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(347), - [anon_sym_LT_EQ] = ACTIONS(342), - [anon_sym_EQ_EQ] = ACTIONS(342), - [anon_sym_BANG_EQ] = ACTIONS(342), - [anon_sym_GT_EQ] = ACTIONS(342), - [anon_sym_GT] = ACTIONS(347), - [anon_sym_LT_GT] = ACTIONS(342), - [anon_sym_is] = ACTIONS(347), - [anon_sym_lambda] = ACTIONS(330), - [anon_sym_PLUS_EQ] = ACTIONS(342), - [anon_sym_DASH_EQ] = ACTIONS(342), - [anon_sym_STAR_EQ] = ACTIONS(342), - [anon_sym_SLASH_EQ] = ACTIONS(342), - [anon_sym_AT_EQ] = ACTIONS(342), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(342), - [anon_sym_PERCENT_EQ] = ACTIONS(342), - [anon_sym_STAR_STAR_EQ] = ACTIONS(342), - [anon_sym_GT_GT_EQ] = ACTIONS(342), - [anon_sym_LT_LT_EQ] = ACTIONS(342), - [anon_sym_AMP_EQ] = ACTIONS(342), - [anon_sym_CARET_EQ] = ACTIONS(342), - [anon_sym_PIPE_EQ] = ACTIONS(342), - [sym_ellipsis] = ACTIONS(332), - [anon_sym_LBRACE] = ACTIONS(334), - [sym_integer] = ACTIONS(336), - [sym_float] = ACTIONS(332), - [anon_sym_await] = ACTIONS(338), - [sym_true] = ACTIONS(336), - [sym_false] = ACTIONS(336), - [sym_none] = ACTIONS(336), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(342), - [sym_string_start] = ACTIONS(340), - }, - [75] = { - [sym__simple_statements] = STATE(790), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [sym_global_statement] = STATE(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym__simple_statements] = STATE(715), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20533,8 +20258,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20555,62 +20280,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(351), - [sym__indent] = ACTIONS(353), + [sym__newline] = ACTIONS(379), + [sym__indent] = ACTIONS(381), [sym_string_start] = ACTIONS(79), }, - [76] = { - [sym__simple_statements] = STATE(839), - [sym_import_statement] = STATE(2084), - [sym_future_import_statement] = STATE(2084), - [sym_import_from_statement] = STATE(2084), - [sym_print_statement] = STATE(2084), - [sym_assert_statement] = STATE(2084), - [sym_expression_statement] = STATE(2084), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2084), - [sym_delete_statement] = STATE(2084), - [sym_raise_statement] = STATE(2084), - [sym_pass_statement] = STATE(2084), - [sym_break_statement] = STATE(2084), - [sym_continue_statement] = STATE(2084), - [sym_global_statement] = STATE(2084), - [sym_nonlocal_statement] = STATE(2084), - [sym_exec_statement] = STATE(2084), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [75] = { + [sym__simple_statements] = STATE(732), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20624,8 +20349,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20646,62 +20371,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(355), - [sym__indent] = ACTIONS(357), + [sym__newline] = ACTIONS(383), + [sym__indent] = ACTIONS(385), [sym_string_start] = ACTIONS(79), }, - [77] = { - [sym__simple_statements] = STATE(656), - [sym_import_statement] = STATE(2084), - [sym_future_import_statement] = STATE(2084), - [sym_import_from_statement] = STATE(2084), - [sym_print_statement] = STATE(2084), - [sym_assert_statement] = STATE(2084), - [sym_expression_statement] = STATE(2084), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2084), - [sym_delete_statement] = STATE(2084), - [sym_raise_statement] = STATE(2084), - [sym_pass_statement] = STATE(2084), - [sym_break_statement] = STATE(2084), - [sym_continue_statement] = STATE(2084), - [sym_global_statement] = STATE(2084), - [sym_nonlocal_statement] = STATE(2084), - [sym_exec_statement] = STATE(2084), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [76] = { + [sym__simple_statements] = STATE(815), + [sym_import_statement] = STATE(2012), + [sym_future_import_statement] = STATE(2012), + [sym_import_from_statement] = STATE(2012), + [sym_print_statement] = STATE(2012), + [sym_assert_statement] = STATE(2012), + [sym_expression_statement] = STATE(2012), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2012), + [sym_delete_statement] = STATE(2012), + [sym_raise_statement] = STATE(2012), + [sym_pass_statement] = STATE(2012), + [sym_break_statement] = STATE(2012), + [sym_continue_statement] = STATE(2012), + [sym_global_statement] = STATE(2012), + [sym_nonlocal_statement] = STATE(2012), + [sym_exec_statement] = STATE(2012), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20715,8 +20440,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20737,62 +20462,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(359), - [sym__indent] = ACTIONS(361), + [sym__newline] = ACTIONS(387), + [sym__indent] = ACTIONS(389), [sym_string_start] = ACTIONS(79), }, - [78] = { - [sym__simple_statements] = STATE(826), - [sym_import_statement] = STATE(2084), - [sym_future_import_statement] = STATE(2084), - [sym_import_from_statement] = STATE(2084), - [sym_print_statement] = STATE(2084), - [sym_assert_statement] = STATE(2084), - [sym_expression_statement] = STATE(2084), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2084), - [sym_delete_statement] = STATE(2084), - [sym_raise_statement] = STATE(2084), - [sym_pass_statement] = STATE(2084), - [sym_break_statement] = STATE(2084), - [sym_continue_statement] = STATE(2084), - [sym_global_statement] = STATE(2084), - [sym_nonlocal_statement] = STATE(2084), - [sym_exec_statement] = STATE(2084), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [77] = { + [sym__simple_statements] = STATE(743), + [sym_import_statement] = STATE(2012), + [sym_future_import_statement] = STATE(2012), + [sym_import_from_statement] = STATE(2012), + [sym_print_statement] = STATE(2012), + [sym_assert_statement] = STATE(2012), + [sym_expression_statement] = STATE(2012), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2012), + [sym_delete_statement] = STATE(2012), + [sym_raise_statement] = STATE(2012), + [sym_pass_statement] = STATE(2012), + [sym_break_statement] = STATE(2012), + [sym_continue_statement] = STATE(2012), + [sym_global_statement] = STATE(2012), + [sym_nonlocal_statement] = STATE(2012), + [sym_exec_statement] = STATE(2012), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20806,8 +20531,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20828,62 +20553,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(363), - [sym__indent] = ACTIONS(365), + [sym__newline] = ACTIONS(391), + [sym__indent] = ACTIONS(393), [sym_string_start] = ACTIONS(79), }, - [79] = { - [sym__simple_statements] = STATE(752), - [sym_import_statement] = STATE(2084), - [sym_future_import_statement] = STATE(2084), - [sym_import_from_statement] = STATE(2084), - [sym_print_statement] = STATE(2084), - [sym_assert_statement] = STATE(2084), - [sym_expression_statement] = STATE(2084), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2084), - [sym_delete_statement] = STATE(2084), - [sym_raise_statement] = STATE(2084), - [sym_pass_statement] = STATE(2084), - [sym_break_statement] = STATE(2084), - [sym_continue_statement] = STATE(2084), - [sym_global_statement] = STATE(2084), - [sym_nonlocal_statement] = STATE(2084), - [sym_exec_statement] = STATE(2084), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [78] = { + [sym__simple_statements] = STATE(2243), + [sym_import_statement] = STATE(2174), + [sym_future_import_statement] = STATE(2174), + [sym_import_from_statement] = STATE(2174), + [sym_print_statement] = STATE(2174), + [sym_assert_statement] = STATE(2174), + [sym_expression_statement] = STATE(2174), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2174), + [sym_delete_statement] = STATE(2174), + [sym_raise_statement] = STATE(2174), + [sym_pass_statement] = STATE(2174), + [sym_break_statement] = STATE(2174), + [sym_continue_statement] = STATE(2174), + [sym_global_statement] = STATE(2174), + [sym_nonlocal_statement] = STATE(2174), + [sym_exec_statement] = STATE(2174), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20897,8 +20622,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20919,62 +20644,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(367), - [sym__indent] = ACTIONS(369), + [sym__newline] = ACTIONS(395), + [sym__indent] = ACTIONS(397), [sym_string_start] = ACTIONS(79), }, - [80] = { - [sym__simple_statements] = STATE(763), - [sym_import_statement] = STATE(2084), - [sym_future_import_statement] = STATE(2084), - [sym_import_from_statement] = STATE(2084), - [sym_print_statement] = STATE(2084), - [sym_assert_statement] = STATE(2084), - [sym_expression_statement] = STATE(2084), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2084), - [sym_delete_statement] = STATE(2084), - [sym_raise_statement] = STATE(2084), - [sym_pass_statement] = STATE(2084), - [sym_break_statement] = STATE(2084), - [sym_continue_statement] = STATE(2084), - [sym_global_statement] = STATE(2084), - [sym_nonlocal_statement] = STATE(2084), - [sym_exec_statement] = STATE(2084), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [79] = { + [sym__simple_statements] = STATE(2246), + [sym_import_statement] = STATE(2174), + [sym_future_import_statement] = STATE(2174), + [sym_import_from_statement] = STATE(2174), + [sym_print_statement] = STATE(2174), + [sym_assert_statement] = STATE(2174), + [sym_expression_statement] = STATE(2174), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2174), + [sym_delete_statement] = STATE(2174), + [sym_raise_statement] = STATE(2174), + [sym_pass_statement] = STATE(2174), + [sym_break_statement] = STATE(2174), + [sym_continue_statement] = STATE(2174), + [sym_global_statement] = STATE(2174), + [sym_nonlocal_statement] = STATE(2174), + [sym_exec_statement] = STATE(2174), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20988,8 +20713,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21010,62 +20735,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(371), - [sym__indent] = ACTIONS(373), + [sym__newline] = ACTIONS(399), + [sym__indent] = ACTIONS(401), [sym_string_start] = ACTIONS(79), }, - [81] = { - [sym__simple_statements] = STATE(832), - [sym_import_statement] = STATE(2084), - [sym_future_import_statement] = STATE(2084), - [sym_import_from_statement] = STATE(2084), - [sym_print_statement] = STATE(2084), - [sym_assert_statement] = STATE(2084), - [sym_expression_statement] = STATE(2084), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2084), - [sym_delete_statement] = STATE(2084), - [sym_raise_statement] = STATE(2084), - [sym_pass_statement] = STATE(2084), - [sym_break_statement] = STATE(2084), - [sym_continue_statement] = STATE(2084), - [sym_global_statement] = STATE(2084), - [sym_nonlocal_statement] = STATE(2084), - [sym_exec_statement] = STATE(2084), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [80] = { + [sym__simple_statements] = STATE(738), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21079,8 +20804,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21101,62 +20826,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(375), - [sym__indent] = ACTIONS(377), + [sym__newline] = ACTIONS(403), + [sym__indent] = ACTIONS(405), [sym_string_start] = ACTIONS(79), }, - [82] = { - [sym__simple_statements] = STATE(806), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [sym_global_statement] = STATE(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [81] = { + [sym__simple_statements] = STATE(734), + [sym_import_statement] = STATE(2012), + [sym_future_import_statement] = STATE(2012), + [sym_import_from_statement] = STATE(2012), + [sym_print_statement] = STATE(2012), + [sym_assert_statement] = STATE(2012), + [sym_expression_statement] = STATE(2012), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2012), + [sym_delete_statement] = STATE(2012), + [sym_raise_statement] = STATE(2012), + [sym_pass_statement] = STATE(2012), + [sym_break_statement] = STATE(2012), + [sym_continue_statement] = STATE(2012), + [sym_global_statement] = STATE(2012), + [sym_nonlocal_statement] = STATE(2012), + [sym_exec_statement] = STATE(2012), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21170,8 +20895,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21192,62 +20917,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(379), - [sym__indent] = ACTIONS(381), + [sym__newline] = ACTIONS(407), + [sym__indent] = ACTIONS(409), [sym_string_start] = ACTIONS(79), }, - [83] = { - [sym__simple_statements] = STATE(783), - [sym_import_statement] = STATE(2084), - [sym_future_import_statement] = STATE(2084), - [sym_import_from_statement] = STATE(2084), - [sym_print_statement] = STATE(2084), - [sym_assert_statement] = STATE(2084), - [sym_expression_statement] = STATE(2084), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2084), - [sym_delete_statement] = STATE(2084), - [sym_raise_statement] = STATE(2084), - [sym_pass_statement] = STATE(2084), - [sym_break_statement] = STATE(2084), - [sym_continue_statement] = STATE(2084), - [sym_global_statement] = STATE(2084), - [sym_nonlocal_statement] = STATE(2084), - [sym_exec_statement] = STATE(2084), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [82] = { + [sym__simple_statements] = STATE(712), + [sym_import_statement] = STATE(2063), + [sym_future_import_statement] = STATE(2063), + [sym_import_from_statement] = STATE(2063), + [sym_print_statement] = STATE(2063), + [sym_assert_statement] = STATE(2063), + [sym_expression_statement] = STATE(2063), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2063), + [sym_delete_statement] = STATE(2063), + [sym_raise_statement] = STATE(2063), + [sym_pass_statement] = STATE(2063), + [sym_break_statement] = STATE(2063), + [sym_continue_statement] = STATE(2063), + [sym_global_statement] = STATE(2063), + [sym_nonlocal_statement] = STATE(2063), + [sym_exec_statement] = STATE(2063), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21261,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21283,62 +21008,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(383), - [sym__indent] = ACTIONS(385), + [sym__newline] = ACTIONS(411), + [sym__indent] = ACTIONS(413), + [sym_string_start] = ACTIONS(79), + }, + [83] = { + [sym__simple_statements] = STATE(2268), + [sym_import_statement] = STATE(2174), + [sym_future_import_statement] = STATE(2174), + [sym_import_from_statement] = STATE(2174), + [sym_print_statement] = STATE(2174), + [sym_assert_statement] = STATE(2174), + [sym_expression_statement] = STATE(2174), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2174), + [sym_delete_statement] = STATE(2174), + [sym_raise_statement] = STATE(2174), + [sym_pass_statement] = STATE(2174), + [sym_break_statement] = STATE(2174), + [sym_continue_statement] = STATE(2174), + [sym_global_statement] = STATE(2174), + [sym_nonlocal_statement] = STATE(2174), + [sym_exec_statement] = STATE(2174), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [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(353), + [anon_sym_async] = ACTIONS(353), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_not] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(67), + [anon_sym_yield] = ACTIONS(69), + [sym_ellipsis] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(71), + [anon_sym_await] = ACTIONS(77), + [sym_true] = ACTIONS(75), + [sym_false] = ACTIONS(75), + [sym_none] = ACTIONS(75), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(415), + [sym__indent] = ACTIONS(417), [sym_string_start] = ACTIONS(79), }, [84] = { - [sym__simple_statements] = STATE(815), - [sym_import_statement] = STATE(2084), - [sym_future_import_statement] = STATE(2084), - [sym_import_from_statement] = STATE(2084), - [sym_print_statement] = STATE(2084), - [sym_assert_statement] = STATE(2084), - [sym_expression_statement] = STATE(2084), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2084), - [sym_delete_statement] = STATE(2084), - [sym_raise_statement] = STATE(2084), - [sym_pass_statement] = STATE(2084), - [sym_break_statement] = STATE(2084), - [sym_continue_statement] = STATE(2084), - [sym_global_statement] = STATE(2084), - [sym_nonlocal_statement] = STATE(2084), - [sym_exec_statement] = STATE(2084), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym__simple_statements] = STATE(711), + [sym_import_statement] = STATE(2115), + [sym_future_import_statement] = STATE(2115), + [sym_import_from_statement] = STATE(2115), + [sym_print_statement] = STATE(2115), + [sym_assert_statement] = STATE(2115), + [sym_expression_statement] = STATE(2115), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2115), + [sym_delete_statement] = STATE(2115), + [sym_raise_statement] = STATE(2115), + [sym_pass_statement] = STATE(2115), + [sym_break_statement] = STATE(2115), + [sym_continue_statement] = STATE(2115), + [sym_global_statement] = STATE(2115), + [sym_nonlocal_statement] = STATE(2115), + [sym_exec_statement] = STATE(2115), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21352,8 +21168,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21374,62 +21190,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(387), - [sym__indent] = ACTIONS(389), + [sym__newline] = ACTIONS(419), + [sym__indent] = ACTIONS(421), [sym_string_start] = ACTIONS(79), }, [85] = { - [sym__simple_statements] = STATE(696), - [sym_import_statement] = STATE(2199), - [sym_future_import_statement] = STATE(2199), - [sym_import_from_statement] = STATE(2199), - [sym_print_statement] = STATE(2199), - [sym_assert_statement] = STATE(2199), - [sym_expression_statement] = STATE(2199), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2199), - [sym_delete_statement] = STATE(2199), - [sym_raise_statement] = STATE(2199), - [sym_pass_statement] = STATE(2199), - [sym_break_statement] = STATE(2199), - [sym_continue_statement] = STATE(2199), - [sym_global_statement] = STATE(2199), - [sym_nonlocal_statement] = STATE(2199), - [sym_exec_statement] = STATE(2199), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym__simple_statements] = STATE(766), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21443,8 +21259,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21465,62 +21281,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(391), - [sym__indent] = ACTIONS(393), + [sym__newline] = ACTIONS(423), + [sym__indent] = ACTIONS(425), [sym_string_start] = ACTIONS(79), }, [86] = { - [sym__simple_statements] = STATE(805), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [sym_global_statement] = STATE(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym__simple_statements] = STATE(710), + [sym_import_statement] = STATE(2063), + [sym_future_import_statement] = STATE(2063), + [sym_import_from_statement] = STATE(2063), + [sym_print_statement] = STATE(2063), + [sym_assert_statement] = STATE(2063), + [sym_expression_statement] = STATE(2063), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2063), + [sym_delete_statement] = STATE(2063), + [sym_raise_statement] = STATE(2063), + [sym_pass_statement] = STATE(2063), + [sym_break_statement] = STATE(2063), + [sym_continue_statement] = STATE(2063), + [sym_global_statement] = STATE(2063), + [sym_nonlocal_statement] = STATE(2063), + [sym_exec_statement] = STATE(2063), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21534,8 +21350,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21556,62 +21372,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(395), - [sym__indent] = ACTIONS(397), + [sym__newline] = ACTIONS(427), + [sym__indent] = ACTIONS(429), [sym_string_start] = ACTIONS(79), }, [87] = { - [sym__simple_statements] = STATE(798), - [sym_import_statement] = STATE(2084), - [sym_future_import_statement] = STATE(2084), - [sym_import_from_statement] = STATE(2084), - [sym_print_statement] = STATE(2084), - [sym_assert_statement] = STATE(2084), - [sym_expression_statement] = STATE(2084), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2084), - [sym_delete_statement] = STATE(2084), - [sym_raise_statement] = STATE(2084), - [sym_pass_statement] = STATE(2084), - [sym_break_statement] = STATE(2084), - [sym_continue_statement] = STATE(2084), - [sym_global_statement] = STATE(2084), - [sym_nonlocal_statement] = STATE(2084), - [sym_exec_statement] = STATE(2084), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym__simple_statements] = STATE(801), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21625,8 +21441,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21647,62 +21463,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(399), - [sym__indent] = ACTIONS(401), + [sym__newline] = ACTIONS(431), + [sym__indent] = ACTIONS(433), [sym_string_start] = ACTIONS(79), }, [88] = { - [sym__simple_statements] = STATE(814), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [sym_global_statement] = STATE(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym__simple_statements] = STATE(705), + [sym_import_statement] = STATE(2203), + [sym_future_import_statement] = STATE(2203), + [sym_import_from_statement] = STATE(2203), + [sym_print_statement] = STATE(2203), + [sym_assert_statement] = STATE(2203), + [sym_expression_statement] = STATE(2203), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2203), + [sym_delete_statement] = STATE(2203), + [sym_raise_statement] = STATE(2203), + [sym_pass_statement] = STATE(2203), + [sym_break_statement] = STATE(2203), + [sym_continue_statement] = STATE(2203), + [sym_global_statement] = STATE(2203), + [sym_nonlocal_statement] = STATE(2203), + [sym_exec_statement] = STATE(2203), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21716,8 +21532,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21738,62 +21554,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(403), - [sym__indent] = ACTIONS(405), + [sym__newline] = ACTIONS(435), + [sym__indent] = ACTIONS(437), [sym_string_start] = ACTIONS(79), }, [89] = { - [sym__simple_statements] = STATE(818), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [sym_global_statement] = STATE(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym__simple_statements] = STATE(729), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21807,8 +21623,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21829,62 +21645,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(407), - [sym__indent] = ACTIONS(409), + [sym__newline] = ACTIONS(439), + [sym__indent] = ACTIONS(441), [sym_string_start] = ACTIONS(79), }, [90] = { - [sym__simple_statements] = STATE(712), - [sym_import_statement] = STATE(2080), - [sym_future_import_statement] = STATE(2080), - [sym_import_from_statement] = STATE(2080), - [sym_print_statement] = STATE(2080), - [sym_assert_statement] = STATE(2080), - [sym_expression_statement] = STATE(2080), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2080), - [sym_delete_statement] = STATE(2080), - [sym_raise_statement] = STATE(2080), - [sym_pass_statement] = STATE(2080), - [sym_break_statement] = STATE(2080), - [sym_continue_statement] = STATE(2080), - [sym_global_statement] = STATE(2080), - [sym_nonlocal_statement] = STATE(2080), - [sym_exec_statement] = STATE(2080), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym__simple_statements] = STATE(731), + [sym_import_statement] = STATE(2012), + [sym_future_import_statement] = STATE(2012), + [sym_import_from_statement] = STATE(2012), + [sym_print_statement] = STATE(2012), + [sym_assert_statement] = STATE(2012), + [sym_expression_statement] = STATE(2012), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2012), + [sym_delete_statement] = STATE(2012), + [sym_raise_statement] = STATE(2012), + [sym_pass_statement] = STATE(2012), + [sym_break_statement] = STATE(2012), + [sym_continue_statement] = STATE(2012), + [sym_global_statement] = STATE(2012), + [sym_nonlocal_statement] = STATE(2012), + [sym_exec_statement] = STATE(2012), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21898,8 +21714,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21920,62 +21736,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(411), - [sym__indent] = ACTIONS(413), + [sym__newline] = ACTIONS(443), + [sym__indent] = ACTIONS(445), [sym_string_start] = ACTIONS(79), }, [91] = { - [sym__simple_statements] = STATE(780), - [sym_import_statement] = STATE(2084), - [sym_future_import_statement] = STATE(2084), - [sym_import_from_statement] = STATE(2084), - [sym_print_statement] = STATE(2084), - [sym_assert_statement] = STATE(2084), - [sym_expression_statement] = STATE(2084), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2084), - [sym_delete_statement] = STATE(2084), - [sym_raise_statement] = STATE(2084), - [sym_pass_statement] = STATE(2084), - [sym_break_statement] = STATE(2084), - [sym_continue_statement] = STATE(2084), - [sym_global_statement] = STATE(2084), - [sym_nonlocal_statement] = STATE(2084), - [sym_exec_statement] = STATE(2084), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym__simple_statements] = STATE(643), + [sym_import_statement] = STATE(2012), + [sym_future_import_statement] = STATE(2012), + [sym_import_from_statement] = STATE(2012), + [sym_print_statement] = STATE(2012), + [sym_assert_statement] = STATE(2012), + [sym_expression_statement] = STATE(2012), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2012), + [sym_delete_statement] = STATE(2012), + [sym_raise_statement] = STATE(2012), + [sym_pass_statement] = STATE(2012), + [sym_break_statement] = STATE(2012), + [sym_continue_statement] = STATE(2012), + [sym_global_statement] = STATE(2012), + [sym_nonlocal_statement] = STATE(2012), + [sym_exec_statement] = STATE(2012), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21989,8 +21805,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22011,62 +21827,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(415), - [sym__indent] = ACTIONS(417), + [sym__newline] = ACTIONS(447), + [sym__indent] = ACTIONS(449), [sym_string_start] = ACTIONS(79), }, [92] = { - [sym__simple_statements] = STATE(777), - [sym_import_statement] = STATE(2084), - [sym_future_import_statement] = STATE(2084), - [sym_import_from_statement] = STATE(2084), - [sym_print_statement] = STATE(2084), - [sym_assert_statement] = STATE(2084), - [sym_expression_statement] = STATE(2084), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2084), - [sym_delete_statement] = STATE(2084), - [sym_raise_statement] = STATE(2084), - [sym_pass_statement] = STATE(2084), - [sym_break_statement] = STATE(2084), - [sym_continue_statement] = STATE(2084), - [sym_global_statement] = STATE(2084), - [sym_nonlocal_statement] = STATE(2084), - [sym_exec_statement] = STATE(2084), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym__simple_statements] = STATE(741), + [sym_import_statement] = STATE(2012), + [sym_future_import_statement] = STATE(2012), + [sym_import_from_statement] = STATE(2012), + [sym_print_statement] = STATE(2012), + [sym_assert_statement] = STATE(2012), + [sym_expression_statement] = STATE(2012), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2012), + [sym_delete_statement] = STATE(2012), + [sym_raise_statement] = STATE(2012), + [sym_pass_statement] = STATE(2012), + [sym_break_statement] = STATE(2012), + [sym_continue_statement] = STATE(2012), + [sym_global_statement] = STATE(2012), + [sym_nonlocal_statement] = STATE(2012), + [sym_exec_statement] = STATE(2012), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22080,8 +21896,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22102,62 +21918,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(419), - [sym__indent] = ACTIONS(421), + [sym__newline] = ACTIONS(451), + [sym__indent] = ACTIONS(453), [sym_string_start] = ACTIONS(79), }, [93] = { - [sym__simple_statements] = STATE(813), - [sym_import_statement] = STATE(2084), - [sym_future_import_statement] = STATE(2084), - [sym_import_from_statement] = STATE(2084), - [sym_print_statement] = STATE(2084), - [sym_assert_statement] = STATE(2084), - [sym_expression_statement] = STATE(2084), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2084), - [sym_delete_statement] = STATE(2084), - [sym_raise_statement] = STATE(2084), - [sym_pass_statement] = STATE(2084), - [sym_break_statement] = STATE(2084), - [sym_continue_statement] = STATE(2084), - [sym_global_statement] = STATE(2084), - [sym_nonlocal_statement] = STATE(2084), - [sym_exec_statement] = STATE(2084), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym__simple_statements] = STATE(2235), + [sym_import_statement] = STATE(2174), + [sym_future_import_statement] = STATE(2174), + [sym_import_from_statement] = STATE(2174), + [sym_print_statement] = STATE(2174), + [sym_assert_statement] = STATE(2174), + [sym_expression_statement] = STATE(2174), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2174), + [sym_delete_statement] = STATE(2174), + [sym_raise_statement] = STATE(2174), + [sym_pass_statement] = STATE(2174), + [sym_break_statement] = STATE(2174), + [sym_continue_statement] = STATE(2174), + [sym_global_statement] = STATE(2174), + [sym_nonlocal_statement] = STATE(2174), + [sym_exec_statement] = STATE(2174), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22171,8 +21987,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22193,62 +22009,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(423), - [sym__indent] = ACTIONS(425), + [sym__newline] = ACTIONS(455), + [sym__indent] = ACTIONS(457), [sym_string_start] = ACTIONS(79), }, [94] = { - [sym__simple_statements] = STATE(842), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [sym_global_statement] = STATE(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym__simple_statements] = STATE(808), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22262,8 +22078,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22284,62 +22100,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(427), - [sym__indent] = ACTIONS(429), + [sym__newline] = ACTIONS(459), + [sym__indent] = ACTIONS(461), [sym_string_start] = ACTIONS(79), }, [95] = { - [sym__simple_statements] = STATE(772), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [sym_global_statement] = STATE(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym__simple_statements] = STATE(802), + [sym_import_statement] = STATE(2012), + [sym_future_import_statement] = STATE(2012), + [sym_import_from_statement] = STATE(2012), + [sym_print_statement] = STATE(2012), + [sym_assert_statement] = STATE(2012), + [sym_expression_statement] = STATE(2012), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2012), + [sym_delete_statement] = STATE(2012), + [sym_raise_statement] = STATE(2012), + [sym_pass_statement] = STATE(2012), + [sym_break_statement] = STATE(2012), + [sym_continue_statement] = STATE(2012), + [sym_global_statement] = STATE(2012), + [sym_nonlocal_statement] = STATE(2012), + [sym_exec_statement] = STATE(2012), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22353,8 +22169,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22375,62 +22191,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(431), - [sym__indent] = ACTIONS(433), + [sym__newline] = ACTIONS(463), + [sym__indent] = ACTIONS(465), [sym_string_start] = ACTIONS(79), }, [96] = { - [sym__simple_statements] = STATE(897), - [sym_import_statement] = STATE(2084), - [sym_future_import_statement] = STATE(2084), - [sym_import_from_statement] = STATE(2084), - [sym_print_statement] = STATE(2084), - [sym_assert_statement] = STATE(2084), - [sym_expression_statement] = STATE(2084), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2084), - [sym_delete_statement] = STATE(2084), - [sym_raise_statement] = STATE(2084), - [sym_pass_statement] = STATE(2084), - [sym_break_statement] = STATE(2084), - [sym_continue_statement] = STATE(2084), - [sym_global_statement] = STATE(2084), - [sym_nonlocal_statement] = STATE(2084), - [sym_exec_statement] = STATE(2084), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym__simple_statements] = STATE(745), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22444,8 +22260,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22466,62 +22282,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(435), - [sym__indent] = ACTIONS(437), + [sym__newline] = ACTIONS(467), + [sym__indent] = ACTIONS(469), [sym_string_start] = ACTIONS(79), }, [97] = { - [sym__simple_statements] = STATE(785), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [sym_global_statement] = STATE(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym__simple_statements] = STATE(786), + [sym_import_statement] = STATE(2012), + [sym_future_import_statement] = STATE(2012), + [sym_import_from_statement] = STATE(2012), + [sym_print_statement] = STATE(2012), + [sym_assert_statement] = STATE(2012), + [sym_expression_statement] = STATE(2012), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2012), + [sym_delete_statement] = STATE(2012), + [sym_raise_statement] = STATE(2012), + [sym_pass_statement] = STATE(2012), + [sym_break_statement] = STATE(2012), + [sym_continue_statement] = STATE(2012), + [sym_global_statement] = STATE(2012), + [sym_nonlocal_statement] = STATE(2012), + [sym_exec_statement] = STATE(2012), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22535,8 +22351,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22557,62 +22373,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(439), - [sym__indent] = ACTIONS(441), + [sym__newline] = ACTIONS(471), + [sym__indent] = ACTIONS(473), [sym_string_start] = ACTIONS(79), }, [98] = { - [sym__simple_statements] = STATE(861), - [sym_import_statement] = STATE(2084), - [sym_future_import_statement] = STATE(2084), - [sym_import_from_statement] = STATE(2084), - [sym_print_statement] = STATE(2084), - [sym_assert_statement] = STATE(2084), - [sym_expression_statement] = STATE(2084), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2084), - [sym_delete_statement] = STATE(2084), - [sym_raise_statement] = STATE(2084), - [sym_pass_statement] = STATE(2084), - [sym_break_statement] = STATE(2084), - [sym_continue_statement] = STATE(2084), - [sym_global_statement] = STATE(2084), - [sym_nonlocal_statement] = STATE(2084), - [sym_exec_statement] = STATE(2084), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym__simple_statements] = STATE(676), + [sym_import_statement] = STATE(2063), + [sym_future_import_statement] = STATE(2063), + [sym_import_from_statement] = STATE(2063), + [sym_print_statement] = STATE(2063), + [sym_assert_statement] = STATE(2063), + [sym_expression_statement] = STATE(2063), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2063), + [sym_delete_statement] = STATE(2063), + [sym_raise_statement] = STATE(2063), + [sym_pass_statement] = STATE(2063), + [sym_break_statement] = STATE(2063), + [sym_continue_statement] = STATE(2063), + [sym_global_statement] = STATE(2063), + [sym_nonlocal_statement] = STATE(2063), + [sym_exec_statement] = STATE(2063), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22626,8 +22442,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22648,62 +22464,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(443), - [sym__indent] = ACTIONS(445), + [sym__newline] = ACTIONS(475), + [sym__indent] = ACTIONS(477), [sym_string_start] = ACTIONS(79), }, [99] = { - [sym__simple_statements] = STATE(765), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [sym_global_statement] = STATE(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym__simple_statements] = STATE(716), + [sym_import_statement] = STATE(2012), + [sym_future_import_statement] = STATE(2012), + [sym_import_from_statement] = STATE(2012), + [sym_print_statement] = STATE(2012), + [sym_assert_statement] = STATE(2012), + [sym_expression_statement] = STATE(2012), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2012), + [sym_delete_statement] = STATE(2012), + [sym_raise_statement] = STATE(2012), + [sym_pass_statement] = STATE(2012), + [sym_break_statement] = STATE(2012), + [sym_continue_statement] = STATE(2012), + [sym_global_statement] = STATE(2012), + [sym_nonlocal_statement] = STATE(2012), + [sym_exec_statement] = STATE(2012), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22717,8 +22533,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22739,62 +22555,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(447), - [sym__indent] = ACTIONS(449), + [sym__newline] = ACTIONS(479), + [sym__indent] = ACTIONS(481), [sym_string_start] = ACTIONS(79), }, [100] = { - [sym__simple_statements] = STATE(715), - [sym_import_statement] = STATE(2080), - [sym_future_import_statement] = STATE(2080), - [sym_import_from_statement] = STATE(2080), - [sym_print_statement] = STATE(2080), - [sym_assert_statement] = STATE(2080), - [sym_expression_statement] = STATE(2080), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2080), - [sym_delete_statement] = STATE(2080), - [sym_raise_statement] = STATE(2080), - [sym_pass_statement] = STATE(2080), - [sym_break_statement] = STATE(2080), - [sym_continue_statement] = STATE(2080), - [sym_global_statement] = STATE(2080), - [sym_nonlocal_statement] = STATE(2080), - [sym_exec_statement] = STATE(2080), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym__simple_statements] = STATE(821), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22808,8 +22624,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22830,62 +22646,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(451), - [sym__indent] = ACTIONS(453), + [sym__newline] = ACTIONS(483), + [sym__indent] = ACTIONS(485), [sym_string_start] = ACTIONS(79), }, [101] = { - [sym__simple_statements] = STATE(767), - [sym_import_statement] = STATE(2084), - [sym_future_import_statement] = STATE(2084), - [sym_import_from_statement] = STATE(2084), - [sym_print_statement] = STATE(2084), - [sym_assert_statement] = STATE(2084), - [sym_expression_statement] = STATE(2084), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2084), - [sym_delete_statement] = STATE(2084), - [sym_raise_statement] = STATE(2084), - [sym_pass_statement] = STATE(2084), - [sym_break_statement] = STATE(2084), - [sym_continue_statement] = STATE(2084), - [sym_global_statement] = STATE(2084), - [sym_nonlocal_statement] = STATE(2084), - [sym_exec_statement] = STATE(2084), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym__simple_statements] = STATE(838), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22899,8 +22715,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22921,62 +22737,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(455), - [sym__indent] = ACTIONS(457), + [sym__newline] = ACTIONS(487), + [sym__indent] = ACTIONS(489), [sym_string_start] = ACTIONS(79), }, [102] = { - [sym__simple_statements] = STATE(867), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [sym_global_statement] = STATE(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym__simple_statements] = STATE(772), + [sym_import_statement] = STATE(2012), + [sym_future_import_statement] = STATE(2012), + [sym_import_from_statement] = STATE(2012), + [sym_print_statement] = STATE(2012), + [sym_assert_statement] = STATE(2012), + [sym_expression_statement] = STATE(2012), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2012), + [sym_delete_statement] = STATE(2012), + [sym_raise_statement] = STATE(2012), + [sym_pass_statement] = STATE(2012), + [sym_break_statement] = STATE(2012), + [sym_continue_statement] = STATE(2012), + [sym_global_statement] = STATE(2012), + [sym_nonlocal_statement] = STATE(2012), + [sym_exec_statement] = STATE(2012), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22990,8 +22806,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23012,62 +22828,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(459), - [sym__indent] = ACTIONS(461), + [sym__newline] = ACTIONS(491), + [sym__indent] = ACTIONS(493), [sym_string_start] = ACTIONS(79), }, [103] = { - [sym__simple_statements] = STATE(824), - [sym_import_statement] = STATE(2084), - [sym_future_import_statement] = STATE(2084), - [sym_import_from_statement] = STATE(2084), - [sym_print_statement] = STATE(2084), - [sym_assert_statement] = STATE(2084), - [sym_expression_statement] = STATE(2084), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2084), - [sym_delete_statement] = STATE(2084), - [sym_raise_statement] = STATE(2084), - [sym_pass_statement] = STATE(2084), - [sym_break_statement] = STATE(2084), - [sym_continue_statement] = STATE(2084), - [sym_global_statement] = STATE(2084), - [sym_nonlocal_statement] = STATE(2084), - [sym_exec_statement] = STATE(2084), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym__simple_statements] = STATE(733), + [sym_import_statement] = STATE(2012), + [sym_future_import_statement] = STATE(2012), + [sym_import_from_statement] = STATE(2012), + [sym_print_statement] = STATE(2012), + [sym_assert_statement] = STATE(2012), + [sym_expression_statement] = STATE(2012), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2012), + [sym_delete_statement] = STATE(2012), + [sym_raise_statement] = STATE(2012), + [sym_pass_statement] = STATE(2012), + [sym_break_statement] = STATE(2012), + [sym_continue_statement] = STATE(2012), + [sym_global_statement] = STATE(2012), + [sym_nonlocal_statement] = STATE(2012), + [sym_exec_statement] = STATE(2012), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23081,8 +22897,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23103,62 +22919,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(463), - [sym__indent] = ACTIONS(465), + [sym__newline] = ACTIONS(495), + [sym__indent] = ACTIONS(497), [sym_string_start] = ACTIONS(79), }, [104] = { - [sym__simple_statements] = STATE(888), - [sym_import_statement] = STATE(2084), - [sym_future_import_statement] = STATE(2084), - [sym_import_from_statement] = STATE(2084), - [sym_print_statement] = STATE(2084), - [sym_assert_statement] = STATE(2084), - [sym_expression_statement] = STATE(2084), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2084), - [sym_delete_statement] = STATE(2084), - [sym_raise_statement] = STATE(2084), - [sym_pass_statement] = STATE(2084), - [sym_break_statement] = STATE(2084), - [sym_continue_statement] = STATE(2084), - [sym_global_statement] = STATE(2084), - [sym_nonlocal_statement] = STATE(2084), - [sym_exec_statement] = STATE(2084), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym__simple_statements] = STATE(823), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23172,8 +22988,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23194,62 +23010,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(467), - [sym__indent] = ACTIONS(469), + [sym__newline] = ACTIONS(499), + [sym__indent] = ACTIONS(501), [sym_string_start] = ACTIONS(79), }, [105] = { - [sym__simple_statements] = STATE(1846), - [sym_import_statement] = STATE(2096), - [sym_future_import_statement] = STATE(2096), - [sym_import_from_statement] = STATE(2096), - [sym_print_statement] = STATE(2096), - [sym_assert_statement] = STATE(2096), - [sym_expression_statement] = STATE(2096), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2096), - [sym_delete_statement] = STATE(2096), - [sym_raise_statement] = STATE(2096), - [sym_pass_statement] = STATE(2096), - [sym_break_statement] = STATE(2096), - [sym_continue_statement] = STATE(2096), - [sym_global_statement] = STATE(2096), - [sym_nonlocal_statement] = STATE(2096), - [sym_exec_statement] = STATE(2096), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym__simple_statements] = STATE(1755), + [sym_import_statement] = STATE(2176), + [sym_future_import_statement] = STATE(2176), + [sym_import_from_statement] = STATE(2176), + [sym_print_statement] = STATE(2176), + [sym_assert_statement] = STATE(2176), + [sym_expression_statement] = STATE(2176), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2176), + [sym_delete_statement] = STATE(2176), + [sym_raise_statement] = STATE(2176), + [sym_pass_statement] = STATE(2176), + [sym_break_statement] = STATE(2176), + [sym_continue_statement] = STATE(2176), + [sym_global_statement] = STATE(2176), + [sym_nonlocal_statement] = STATE(2176), + [sym_exec_statement] = STATE(2176), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23263,8 +23079,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23285,62 +23101,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(471), - [sym__indent] = ACTIONS(473), + [sym__newline] = ACTIONS(503), + [sym__indent] = ACTIONS(505), [sym_string_start] = ACTIONS(79), }, [106] = { - [sym__simple_statements] = STATE(664), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [sym_global_statement] = STATE(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym__simple_statements] = STATE(836), + [sym_import_statement] = STATE(2012), + [sym_future_import_statement] = STATE(2012), + [sym_import_from_statement] = STATE(2012), + [sym_print_statement] = STATE(2012), + [sym_assert_statement] = STATE(2012), + [sym_expression_statement] = STATE(2012), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2012), + [sym_delete_statement] = STATE(2012), + [sym_raise_statement] = STATE(2012), + [sym_pass_statement] = STATE(2012), + [sym_break_statement] = STATE(2012), + [sym_continue_statement] = STATE(2012), + [sym_global_statement] = STATE(2012), + [sym_nonlocal_statement] = STATE(2012), + [sym_exec_statement] = STATE(2012), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23354,8 +23170,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23376,62 +23192,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(475), - [sym__indent] = ACTIONS(477), + [sym__newline] = ACTIONS(507), + [sym__indent] = ACTIONS(509), [sym_string_start] = ACTIONS(79), }, [107] = { - [sym__simple_statements] = STATE(757), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [sym_global_statement] = STATE(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym__simple_statements] = STATE(2293), + [sym_import_statement] = STATE(2174), + [sym_future_import_statement] = STATE(2174), + [sym_import_from_statement] = STATE(2174), + [sym_print_statement] = STATE(2174), + [sym_assert_statement] = STATE(2174), + [sym_expression_statement] = STATE(2174), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2174), + [sym_delete_statement] = STATE(2174), + [sym_raise_statement] = STATE(2174), + [sym_pass_statement] = STATE(2174), + [sym_break_statement] = STATE(2174), + [sym_continue_statement] = STATE(2174), + [sym_global_statement] = STATE(2174), + [sym_nonlocal_statement] = STATE(2174), + [sym_exec_statement] = STATE(2174), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23445,8 +23261,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23467,62 +23283,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(479), - [sym__indent] = ACTIONS(481), + [sym__newline] = ACTIONS(511), + [sym__indent] = ACTIONS(513), [sym_string_start] = ACTIONS(79), }, [108] = { - [sym__simple_statements] = STATE(854), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [sym_global_statement] = STATE(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym__simple_statements] = STATE(746), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23536,8 +23352,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23558,62 +23374,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(483), - [sym__indent] = ACTIONS(485), + [sym__newline] = ACTIONS(515), + [sym__indent] = ACTIONS(517), [sym_string_start] = ACTIONS(79), }, [109] = { - [sym__simple_statements] = STATE(857), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [sym_global_statement] = STATE(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym__simple_statements] = STATE(820), + [sym_import_statement] = STATE(2012), + [sym_future_import_statement] = STATE(2012), + [sym_import_from_statement] = STATE(2012), + [sym_print_statement] = STATE(2012), + [sym_assert_statement] = STATE(2012), + [sym_expression_statement] = STATE(2012), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2012), + [sym_delete_statement] = STATE(2012), + [sym_raise_statement] = STATE(2012), + [sym_pass_statement] = STATE(2012), + [sym_break_statement] = STATE(2012), + [sym_continue_statement] = STATE(2012), + [sym_global_statement] = STATE(2012), + [sym_nonlocal_statement] = STATE(2012), + [sym_exec_statement] = STATE(2012), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23627,8 +23443,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23649,62 +23465,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(487), - [sym__indent] = ACTIONS(489), + [sym__newline] = ACTIONS(519), + [sym__indent] = ACTIONS(521), [sym_string_start] = ACTIONS(79), }, [110] = { - [sym__simple_statements] = STATE(703), - [sym_import_statement] = STATE(2255), - [sym_future_import_statement] = STATE(2255), - [sym_import_from_statement] = STATE(2255), - [sym_print_statement] = STATE(2255), - [sym_assert_statement] = STATE(2255), - [sym_expression_statement] = STATE(2255), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2255), - [sym_delete_statement] = STATE(2255), - [sym_raise_statement] = STATE(2255), - [sym_pass_statement] = STATE(2255), - [sym_break_statement] = STATE(2255), - [sym_continue_statement] = STATE(2255), - [sym_global_statement] = STATE(2255), - [sym_nonlocal_statement] = STATE(2255), - [sym_exec_statement] = STATE(2255), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym__simple_statements] = STATE(754), + [sym_import_statement] = STATE(2012), + [sym_future_import_statement] = STATE(2012), + [sym_import_from_statement] = STATE(2012), + [sym_print_statement] = STATE(2012), + [sym_assert_statement] = STATE(2012), + [sym_expression_statement] = STATE(2012), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2012), + [sym_delete_statement] = STATE(2012), + [sym_raise_statement] = STATE(2012), + [sym_pass_statement] = STATE(2012), + [sym_break_statement] = STATE(2012), + [sym_continue_statement] = STATE(2012), + [sym_global_statement] = STATE(2012), + [sym_nonlocal_statement] = STATE(2012), + [sym_exec_statement] = STATE(2012), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23718,8 +23534,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23740,62 +23556,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(491), - [sym__indent] = ACTIONS(493), + [sym__newline] = ACTIONS(523), + [sym__indent] = ACTIONS(525), [sym_string_start] = ACTIONS(79), }, [111] = { - [sym__simple_statements] = STATE(704), - [sym_import_statement] = STATE(2199), - [sym_future_import_statement] = STATE(2199), - [sym_import_from_statement] = STATE(2199), - [sym_print_statement] = STATE(2199), - [sym_assert_statement] = STATE(2199), - [sym_expression_statement] = STATE(2199), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2199), - [sym_delete_statement] = STATE(2199), - [sym_raise_statement] = STATE(2199), - [sym_pass_statement] = STATE(2199), - [sym_break_statement] = STATE(2199), - [sym_continue_statement] = STATE(2199), - [sym_global_statement] = STATE(2199), - [sym_nonlocal_statement] = STATE(2199), - [sym_exec_statement] = STATE(2199), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym__simple_statements] = STATE(825), + [sym_import_statement] = STATE(2012), + [sym_future_import_statement] = STATE(2012), + [sym_import_from_statement] = STATE(2012), + [sym_print_statement] = STATE(2012), + [sym_assert_statement] = STATE(2012), + [sym_expression_statement] = STATE(2012), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2012), + [sym_delete_statement] = STATE(2012), + [sym_raise_statement] = STATE(2012), + [sym_pass_statement] = STATE(2012), + [sym_break_statement] = STATE(2012), + [sym_continue_statement] = STATE(2012), + [sym_global_statement] = STATE(2012), + [sym_nonlocal_statement] = STATE(2012), + [sym_exec_statement] = STATE(2012), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23809,8 +23625,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23831,62 +23647,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(495), - [sym__indent] = ACTIONS(497), + [sym__newline] = ACTIONS(527), + [sym__indent] = ACTIONS(529), [sym_string_start] = ACTIONS(79), }, [112] = { - [sym__simple_statements] = STATE(802), - [sym_import_statement] = STATE(2084), - [sym_future_import_statement] = STATE(2084), - [sym_import_from_statement] = STATE(2084), - [sym_print_statement] = STATE(2084), - [sym_assert_statement] = STATE(2084), - [sym_expression_statement] = STATE(2084), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2084), - [sym_delete_statement] = STATE(2084), - [sym_raise_statement] = STATE(2084), - [sym_pass_statement] = STATE(2084), - [sym_break_statement] = STATE(2084), - [sym_continue_statement] = STATE(2084), - [sym_global_statement] = STATE(2084), - [sym_nonlocal_statement] = STATE(2084), - [sym_exec_statement] = STATE(2084), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym__simple_statements] = STATE(763), + [sym_import_statement] = STATE(2181), + [sym_future_import_statement] = STATE(2181), + [sym_import_from_statement] = STATE(2181), + [sym_print_statement] = STATE(2181), + [sym_assert_statement] = STATE(2181), + [sym_expression_statement] = STATE(2181), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2181), + [sym_delete_statement] = STATE(2181), + [sym_raise_statement] = STATE(2181), + [sym_pass_statement] = STATE(2181), + [sym_break_statement] = STATE(2181), + [sym_continue_statement] = STATE(2181), + [sym_global_statement] = STATE(2181), + [sym_nonlocal_statement] = STATE(2181), + [sym_exec_statement] = STATE(2181), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23900,8 +23716,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23922,62 +23738,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(499), - [sym__indent] = ACTIONS(501), + [sym__newline] = ACTIONS(531), + [sym__indent] = ACTIONS(533), [sym_string_start] = ACTIONS(79), }, [113] = { - [sym__simple_statements] = STATE(1845), - [sym_import_statement] = STATE(2096), - [sym_future_import_statement] = STATE(2096), - [sym_import_from_statement] = STATE(2096), - [sym_print_statement] = STATE(2096), - [sym_assert_statement] = STATE(2096), - [sym_expression_statement] = STATE(2096), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2096), - [sym_delete_statement] = STATE(2096), - [sym_raise_statement] = STATE(2096), - [sym_pass_statement] = STATE(2096), - [sym_break_statement] = STATE(2096), - [sym_continue_statement] = STATE(2096), - [sym_global_statement] = STATE(2096), - [sym_nonlocal_statement] = STATE(2096), - [sym_exec_statement] = STATE(2096), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym__simple_statements] = STATE(2245), + [sym_import_statement] = STATE(2174), + [sym_future_import_statement] = STATE(2174), + [sym_import_from_statement] = STATE(2174), + [sym_print_statement] = STATE(2174), + [sym_assert_statement] = STATE(2174), + [sym_expression_statement] = STATE(2174), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2174), + [sym_delete_statement] = STATE(2174), + [sym_raise_statement] = STATE(2174), + [sym_pass_statement] = STATE(2174), + [sym_break_statement] = STATE(2174), + [sym_continue_statement] = STATE(2174), + [sym_global_statement] = STATE(2174), + [sym_nonlocal_statement] = STATE(2174), + [sym_exec_statement] = STATE(2174), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23991,8 +23807,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24013,62 +23829,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(503), - [sym__indent] = ACTIONS(505), + [sym__newline] = ACTIONS(535), + [sym__indent] = ACTIONS(537), [sym_string_start] = ACTIONS(79), }, [114] = { - [sym__simple_statements] = STATE(707), - [sym_import_statement] = STATE(2199), - [sym_future_import_statement] = STATE(2199), - [sym_import_from_statement] = STATE(2199), - [sym_print_statement] = STATE(2199), - [sym_assert_statement] = STATE(2199), - [sym_expression_statement] = STATE(2199), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2199), - [sym_delete_statement] = STATE(2199), - [sym_raise_statement] = STATE(2199), - [sym_pass_statement] = STATE(2199), - [sym_break_statement] = STATE(2199), - [sym_continue_statement] = STATE(2199), - [sym_global_statement] = STATE(2199), - [sym_nonlocal_statement] = STATE(2199), - [sym_exec_statement] = STATE(2199), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym__simple_statements] = STATE(675), + [sym_import_statement] = STATE(2146), + [sym_future_import_statement] = STATE(2146), + [sym_import_from_statement] = STATE(2146), + [sym_print_statement] = STATE(2146), + [sym_assert_statement] = STATE(2146), + [sym_expression_statement] = STATE(2146), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2146), + [sym_delete_statement] = STATE(2146), + [sym_raise_statement] = STATE(2146), + [sym_pass_statement] = STATE(2146), + [sym_break_statement] = STATE(2146), + [sym_continue_statement] = STATE(2146), + [sym_global_statement] = STATE(2146), + [sym_nonlocal_statement] = STATE(2146), + [sym_exec_statement] = STATE(2146), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24082,8 +23898,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24104,62 +23920,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(507), - [sym__indent] = ACTIONS(509), + [sym__newline] = ACTIONS(539), + [sym__indent] = ACTIONS(541), [sym_string_start] = ACTIONS(79), }, [115] = { - [sym__simple_statements] = STATE(900), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [sym_global_statement] = STATE(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym__simple_statements] = STATE(688), + [sym_import_statement] = STATE(2203), + [sym_future_import_statement] = STATE(2203), + [sym_import_from_statement] = STATE(2203), + [sym_print_statement] = STATE(2203), + [sym_assert_statement] = STATE(2203), + [sym_expression_statement] = STATE(2203), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2203), + [sym_delete_statement] = STATE(2203), + [sym_raise_statement] = STATE(2203), + [sym_pass_statement] = STATE(2203), + [sym_break_statement] = STATE(2203), + [sym_continue_statement] = STATE(2203), + [sym_global_statement] = STATE(2203), + [sym_nonlocal_statement] = STATE(2203), + [sym_exec_statement] = STATE(2203), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24173,8 +23989,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24195,62 +24011,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(511), - [sym__indent] = ACTIONS(513), + [sym__newline] = ACTIONS(543), + [sym__indent] = ACTIONS(545), [sym_string_start] = ACTIONS(79), }, [116] = { - [sym__simple_statements] = STATE(892), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [sym_global_statement] = STATE(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym_import_statement] = STATE(2295), + [sym_future_import_statement] = STATE(2295), + [sym_import_from_statement] = STATE(2295), + [sym_print_statement] = STATE(2295), + [sym_assert_statement] = STATE(2295), + [sym_expression_statement] = STATE(2295), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2295), + [sym_delete_statement] = STATE(2295), + [sym_raise_statement] = STATE(2295), + [sym_pass_statement] = STATE(2295), + [sym_break_statement] = STATE(2295), + [sym_continue_statement] = STATE(2295), + [sym_global_statement] = STATE(2295), + [sym_nonlocal_statement] = STATE(2295), + [sym_exec_statement] = STATE(2295), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24264,8 +24079,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24286,62 +24101,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(515), - [sym__indent] = ACTIONS(517), + [sym__newline] = ACTIONS(547), [sym_string_start] = ACTIONS(79), }, [117] = { - [sym__simple_statements] = STATE(735), - [sym_import_statement] = STATE(2080), - [sym_future_import_statement] = STATE(2080), - [sym_import_from_statement] = STATE(2080), - [sym_print_statement] = STATE(2080), - [sym_assert_statement] = STATE(2080), - [sym_expression_statement] = STATE(2080), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2080), - [sym_delete_statement] = STATE(2080), - [sym_raise_statement] = STATE(2080), - [sym_pass_statement] = STATE(2080), - [sym_break_statement] = STATE(2080), - [sym_continue_statement] = STATE(2080), - [sym_global_statement] = STATE(2080), - [sym_nonlocal_statement] = STATE(2080), - [sym_exec_statement] = STATE(2080), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym_import_statement] = STATE(2295), + [sym_future_import_statement] = STATE(2295), + [sym_import_from_statement] = STATE(2295), + [sym_print_statement] = STATE(2295), + [sym_assert_statement] = STATE(2295), + [sym_expression_statement] = STATE(2295), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2295), + [sym_delete_statement] = STATE(2295), + [sym_raise_statement] = STATE(2295), + [sym_pass_statement] = STATE(2295), + [sym_break_statement] = STATE(2295), + [sym_continue_statement] = STATE(2295), + [sym_global_statement] = STATE(2295), + [sym_nonlocal_statement] = STATE(2295), + [sym_exec_statement] = STATE(2295), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24355,8 +24168,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24377,62 +24190,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(519), - [sym__indent] = ACTIONS(521), + [sym__newline] = ACTIONS(549), [sym_string_start] = ACTIONS(79), }, [118] = { - [sym__simple_statements] = STATE(742), - [sym_import_statement] = STATE(2140), - [sym_future_import_statement] = STATE(2140), - [sym_import_from_statement] = STATE(2140), - [sym_print_statement] = STATE(2140), - [sym_assert_statement] = STATE(2140), - [sym_expression_statement] = STATE(2140), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2140), - [sym_delete_statement] = STATE(2140), - [sym_raise_statement] = STATE(2140), - [sym_pass_statement] = STATE(2140), - [sym_break_statement] = STATE(2140), - [sym_continue_statement] = STATE(2140), - [sym_global_statement] = STATE(2140), - [sym_nonlocal_statement] = STATE(2140), - [sym_exec_statement] = STATE(2140), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym_import_statement] = STATE(2295), + [sym_future_import_statement] = STATE(2295), + [sym_import_from_statement] = STATE(2295), + [sym_print_statement] = STATE(2295), + [sym_assert_statement] = STATE(2295), + [sym_expression_statement] = STATE(2295), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2295), + [sym_delete_statement] = STATE(2295), + [sym_raise_statement] = STATE(2295), + [sym_pass_statement] = STATE(2295), + [sym_break_statement] = STATE(2295), + [sym_continue_statement] = STATE(2295), + [sym_global_statement] = STATE(2295), + [sym_nonlocal_statement] = STATE(2295), + [sym_exec_statement] = STATE(2295), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24446,8 +24257,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24468,62 +24279,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(523), - [sym__indent] = ACTIONS(525), + [sym__newline] = ACTIONS(551), [sym_string_start] = ACTIONS(79), }, [119] = { - [sym__simple_statements] = STATE(781), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [sym_global_statement] = STATE(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym_import_statement] = STATE(2295), + [sym_future_import_statement] = STATE(2295), + [sym_import_from_statement] = STATE(2295), + [sym_print_statement] = STATE(2295), + [sym_assert_statement] = STATE(2295), + [sym_expression_statement] = STATE(2295), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2295), + [sym_delete_statement] = STATE(2295), + [sym_raise_statement] = STATE(2295), + [sym_pass_statement] = STATE(2295), + [sym_break_statement] = STATE(2295), + [sym_continue_statement] = STATE(2295), + [sym_global_statement] = STATE(2295), + [sym_nonlocal_statement] = STATE(2295), + [sym_exec_statement] = STATE(2295), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24537,8 +24346,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24559,62 +24368,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(527), - [sym__indent] = ACTIONS(529), + [sym__newline] = ACTIONS(553), [sym_string_start] = ACTIONS(79), }, [120] = { - [sym__simple_statements] = STATE(904), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [sym_global_statement] = STATE(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym_import_statement] = STATE(2295), + [sym_future_import_statement] = STATE(2295), + [sym_import_from_statement] = STATE(2295), + [sym_print_statement] = STATE(2295), + [sym_assert_statement] = STATE(2295), + [sym_expression_statement] = STATE(2295), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2295), + [sym_delete_statement] = STATE(2295), + [sym_raise_statement] = STATE(2295), + [sym_pass_statement] = STATE(2295), + [sym_break_statement] = STATE(2295), + [sym_continue_statement] = STATE(2295), + [sym_global_statement] = STATE(2295), + [sym_nonlocal_statement] = STATE(2295), + [sym_exec_statement] = STATE(2295), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24628,8 +24435,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24650,62 +24457,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(531), - [sym__indent] = ACTIONS(533), + [sym__newline] = ACTIONS(555), [sym_string_start] = ACTIONS(79), }, [121] = { - [sym__simple_statements] = STATE(887), - [sym_import_statement] = STATE(2084), - [sym_future_import_statement] = STATE(2084), - [sym_import_from_statement] = STATE(2084), - [sym_print_statement] = STATE(2084), - [sym_assert_statement] = STATE(2084), - [sym_expression_statement] = STATE(2084), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2084), - [sym_delete_statement] = STATE(2084), - [sym_raise_statement] = STATE(2084), - [sym_pass_statement] = STATE(2084), - [sym_break_statement] = STATE(2084), - [sym_continue_statement] = STATE(2084), - [sym_global_statement] = STATE(2084), - [sym_nonlocal_statement] = STATE(2084), - [sym_exec_statement] = STATE(2084), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym_import_statement] = STATE(2295), + [sym_future_import_statement] = STATE(2295), + [sym_import_from_statement] = STATE(2295), + [sym_print_statement] = STATE(2295), + [sym_assert_statement] = STATE(2295), + [sym_expression_statement] = STATE(2295), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2295), + [sym_delete_statement] = STATE(2295), + [sym_raise_statement] = STATE(2295), + [sym_pass_statement] = STATE(2295), + [sym_break_statement] = STATE(2295), + [sym_continue_statement] = STATE(2295), + [sym_global_statement] = STATE(2295), + [sym_nonlocal_statement] = STATE(2295), + [sym_exec_statement] = STATE(2295), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24719,8 +24524,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24741,62 +24546,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(535), - [sym__indent] = ACTIONS(537), + [sym__newline] = ACTIONS(557), [sym_string_start] = ACTIONS(79), }, [122] = { - [sym__simple_statements] = STATE(782), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [sym_global_statement] = STATE(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym_import_statement] = STATE(2295), + [sym_future_import_statement] = STATE(2295), + [sym_import_from_statement] = STATE(2295), + [sym_print_statement] = STATE(2295), + [sym_assert_statement] = STATE(2295), + [sym_expression_statement] = STATE(2295), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2295), + [sym_delete_statement] = STATE(2295), + [sym_raise_statement] = STATE(2295), + [sym_pass_statement] = STATE(2295), + [sym_break_statement] = STATE(2295), + [sym_continue_statement] = STATE(2295), + [sym_global_statement] = STATE(2295), + [sym_nonlocal_statement] = STATE(2295), + [sym_exec_statement] = STATE(2295), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24810,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24832,62 +24635,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(539), - [sym__indent] = ACTIONS(541), + [sym__newline] = ACTIONS(559), [sym_string_start] = ACTIONS(79), }, [123] = { - [sym__simple_statements] = STATE(871), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [sym_global_statement] = STATE(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym_import_statement] = STATE(2295), + [sym_future_import_statement] = STATE(2295), + [sym_import_from_statement] = STATE(2295), + [sym_print_statement] = STATE(2295), + [sym_assert_statement] = STATE(2295), + [sym_expression_statement] = STATE(2295), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2295), + [sym_delete_statement] = STATE(2295), + [sym_raise_statement] = STATE(2295), + [sym_pass_statement] = STATE(2295), + [sym_break_statement] = STATE(2295), + [sym_continue_statement] = STATE(2295), + [sym_global_statement] = STATE(2295), + [sym_nonlocal_statement] = STATE(2295), + [sym_exec_statement] = STATE(2295), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24901,8 +24702,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24923,62 +24724,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(543), - [sym__indent] = ACTIONS(545), + [sym__newline] = ACTIONS(561), [sym_string_start] = ACTIONS(79), }, [124] = { - [sym__simple_statements] = STATE(766), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [sym_global_statement] = STATE(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym_import_statement] = STATE(2295), + [sym_future_import_statement] = STATE(2295), + [sym_import_from_statement] = STATE(2295), + [sym_print_statement] = STATE(2295), + [sym_assert_statement] = STATE(2295), + [sym_expression_statement] = STATE(2295), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2295), + [sym_delete_statement] = STATE(2295), + [sym_raise_statement] = STATE(2295), + [sym_pass_statement] = STATE(2295), + [sym_break_statement] = STATE(2295), + [sym_continue_statement] = STATE(2295), + [sym_global_statement] = STATE(2295), + [sym_nonlocal_statement] = STATE(2295), + [sym_exec_statement] = STATE(2295), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24992,8 +24791,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25014,62 +24813,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(547), - [sym__indent] = ACTIONS(549), + [sym__newline] = ACTIONS(563), [sym_string_start] = ACTIONS(79), }, [125] = { - [sym__simple_statements] = STATE(773), - [sym_import_statement] = STATE(2084), - [sym_future_import_statement] = STATE(2084), - [sym_import_from_statement] = STATE(2084), - [sym_print_statement] = STATE(2084), - [sym_assert_statement] = STATE(2084), - [sym_expression_statement] = STATE(2084), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2084), - [sym_delete_statement] = STATE(2084), - [sym_raise_statement] = STATE(2084), - [sym_pass_statement] = STATE(2084), - [sym_break_statement] = STATE(2084), - [sym_continue_statement] = STATE(2084), - [sym_global_statement] = STATE(2084), - [sym_nonlocal_statement] = STATE(2084), - [sym_exec_statement] = STATE(2084), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym_import_statement] = STATE(2295), + [sym_future_import_statement] = STATE(2295), + [sym_import_from_statement] = STATE(2295), + [sym_print_statement] = STATE(2295), + [sym_assert_statement] = STATE(2295), + [sym_expression_statement] = STATE(2295), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2295), + [sym_delete_statement] = STATE(2295), + [sym_raise_statement] = STATE(2295), + [sym_pass_statement] = STATE(2295), + [sym_break_statement] = STATE(2295), + [sym_continue_statement] = STATE(2295), + [sym_global_statement] = STATE(2295), + [sym_nonlocal_statement] = STATE(2295), + [sym_exec_statement] = STATE(2295), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25083,8 +24880,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25105,62 +24902,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(551), - [sym__indent] = ACTIONS(553), + [sym__newline] = ACTIONS(565), [sym_string_start] = ACTIONS(79), }, [126] = { - [sym__simple_statements] = STATE(794), - [sym_import_statement] = STATE(2084), - [sym_future_import_statement] = STATE(2084), - [sym_import_from_statement] = STATE(2084), - [sym_print_statement] = STATE(2084), - [sym_assert_statement] = STATE(2084), - [sym_expression_statement] = STATE(2084), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2084), - [sym_delete_statement] = STATE(2084), - [sym_raise_statement] = STATE(2084), - [sym_pass_statement] = STATE(2084), - [sym_break_statement] = STATE(2084), - [sym_continue_statement] = STATE(2084), - [sym_global_statement] = STATE(2084), - [sym_nonlocal_statement] = STATE(2084), - [sym_exec_statement] = STATE(2084), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym_import_statement] = STATE(2295), + [sym_future_import_statement] = STATE(2295), + [sym_import_from_statement] = STATE(2295), + [sym_print_statement] = STATE(2295), + [sym_assert_statement] = STATE(2295), + [sym_expression_statement] = STATE(2295), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2295), + [sym_delete_statement] = STATE(2295), + [sym_raise_statement] = STATE(2295), + [sym_pass_statement] = STATE(2295), + [sym_break_statement] = STATE(2295), + [sym_continue_statement] = STATE(2295), + [sym_global_statement] = STATE(2295), + [sym_nonlocal_statement] = STATE(2295), + [sym_exec_statement] = STATE(2295), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25174,8 +24969,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25196,62 +24991,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(555), - [sym__indent] = ACTIONS(557), + [sym__newline] = ACTIONS(567), [sym_string_start] = ACTIONS(79), }, [127] = { - [sym__simple_statements] = STATE(845), - [sym_import_statement] = STATE(2084), - [sym_future_import_statement] = STATE(2084), - [sym_import_from_statement] = STATE(2084), - [sym_print_statement] = STATE(2084), - [sym_assert_statement] = STATE(2084), - [sym_expression_statement] = STATE(2084), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2084), - [sym_delete_statement] = STATE(2084), - [sym_raise_statement] = STATE(2084), - [sym_pass_statement] = STATE(2084), - [sym_break_statement] = STATE(2084), - [sym_continue_statement] = STATE(2084), - [sym_global_statement] = STATE(2084), - [sym_nonlocal_statement] = STATE(2084), - [sym_exec_statement] = STATE(2084), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym_import_statement] = STATE(2295), + [sym_future_import_statement] = STATE(2295), + [sym_import_from_statement] = STATE(2295), + [sym_print_statement] = STATE(2295), + [sym_assert_statement] = STATE(2295), + [sym_expression_statement] = STATE(2295), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2295), + [sym_delete_statement] = STATE(2295), + [sym_raise_statement] = STATE(2295), + [sym_pass_statement] = STATE(2295), + [sym_break_statement] = STATE(2295), + [sym_continue_statement] = STATE(2295), + [sym_global_statement] = STATE(2295), + [sym_nonlocal_statement] = STATE(2295), + [sym_exec_statement] = STATE(2295), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25265,8 +25058,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25287,62 +25080,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(559), - [sym__indent] = ACTIONS(561), + [sym__newline] = ACTIONS(569), [sym_string_start] = ACTIONS(79), }, [128] = { - [sym__simple_statements] = STATE(749), - [sym_import_statement] = STATE(2084), - [sym_future_import_statement] = STATE(2084), - [sym_import_from_statement] = STATE(2084), - [sym_print_statement] = STATE(2084), - [sym_assert_statement] = STATE(2084), - [sym_expression_statement] = STATE(2084), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2084), - [sym_delete_statement] = STATE(2084), - [sym_raise_statement] = STATE(2084), - [sym_pass_statement] = STATE(2084), - [sym_break_statement] = STATE(2084), - [sym_continue_statement] = STATE(2084), - [sym_global_statement] = STATE(2084), - [sym_nonlocal_statement] = STATE(2084), - [sym_exec_statement] = STATE(2084), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym_import_statement] = STATE(2295), + [sym_future_import_statement] = STATE(2295), + [sym_import_from_statement] = STATE(2295), + [sym_print_statement] = STATE(2295), + [sym_assert_statement] = STATE(2295), + [sym_expression_statement] = STATE(2295), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2295), + [sym_delete_statement] = STATE(2295), + [sym_raise_statement] = STATE(2295), + [sym_pass_statement] = STATE(2295), + [sym_break_statement] = STATE(2295), + [sym_continue_statement] = STATE(2295), + [sym_global_statement] = STATE(2295), + [sym_nonlocal_statement] = STATE(2295), + [sym_exec_statement] = STATE(2295), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25356,8 +25147,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25378,62 +25169,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(563), - [sym__indent] = ACTIONS(565), + [sym__newline] = ACTIONS(571), [sym_string_start] = ACTIONS(79), }, [129] = { - [sym__simple_statements] = STATE(870), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [sym_global_statement] = STATE(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym_import_statement] = STATE(2295), + [sym_future_import_statement] = STATE(2295), + [sym_import_from_statement] = STATE(2295), + [sym_print_statement] = STATE(2295), + [sym_assert_statement] = STATE(2295), + [sym_expression_statement] = STATE(2295), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2295), + [sym_delete_statement] = STATE(2295), + [sym_raise_statement] = STATE(2295), + [sym_pass_statement] = STATE(2295), + [sym_break_statement] = STATE(2295), + [sym_continue_statement] = STATE(2295), + [sym_global_statement] = STATE(2295), + [sym_nonlocal_statement] = STATE(2295), + [sym_exec_statement] = STATE(2295), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25447,8 +25236,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25469,62 +25258,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(567), - [sym__indent] = ACTIONS(569), + [sym__newline] = ACTIONS(573), [sym_string_start] = ACTIONS(79), }, [130] = { - [sym__simple_statements] = STATE(764), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [sym_global_statement] = STATE(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym_import_statement] = STATE(2295), + [sym_future_import_statement] = STATE(2295), + [sym_import_from_statement] = STATE(2295), + [sym_print_statement] = STATE(2295), + [sym_assert_statement] = STATE(2295), + [sym_expression_statement] = STATE(2295), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2295), + [sym_delete_statement] = STATE(2295), + [sym_raise_statement] = STATE(2295), + [sym_pass_statement] = STATE(2295), + [sym_break_statement] = STATE(2295), + [sym_continue_statement] = STATE(2295), + [sym_global_statement] = STATE(2295), + [sym_nonlocal_statement] = STATE(2295), + [sym_exec_statement] = STATE(2295), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25538,8 +25325,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25560,61 +25347,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(571), - [sym__indent] = ACTIONS(573), + [sym__newline] = ACTIONS(575), [sym_string_start] = ACTIONS(79), }, [131] = { - [sym_import_statement] = STATE(2328), - [sym_future_import_statement] = STATE(2328), - [sym_import_from_statement] = STATE(2328), - [sym_print_statement] = STATE(2328), - [sym_assert_statement] = STATE(2328), - [sym_expression_statement] = STATE(2328), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2328), - [sym_delete_statement] = STATE(2328), - [sym_raise_statement] = STATE(2328), - [sym_pass_statement] = STATE(2328), - [sym_break_statement] = STATE(2328), - [sym_continue_statement] = STATE(2328), - [sym_global_statement] = STATE(2328), - [sym_nonlocal_statement] = STATE(2328), - [sym_exec_statement] = STATE(2328), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym_import_statement] = STATE(2295), + [sym_future_import_statement] = STATE(2295), + [sym_import_from_statement] = STATE(2295), + [sym_print_statement] = STATE(2295), + [sym_assert_statement] = STATE(2295), + [sym_expression_statement] = STATE(2295), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2295), + [sym_delete_statement] = STATE(2295), + [sym_raise_statement] = STATE(2295), + [sym_pass_statement] = STATE(2295), + [sym_break_statement] = STATE(2295), + [sym_continue_statement] = STATE(2295), + [sym_global_statement] = STATE(2295), + [sym_nonlocal_statement] = STATE(2295), + [sym_exec_statement] = STATE(2295), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25628,8 +25414,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25650,60 +25436,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(575), + [sym__newline] = ACTIONS(577), [sym_string_start] = ACTIONS(79), }, [132] = { - [sym_import_statement] = STATE(2328), - [sym_future_import_statement] = STATE(2328), - [sym_import_from_statement] = STATE(2328), - [sym_print_statement] = STATE(2328), - [sym_assert_statement] = STATE(2328), - [sym_expression_statement] = STATE(2328), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2328), - [sym_delete_statement] = STATE(2328), - [sym_raise_statement] = STATE(2328), - [sym_pass_statement] = STATE(2328), - [sym_break_statement] = STATE(2328), - [sym_continue_statement] = STATE(2328), - [sym_global_statement] = STATE(2328), - [sym_nonlocal_statement] = STATE(2328), - [sym_exec_statement] = STATE(2328), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), + [sym_import_statement] = STATE(2295), + [sym_future_import_statement] = STATE(2295), + [sym_import_from_statement] = STATE(2295), + [sym_print_statement] = STATE(2295), + [sym_assert_statement] = STATE(2295), + [sym_expression_statement] = STATE(2295), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2495), + [sym_return_statement] = STATE(2295), + [sym_delete_statement] = STATE(2295), + [sym_raise_statement] = STATE(2295), + [sym_pass_statement] = STATE(2295), + [sym_break_statement] = STATE(2295), + [sym_continue_statement] = STATE(2295), + [sym_global_statement] = STATE(2295), + [sym_nonlocal_statement] = STATE(2295), + [sym_exec_statement] = STATE(2295), + [sym_pattern] = STATE(1653), + [sym_tuple_pattern] = STATE(1642), + [sym_list_pattern] = STATE(1642), + [sym_list_splat_pattern] = STATE(658), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1048), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_assignment] = STATE(2236), + [sym_augmented_assignment] = STATE(2236), + [sym_pattern_list] = STATE(1658), + [sym_yield] = STATE(2236), + [sym_attribute] = STATE(660), + [sym_subscript] = STATE(660), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25717,8 +25503,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(349), - [anon_sym_async] = ACTIONS(349), + [anon_sym_match] = ACTIONS(353), + [anon_sym_async] = ACTIONS(353), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25739,4396 +25525,3239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(577), [sym_string_start] = ACTIONS(79), }, [133] = { - [sym_import_statement] = STATE(2328), - [sym_future_import_statement] = STATE(2328), - [sym_import_from_statement] = STATE(2328), - [sym_print_statement] = STATE(2328), - [sym_assert_statement] = STATE(2328), - [sym_expression_statement] = STATE(2328), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2328), - [sym_delete_statement] = STATE(2328), - [sym_raise_statement] = STATE(2328), - [sym_pass_statement] = STATE(2328), - [sym_break_statement] = STATE(2328), - [sym_continue_statement] = STATE(2328), - [sym_global_statement] = STATE(2328), - [sym_nonlocal_statement] = STATE(2328), - [sym_exec_statement] = STATE(2328), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [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(349), - [anon_sym_async] = ACTIONS(349), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(67), - [anon_sym_yield] = ACTIONS(69), - [sym_ellipsis] = ACTIONS(71), - [anon_sym_LBRACE] = ACTIONS(73), - [sym_integer] = ACTIONS(75), - [sym_float] = ACTIONS(71), - [anon_sym_await] = ACTIONS(77), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_none] = ACTIONS(75), + [sym_named_expression] = STATE(1195), + [sym__named_expression_lhs] = STATE(2375), + [sym_list_splat_pattern] = STATE(1164), + [sym_as_pattern] = STATE(1195), + [sym_expression] = STATE(1247), + [sym_primary_expression] = STATE(971), + [sym_not_operator] = STATE(1195), + [sym_boolean_operator] = STATE(1195), + [sym_binary_operator] = STATE(1196), + [sym_unary_operator] = STATE(1196), + [sym_comparison_operator] = STATE(1195), + [sym_lambda] = STATE(1195), + [sym_attribute] = STATE(1196), + [sym_subscript] = STATE(1196), + [sym_call] = STATE(1196), + [sym_list] = STATE(1196), + [sym_set] = STATE(1196), + [sym_tuple] = STATE(1196), + [sym_dictionary] = STATE(1196), + [sym_list_comprehension] = STATE(1196), + [sym_dictionary_comprehension] = STATE(1196), + [sym_set_comprehension] = STATE(1196), + [sym_generator_expression] = STATE(1196), + [sym_parenthesized_expression] = STATE(1196), + [sym_conditional_expression] = STATE(1195), + [sym_concatenated_string] = STATE(1196), + [sym_string] = STATE(984), + [sym_await] = STATE(1196), + [sym_identifier] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_as] = ACTIONS(274), + [anon_sym_STAR] = ACTIONS(583), + [anon_sym_print] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_COLON_EQ] = ACTIONS(289), + [anon_sym_if] = ACTIONS(274), + [anon_sym_COLON] = ACTIONS(274), + [anon_sym_match] = ACTIONS(585), + [anon_sym_async] = ACTIONS(585), + [anon_sym_in] = ACTIONS(274), + [anon_sym_STAR_STAR] = ACTIONS(272), + [anon_sym_exec] = ACTIONS(585), + [anon_sym_AT] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(274), + [anon_sym_not] = ACTIONS(589), + [anon_sym_and] = ACTIONS(274), + [anon_sym_or] = ACTIONS(274), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_SLASH_SLASH] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(272), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_LT_EQ] = ACTIONS(272), + [anon_sym_EQ_EQ] = ACTIONS(272), + [anon_sym_BANG_EQ] = ACTIONS(272), + [anon_sym_GT_EQ] = ACTIONS(272), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_LT_GT] = ACTIONS(272), + [anon_sym_is] = ACTIONS(274), + [anon_sym_lambda] = ACTIONS(593), + [sym_ellipsis] = ACTIONS(595), + [anon_sym_LBRACE] = ACTIONS(597), + [anon_sym_RBRACE] = ACTIONS(272), + [sym_type_conversion] = ACTIONS(272), + [sym_integer] = ACTIONS(599), + [sym_float] = ACTIONS(595), + [anon_sym_await] = ACTIONS(601), + [sym_true] = ACTIONS(599), + [sym_false] = ACTIONS(599), + [sym_none] = ACTIONS(599), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(579), - [sym_string_start] = ACTIONS(79), + [sym_string_start] = ACTIONS(603), }, [134] = { - [sym_import_statement] = STATE(2328), - [sym_future_import_statement] = STATE(2328), - [sym_import_from_statement] = STATE(2328), - [sym_print_statement] = STATE(2328), - [sym_assert_statement] = STATE(2328), - [sym_expression_statement] = STATE(2328), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2328), - [sym_delete_statement] = STATE(2328), - [sym_raise_statement] = STATE(2328), - [sym_pass_statement] = STATE(2328), - [sym_break_statement] = STATE(2328), - [sym_continue_statement] = STATE(2328), - [sym_global_statement] = STATE(2328), - [sym_nonlocal_statement] = STATE(2328), - [sym_exec_statement] = STATE(2328), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [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(349), - [anon_sym_async] = ACTIONS(349), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(63), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2390), + [sym_list_splat_pattern] = STATE(1295), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1174), + [sym_primary_expression] = STATE(974), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_attribute] = STATE(1272), + [sym_subscript] = STATE(1272), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [sym_identifier] = ACTIONS(270), + [anon_sym_SEMI] = ACTIONS(272), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_from] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(334), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_as] = ACTIONS(274), + [anon_sym_STAR] = ACTIONS(336), + [anon_sym_print] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_COLON_EQ] = ACTIONS(289), + [anon_sym_if] = ACTIONS(274), + [anon_sym_match] = ACTIONS(285), + [anon_sym_async] = ACTIONS(285), + [anon_sym_in] = ACTIONS(274), + [anon_sym_STAR_STAR] = ACTIONS(272), + [anon_sym_exec] = ACTIONS(285), + [anon_sym_AT] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_EQ] = ACTIONS(274), + [anon_sym_not] = ACTIONS(340), + [anon_sym_and] = ACTIONS(274), + [anon_sym_or] = ACTIONS(274), [anon_sym_PLUS] = ACTIONS(65), [anon_sym_DASH] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_SLASH_SLASH] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(272), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(67), - [anon_sym_yield] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_LT_EQ] = ACTIONS(272), + [anon_sym_EQ_EQ] = ACTIONS(272), + [anon_sym_BANG_EQ] = ACTIONS(272), + [anon_sym_GT_EQ] = ACTIONS(272), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_LT_GT] = ACTIONS(272), + [anon_sym_is] = ACTIONS(274), + [anon_sym_lambda] = ACTIONS(344), [sym_ellipsis] = ACTIONS(71), [anon_sym_LBRACE] = ACTIONS(73), [sym_integer] = ACTIONS(75), [sym_float] = ACTIONS(71), - [anon_sym_await] = ACTIONS(77), + [anon_sym_await] = ACTIONS(304), [sym_true] = ACTIONS(75), [sym_false] = ACTIONS(75), [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(581), + [sym__newline] = ACTIONS(272), [sym_string_start] = ACTIONS(79), }, [135] = { - [sym_import_statement] = STATE(2328), - [sym_future_import_statement] = STATE(2328), - [sym_import_from_statement] = STATE(2328), - [sym_print_statement] = STATE(2328), - [sym_assert_statement] = STATE(2328), - [sym_expression_statement] = STATE(2328), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2328), - [sym_delete_statement] = STATE(2328), - [sym_raise_statement] = STATE(2328), - [sym_pass_statement] = STATE(2328), - [sym_break_statement] = STATE(2328), - [sym_continue_statement] = STATE(2328), - [sym_global_statement] = STATE(2328), - [sym_nonlocal_statement] = STATE(2328), - [sym_exec_statement] = STATE(2328), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [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(349), - [anon_sym_async] = ACTIONS(349), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(67), - [anon_sym_yield] = ACTIONS(69), - [sym_ellipsis] = ACTIONS(71), - [anon_sym_LBRACE] = ACTIONS(73), - [sym_integer] = ACTIONS(75), - [sym_float] = ACTIONS(71), - [anon_sym_await] = ACTIONS(77), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_none] = ACTIONS(75), + [sym_named_expression] = STATE(1427), + [sym__named_expression_lhs] = STATE(2513), + [sym_list_splat_pattern] = STATE(1406), + [sym_as_pattern] = STATE(1427), + [sym_expression] = STATE(1575), + [sym_primary_expression] = STATE(994), + [sym_not_operator] = STATE(1427), + [sym_boolean_operator] = STATE(1427), + [sym_binary_operator] = STATE(1426), + [sym_unary_operator] = STATE(1426), + [sym_comparison_operator] = STATE(1427), + [sym_lambda] = STATE(1427), + [sym_attribute] = STATE(1426), + [sym_subscript] = STATE(1426), + [sym_call] = STATE(1426), + [sym_list] = STATE(1426), + [sym_set] = STATE(1426), + [sym_tuple] = STATE(1426), + [sym_dictionary] = STATE(1426), + [sym_list_comprehension] = STATE(1426), + [sym_dictionary_comprehension] = STATE(1426), + [sym_set_comprehension] = STATE(1426), + [sym_generator_expression] = STATE(1426), + [sym_parenthesized_expression] = STATE(1426), + [sym_conditional_expression] = STATE(1427), + [sym_concatenated_string] = STATE(1426), + [sym_string] = STATE(996), + [sym_await] = STATE(1426), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(348), + [anon_sym_LPAREN] = ACTIONS(308), + [anon_sym_COMMA] = ACTIONS(346), + [anon_sym_as] = ACTIONS(351), + [anon_sym_STAR] = ACTIONS(310), + [anon_sym_print] = ACTIONS(312), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_if] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(346), + [anon_sym_match] = ACTIONS(312), + [anon_sym_async] = ACTIONS(312), + [anon_sym_for] = ACTIONS(351), + [anon_sym_in] = ACTIONS(351), + [anon_sym_STAR_STAR] = ACTIONS(605), + [anon_sym_exec] = ACTIONS(312), + [anon_sym_AT] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_not] = ACTIONS(316), + [anon_sym_and] = ACTIONS(351), + [anon_sym_or] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(320), + [anon_sym_SLASH] = ACTIONS(348), + [anon_sym_PERCENT] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(605), + [anon_sym_PIPE] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_LT_LT] = ACTIONS(605), + [anon_sym_TILDE] = ACTIONS(320), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(346), + [anon_sym_EQ_EQ] = ACTIONS(346), + [anon_sym_BANG_EQ] = ACTIONS(346), + [anon_sym_GT_EQ] = ACTIONS(346), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_LT_GT] = ACTIONS(346), + [anon_sym_is] = ACTIONS(351), + [anon_sym_lambda] = ACTIONS(322), + [sym_ellipsis] = ACTIONS(324), + [anon_sym_LBRACE] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(346), + [sym_type_conversion] = ACTIONS(346), + [sym_integer] = ACTIONS(328), + [sym_float] = ACTIONS(324), + [anon_sym_await] = ACTIONS(330), + [sym_true] = ACTIONS(328), + [sym_false] = ACTIONS(328), + [sym_none] = ACTIONS(328), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(583), - [sym_string_start] = ACTIONS(79), + [sym_string_start] = ACTIONS(332), }, [136] = { - [sym_import_statement] = STATE(2328), - [sym_future_import_statement] = STATE(2328), - [sym_import_from_statement] = STATE(2328), - [sym_print_statement] = STATE(2328), - [sym_assert_statement] = STATE(2328), - [sym_expression_statement] = STATE(2328), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2328), - [sym_delete_statement] = STATE(2328), - [sym_raise_statement] = STATE(2328), - [sym_pass_statement] = STATE(2328), - [sym_break_statement] = STATE(2328), - [sym_continue_statement] = STATE(2328), - [sym_global_statement] = STATE(2328), - [sym_nonlocal_statement] = STATE(2328), - [sym_exec_statement] = STATE(2328), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [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(349), - [anon_sym_async] = ACTIONS(349), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(67), - [anon_sym_yield] = ACTIONS(69), - [sym_ellipsis] = ACTIONS(71), - [anon_sym_LBRACE] = ACTIONS(73), - [sym_integer] = ACTIONS(75), - [sym_float] = ACTIONS(71), - [anon_sym_await] = ACTIONS(77), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_none] = ACTIONS(75), + [sym_named_expression] = STATE(1195), + [sym__named_expression_lhs] = STATE(2375), + [sym_list_splat_pattern] = STATE(1164), + [sym_as_pattern] = STATE(1195), + [sym_expression] = STATE(1247), + [sym_primary_expression] = STATE(971), + [sym_not_operator] = STATE(1195), + [sym_boolean_operator] = STATE(1195), + [sym_binary_operator] = STATE(1196), + [sym_unary_operator] = STATE(1196), + [sym_comparison_operator] = STATE(1195), + [sym_lambda] = STATE(1195), + [sym_attribute] = STATE(1196), + [sym_subscript] = STATE(1196), + [sym_call] = STATE(1196), + [sym_list] = STATE(1196), + [sym_set] = STATE(1196), + [sym_tuple] = STATE(1196), + [sym_dictionary] = STATE(1196), + [sym_list_comprehension] = STATE(1196), + [sym_dictionary_comprehension] = STATE(1196), + [sym_set_comprehension] = STATE(1196), + [sym_generator_expression] = STATE(1196), + [sym_parenthesized_expression] = STATE(1196), + [sym_conditional_expression] = STATE(1195), + [sym_concatenated_string] = STATE(1196), + [sym_string] = STATE(984), + [sym_await] = STATE(1196), + [sym_identifier] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(279), + [anon_sym_as] = ACTIONS(274), + [anon_sym_STAR] = ACTIONS(583), + [anon_sym_print] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_COLON_EQ] = ACTIONS(289), + [anon_sym_if] = ACTIONS(274), + [anon_sym_COLON] = ACTIONS(274), + [anon_sym_match] = ACTIONS(585), + [anon_sym_async] = ACTIONS(585), + [anon_sym_in] = ACTIONS(274), + [anon_sym_STAR_STAR] = ACTIONS(272), + [anon_sym_exec] = ACTIONS(585), + [anon_sym_AT] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(274), + [anon_sym_not] = ACTIONS(589), + [anon_sym_and] = ACTIONS(274), + [anon_sym_or] = ACTIONS(274), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_SLASH_SLASH] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(272), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_LT_EQ] = ACTIONS(272), + [anon_sym_EQ_EQ] = ACTIONS(272), + [anon_sym_BANG_EQ] = ACTIONS(272), + [anon_sym_GT_EQ] = ACTIONS(272), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_LT_GT] = ACTIONS(272), + [anon_sym_is] = ACTIONS(274), + [anon_sym_lambda] = ACTIONS(593), + [sym_ellipsis] = ACTIONS(595), + [anon_sym_LBRACE] = ACTIONS(597), + [anon_sym_RBRACE] = ACTIONS(272), + [sym_type_conversion] = ACTIONS(272), + [sym_integer] = ACTIONS(599), + [sym_float] = ACTIONS(595), + [anon_sym_await] = ACTIONS(601), + [sym_true] = ACTIONS(599), + [sym_false] = ACTIONS(599), + [sym_none] = ACTIONS(599), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(585), - [sym_string_start] = ACTIONS(79), + [sym_string_start] = ACTIONS(603), }, [137] = { - [sym_import_statement] = STATE(2328), - [sym_future_import_statement] = STATE(2328), - [sym_import_from_statement] = STATE(2328), - [sym_print_statement] = STATE(2328), - [sym_assert_statement] = STATE(2328), - [sym_expression_statement] = STATE(2328), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2328), - [sym_delete_statement] = STATE(2328), - [sym_raise_statement] = STATE(2328), - [sym_pass_statement] = STATE(2328), - [sym_break_statement] = STATE(2328), - [sym_continue_statement] = STATE(2328), - [sym_global_statement] = STATE(2328), - [sym_nonlocal_statement] = STATE(2328), - [sym_exec_statement] = STATE(2328), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [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(349), - [anon_sym_async] = ACTIONS(349), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(67), - [anon_sym_yield] = ACTIONS(69), - [sym_ellipsis] = ACTIONS(71), - [anon_sym_LBRACE] = ACTIONS(73), - [sym_integer] = ACTIONS(75), - [sym_float] = ACTIONS(71), - [anon_sym_await] = ACTIONS(77), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_none] = ACTIONS(75), + [sym_named_expression] = STATE(1195), + [sym__named_expression_lhs] = STATE(2375), + [sym_list_splat_pattern] = STATE(1164), + [sym_as_pattern] = STATE(1195), + [sym_expression] = STATE(1247), + [sym_primary_expression] = STATE(971), + [sym_not_operator] = STATE(1195), + [sym_boolean_operator] = STATE(1195), + [sym_binary_operator] = STATE(1196), + [sym_unary_operator] = STATE(1196), + [sym_comparison_operator] = STATE(1195), + [sym_lambda] = STATE(1195), + [sym_attribute] = STATE(1196), + [sym_subscript] = STATE(1196), + [sym_call] = STATE(1196), + [sym_list] = STATE(1196), + [sym_set] = STATE(1196), + [sym_tuple] = STATE(1196), + [sym_dictionary] = STATE(1196), + [sym_list_comprehension] = STATE(1196), + [sym_dictionary_comprehension] = STATE(1196), + [sym_set_comprehension] = STATE(1196), + [sym_generator_expression] = STATE(1196), + [sym_parenthesized_expression] = STATE(1196), + [sym_conditional_expression] = STATE(1195), + [sym_concatenated_string] = STATE(1196), + [sym_string] = STATE(984), + [sym_await] = STATE(1196), + [sym_identifier] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_as] = ACTIONS(274), + [anon_sym_STAR] = ACTIONS(583), + [anon_sym_print] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_if] = ACTIONS(274), + [anon_sym_COLON] = ACTIONS(272), + [anon_sym_match] = ACTIONS(585), + [anon_sym_async] = ACTIONS(585), + [anon_sym_in] = ACTIONS(274), + [anon_sym_STAR_STAR] = ACTIONS(272), + [anon_sym_exec] = ACTIONS(585), + [anon_sym_AT] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(274), + [anon_sym_not] = ACTIONS(589), + [anon_sym_and] = ACTIONS(274), + [anon_sym_or] = ACTIONS(274), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_SLASH_SLASH] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(272), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_LT_EQ] = ACTIONS(272), + [anon_sym_EQ_EQ] = ACTIONS(272), + [anon_sym_BANG_EQ] = ACTIONS(272), + [anon_sym_GT_EQ] = ACTIONS(272), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_LT_GT] = ACTIONS(272), + [anon_sym_is] = ACTIONS(274), + [anon_sym_lambda] = ACTIONS(593), + [sym_ellipsis] = ACTIONS(595), + [anon_sym_LBRACE] = ACTIONS(597), + [anon_sym_RBRACE] = ACTIONS(272), + [sym_type_conversion] = ACTIONS(272), + [sym_integer] = ACTIONS(599), + [sym_float] = ACTIONS(595), + [anon_sym_await] = ACTIONS(601), + [sym_true] = ACTIONS(599), + [sym_false] = ACTIONS(599), + [sym_none] = ACTIONS(599), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(587), - [sym_string_start] = ACTIONS(79), + [sym_string_start] = ACTIONS(603), }, [138] = { - [sym_import_statement] = STATE(2328), - [sym_future_import_statement] = STATE(2328), - [sym_import_from_statement] = STATE(2328), - [sym_print_statement] = STATE(2328), - [sym_assert_statement] = STATE(2328), - [sym_expression_statement] = STATE(2328), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2328), - [sym_delete_statement] = STATE(2328), - [sym_raise_statement] = STATE(2328), - [sym_pass_statement] = STATE(2328), - [sym_break_statement] = STATE(2328), - [sym_continue_statement] = STATE(2328), - [sym_global_statement] = STATE(2328), - [sym_nonlocal_statement] = STATE(2328), - [sym_exec_statement] = STATE(2328), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [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(349), - [anon_sym_async] = ACTIONS(349), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(67), - [anon_sym_yield] = ACTIONS(69), - [sym_ellipsis] = ACTIONS(71), - [anon_sym_LBRACE] = ACTIONS(73), - [sym_integer] = ACTIONS(75), - [sym_float] = ACTIONS(71), - [anon_sym_await] = ACTIONS(77), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_none] = ACTIONS(75), + [sym_named_expression] = STATE(1427), + [sym__named_expression_lhs] = STATE(2338), + [sym_list_splat_pattern] = STATE(1406), + [sym_as_pattern] = STATE(1427), + [sym_expression] = STATE(1384), + [sym_primary_expression] = STATE(1032), + [sym_not_operator] = STATE(1427), + [sym_boolean_operator] = STATE(1427), + [sym_binary_operator] = STATE(1426), + [sym_unary_operator] = STATE(1426), + [sym_comparison_operator] = STATE(1427), + [sym_lambda] = STATE(1427), + [sym_attribute] = STATE(1426), + [sym_subscript] = STATE(1426), + [sym_call] = STATE(1426), + [sym_list] = STATE(1426), + [sym_set] = STATE(1426), + [sym_tuple] = STATE(1426), + [sym_dictionary] = STATE(1426), + [sym_list_comprehension] = STATE(1426), + [sym_dictionary_comprehension] = STATE(1426), + [sym_set_comprehension] = STATE(1426), + [sym_generator_expression] = STATE(1426), + [sym_parenthesized_expression] = STATE(1426), + [sym_conditional_expression] = STATE(1427), + [sym_concatenated_string] = STATE(1426), + [sym_string] = STATE(996), + [sym_await] = STATE(1426), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(308), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_as] = ACTIONS(274), + [anon_sym_STAR] = ACTIONS(310), + [anon_sym_print] = ACTIONS(312), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_COLON_EQ] = ACTIONS(289), + [anon_sym_if] = ACTIONS(274), + [anon_sym_COLON] = ACTIONS(274), + [anon_sym_else] = ACTIONS(274), + [anon_sym_match] = ACTIONS(312), + [anon_sym_async] = ACTIONS(312), + [anon_sym_in] = ACTIONS(274), + [anon_sym_STAR_STAR] = ACTIONS(272), + [anon_sym_exec] = ACTIONS(312), + [anon_sym_AT] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_EQ] = ACTIONS(274), + [anon_sym_not] = ACTIONS(608), + [anon_sym_and] = ACTIONS(274), + [anon_sym_or] = ACTIONS(274), + [anon_sym_PLUS] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(320), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_SLASH_SLASH] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(272), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(320), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_LT_EQ] = ACTIONS(272), + [anon_sym_EQ_EQ] = ACTIONS(272), + [anon_sym_BANG_EQ] = ACTIONS(272), + [anon_sym_GT_EQ] = ACTIONS(272), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_LT_GT] = ACTIONS(272), + [anon_sym_is] = ACTIONS(274), + [anon_sym_lambda] = ACTIONS(610), + [sym_ellipsis] = ACTIONS(324), + [anon_sym_LBRACE] = ACTIONS(326), + [sym_integer] = ACTIONS(328), + [sym_float] = ACTIONS(324), + [anon_sym_await] = ACTIONS(330), + [sym_true] = ACTIONS(328), + [sym_false] = ACTIONS(328), + [sym_none] = ACTIONS(328), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(589), - [sym_string_start] = ACTIONS(79), + [sym_string_start] = ACTIONS(332), }, [139] = { - [sym_import_statement] = STATE(2328), - [sym_future_import_statement] = STATE(2328), - [sym_import_from_statement] = STATE(2328), - [sym_print_statement] = STATE(2328), - [sym_assert_statement] = STATE(2328), - [sym_expression_statement] = STATE(2328), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2328), - [sym_delete_statement] = STATE(2328), - [sym_raise_statement] = STATE(2328), - [sym_pass_statement] = STATE(2328), - [sym_break_statement] = STATE(2328), - [sym_continue_statement] = STATE(2328), - [sym_global_statement] = STATE(2328), - [sym_nonlocal_statement] = STATE(2328), - [sym_exec_statement] = STATE(2328), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [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(349), - [anon_sym_async] = ACTIONS(349), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(63), + [sym_named_expression] = STATE(1259), + [sym__named_expression_lhs] = STATE(2390), + [sym_list_splat_pattern] = STATE(1295), + [sym_as_pattern] = STATE(1259), + [sym_expression] = STATE(1174), + [sym_primary_expression] = STATE(974), + [sym_not_operator] = STATE(1259), + [sym_boolean_operator] = STATE(1259), + [sym_binary_operator] = STATE(1272), + [sym_unary_operator] = STATE(1272), + [sym_comparison_operator] = STATE(1259), + [sym_lambda] = STATE(1259), + [sym_attribute] = STATE(1272), + [sym_subscript] = STATE(1272), + [sym_call] = STATE(1272), + [sym_list] = STATE(1272), + [sym_set] = STATE(1272), + [sym_tuple] = STATE(1272), + [sym_dictionary] = STATE(1272), + [sym_list_comprehension] = STATE(1272), + [sym_dictionary_comprehension] = STATE(1272), + [sym_set_comprehension] = STATE(1272), + [sym_generator_expression] = STATE(1272), + [sym_parenthesized_expression] = STATE(1272), + [sym_conditional_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1272), + [sym_string] = STATE(977), + [sym_await] = STATE(1272), + [sym_identifier] = ACTIONS(270), + [anon_sym_SEMI] = ACTIONS(272), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_from] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(334), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_as] = ACTIONS(274), + [anon_sym_STAR] = ACTIONS(336), + [anon_sym_print] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_if] = ACTIONS(274), + [anon_sym_match] = ACTIONS(285), + [anon_sym_async] = ACTIONS(285), + [anon_sym_in] = ACTIONS(274), + [anon_sym_STAR_STAR] = ACTIONS(272), + [anon_sym_exec] = ACTIONS(285), + [anon_sym_AT] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_EQ] = ACTIONS(274), + [anon_sym_not] = ACTIONS(340), + [anon_sym_and] = ACTIONS(274), + [anon_sym_or] = ACTIONS(274), [anon_sym_PLUS] = ACTIONS(65), [anon_sym_DASH] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_SLASH_SLASH] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(272), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(67), - [anon_sym_yield] = ACTIONS(69), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_LT_EQ] = ACTIONS(272), + [anon_sym_EQ_EQ] = ACTIONS(272), + [anon_sym_BANG_EQ] = ACTIONS(272), + [anon_sym_GT_EQ] = ACTIONS(272), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_LT_GT] = ACTIONS(272), + [anon_sym_is] = ACTIONS(274), + [anon_sym_lambda] = ACTIONS(344), [sym_ellipsis] = ACTIONS(71), [anon_sym_LBRACE] = ACTIONS(73), [sym_integer] = ACTIONS(75), [sym_float] = ACTIONS(71), - [anon_sym_await] = ACTIONS(77), + [anon_sym_await] = ACTIONS(304), [sym_true] = ACTIONS(75), [sym_false] = ACTIONS(75), [sym_none] = ACTIONS(75), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(591), + [sym__newline] = ACTIONS(272), [sym_string_start] = ACTIONS(79), }, [140] = { - [sym_import_statement] = STATE(2328), - [sym_future_import_statement] = STATE(2328), - [sym_import_from_statement] = STATE(2328), - [sym_print_statement] = STATE(2328), - [sym_assert_statement] = STATE(2328), - [sym_expression_statement] = STATE(2328), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2328), - [sym_delete_statement] = STATE(2328), - [sym_raise_statement] = STATE(2328), - [sym_pass_statement] = STATE(2328), - [sym_break_statement] = STATE(2328), - [sym_continue_statement] = STATE(2328), - [sym_global_statement] = STATE(2328), - [sym_nonlocal_statement] = STATE(2328), - [sym_exec_statement] = STATE(2328), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [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(349), - [anon_sym_async] = ACTIONS(349), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(67), - [anon_sym_yield] = ACTIONS(69), - [sym_ellipsis] = ACTIONS(71), - [anon_sym_LBRACE] = ACTIONS(73), - [sym_integer] = ACTIONS(75), - [sym_float] = ACTIONS(71), - [anon_sym_await] = ACTIONS(77), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_none] = ACTIONS(75), + [sym_named_expression] = STATE(1262), + [sym__named_expression_lhs] = STATE(2370), + [sym_list_splat_pattern] = STATE(1238), + [sym_as_pattern] = STATE(1262), + [sym_expression] = STATE(1155), + [sym_primary_expression] = STATE(981), + [sym_not_operator] = STATE(1262), + [sym_boolean_operator] = STATE(1262), + [sym_binary_operator] = STATE(1261), + [sym_unary_operator] = STATE(1261), + [sym_comparison_operator] = STATE(1262), + [sym_lambda] = STATE(1262), + [sym_attribute] = STATE(1261), + [sym_subscript] = STATE(1261), + [sym_call] = STATE(1261), + [sym_list] = STATE(1261), + [sym_set] = STATE(1261), + [sym_tuple] = STATE(1261), + [sym_dictionary] = STATE(1261), + [sym_list_comprehension] = STATE(1261), + [sym_dictionary_comprehension] = STATE(1261), + [sym_set_comprehension] = STATE(1261), + [sym_generator_expression] = STATE(1261), + [sym_parenthesized_expression] = STATE(1261), + [sym_conditional_expression] = STATE(1262), + [sym_concatenated_string] = STATE(1261), + [sym_string] = STATE(975), + [sym_await] = STATE(1261), + [sym_identifier] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_as] = ACTIONS(274), + [anon_sym_STAR] = ACTIONS(616), + [anon_sym_print] = ACTIONS(618), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_COLON_EQ] = ACTIONS(289), + [anon_sym_if] = ACTIONS(274), + [anon_sym_COLON] = ACTIONS(274), + [anon_sym_match] = ACTIONS(618), + [anon_sym_async] = ACTIONS(618), + [anon_sym_for] = ACTIONS(274), + [anon_sym_in] = ACTIONS(274), + [anon_sym_STAR_STAR] = ACTIONS(272), + [anon_sym_exec] = ACTIONS(618), + [anon_sym_AT] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(620), + [anon_sym_not] = ACTIONS(622), + [anon_sym_and] = ACTIONS(274), + [anon_sym_or] = ACTIONS(274), + [anon_sym_PLUS] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(624), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_SLASH_SLASH] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(272), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_LT_EQ] = ACTIONS(272), + [anon_sym_EQ_EQ] = ACTIONS(272), + [anon_sym_BANG_EQ] = ACTIONS(272), + [anon_sym_GT_EQ] = ACTIONS(272), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_LT_GT] = ACTIONS(272), + [anon_sym_is] = ACTIONS(274), + [anon_sym_lambda] = ACTIONS(626), + [sym_ellipsis] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_RBRACE] = ACTIONS(272), + [sym_integer] = ACTIONS(632), + [sym_float] = ACTIONS(628), + [anon_sym_await] = ACTIONS(634), + [sym_true] = ACTIONS(632), + [sym_false] = ACTIONS(632), + [sym_none] = ACTIONS(632), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(593), - [sym_string_start] = ACTIONS(79), + [sym_string_start] = ACTIONS(636), }, [141] = { - [sym_import_statement] = STATE(2328), - [sym_future_import_statement] = STATE(2328), - [sym_import_from_statement] = STATE(2328), - [sym_print_statement] = STATE(2328), - [sym_assert_statement] = STATE(2328), - [sym_expression_statement] = STATE(2328), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2328), - [sym_delete_statement] = STATE(2328), - [sym_raise_statement] = STATE(2328), - [sym_pass_statement] = STATE(2328), - [sym_break_statement] = STATE(2328), - [sym_continue_statement] = STATE(2328), - [sym_global_statement] = STATE(2328), - [sym_nonlocal_statement] = STATE(2328), - [sym_exec_statement] = STATE(2328), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [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(349), - [anon_sym_async] = ACTIONS(349), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(67), - [anon_sym_yield] = ACTIONS(69), - [sym_ellipsis] = ACTIONS(71), - [anon_sym_LBRACE] = ACTIONS(73), - [sym_integer] = ACTIONS(75), - [sym_float] = ACTIONS(71), - [anon_sym_await] = ACTIONS(77), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_none] = ACTIONS(75), + [sym_named_expression] = STATE(1321), + [sym__named_expression_lhs] = STATE(2404), + [sym_list_splat_pattern] = STATE(1304), + [sym_as_pattern] = STATE(1321), + [sym_expression] = STATE(1358), + [sym_primary_expression] = STATE(1033), + [sym_not_operator] = STATE(1321), + [sym_boolean_operator] = STATE(1321), + [sym_binary_operator] = STATE(1316), + [sym_unary_operator] = STATE(1316), + [sym_comparison_operator] = STATE(1321), + [sym_lambda] = STATE(1321), + [sym_attribute] = STATE(1316), + [sym_subscript] = STATE(1316), + [sym_call] = STATE(1316), + [sym_list] = STATE(1316), + [sym_set] = STATE(1316), + [sym_tuple] = STATE(1316), + [sym_dictionary] = STATE(1316), + [sym_list_comprehension] = STATE(1316), + [sym_dictionary_comprehension] = STATE(1316), + [sym_set_comprehension] = STATE(1316), + [sym_generator_expression] = STATE(1316), + [sym_parenthesized_expression] = STATE(1316), + [sym_conditional_expression] = STATE(1321), + [sym_concatenated_string] = STATE(1316), + [sym_string] = STATE(1036), + [sym_await] = STATE(1316), + [sym_identifier] = ACTIONS(638), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(640), + [anon_sym_RPAREN] = ACTIONS(272), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_as] = ACTIONS(274), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_print] = ACTIONS(644), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_COLON_EQ] = ACTIONS(289), + [anon_sym_if] = ACTIONS(274), + [anon_sym_match] = ACTIONS(644), + [anon_sym_async] = ACTIONS(644), + [anon_sym_for] = ACTIONS(274), + [anon_sym_in] = ACTIONS(274), + [anon_sym_STAR_STAR] = ACTIONS(272), + [anon_sym_exec] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_EQ] = ACTIONS(648), + [anon_sym_not] = ACTIONS(650), + [anon_sym_and] = ACTIONS(274), + [anon_sym_or] = ACTIONS(274), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_SLASH_SLASH] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(272), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_LT_EQ] = ACTIONS(272), + [anon_sym_EQ_EQ] = ACTIONS(272), + [anon_sym_BANG_EQ] = ACTIONS(272), + [anon_sym_GT_EQ] = ACTIONS(272), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_LT_GT] = ACTIONS(272), + [anon_sym_is] = ACTIONS(274), + [anon_sym_lambda] = ACTIONS(654), + [sym_ellipsis] = ACTIONS(656), + [anon_sym_LBRACE] = ACTIONS(658), + [sym_integer] = ACTIONS(660), + [sym_float] = ACTIONS(656), + [anon_sym_await] = ACTIONS(662), + [sym_true] = ACTIONS(660), + [sym_false] = ACTIONS(660), + [sym_none] = ACTIONS(660), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(595), - [sym_string_start] = ACTIONS(79), + [sym_string_start] = ACTIONS(664), }, [142] = { - [sym_import_statement] = STATE(2328), - [sym_future_import_statement] = STATE(2328), - [sym_import_from_statement] = STATE(2328), - [sym_print_statement] = STATE(2328), - [sym_assert_statement] = STATE(2328), - [sym_expression_statement] = STATE(2328), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2328), - [sym_delete_statement] = STATE(2328), - [sym_raise_statement] = STATE(2328), - [sym_pass_statement] = STATE(2328), - [sym_break_statement] = STATE(2328), - [sym_continue_statement] = STATE(2328), - [sym_global_statement] = STATE(2328), - [sym_nonlocal_statement] = STATE(2328), - [sym_exec_statement] = STATE(2328), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [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(349), - [anon_sym_async] = ACTIONS(349), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(67), - [anon_sym_yield] = ACTIONS(69), - [sym_ellipsis] = ACTIONS(71), - [anon_sym_LBRACE] = ACTIONS(73), - [sym_integer] = ACTIONS(75), - [sym_float] = ACTIONS(71), - [anon_sym_await] = ACTIONS(77), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_none] = ACTIONS(75), + [sym_named_expression] = STATE(1427), + [sym__named_expression_lhs] = STATE(2513), + [sym_list_splat_pattern] = STATE(1406), + [sym_as_pattern] = STATE(1427), + [sym_expression] = STATE(1575), + [sym_primary_expression] = STATE(994), + [sym_not_operator] = STATE(1427), + [sym_boolean_operator] = STATE(1427), + [sym_binary_operator] = STATE(1426), + [sym_unary_operator] = STATE(1426), + [sym_comparison_operator] = STATE(1427), + [sym_lambda] = STATE(1427), + [sym_attribute] = STATE(1426), + [sym_subscript] = STATE(1426), + [sym_call] = STATE(1426), + [sym_list] = STATE(1426), + [sym_set] = STATE(1426), + [sym_tuple] = STATE(1426), + [sym_dictionary] = STATE(1426), + [sym_list_comprehension] = STATE(1426), + [sym_dictionary_comprehension] = STATE(1426), + [sym_set_comprehension] = STATE(1426), + [sym_generator_expression] = STATE(1426), + [sym_parenthesized_expression] = STATE(1426), + [sym_conditional_expression] = STATE(1427), + [sym_concatenated_string] = STATE(1426), + [sym_string] = STATE(996), + [sym_await] = STATE(1426), + [sym_identifier] = ACTIONS(306), + [anon_sym_SEMI] = ACTIONS(346), + [anon_sym_DOT] = ACTIONS(348), + [anon_sym_from] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(308), + [anon_sym_COMMA] = ACTIONS(346), + [anon_sym_as] = ACTIONS(351), + [anon_sym_STAR] = ACTIONS(310), + [anon_sym_print] = ACTIONS(312), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_if] = ACTIONS(351), + [anon_sym_match] = ACTIONS(312), + [anon_sym_async] = ACTIONS(312), + [anon_sym_in] = ACTIONS(351), + [anon_sym_STAR_STAR] = ACTIONS(605), + [anon_sym_exec] = ACTIONS(312), + [anon_sym_AT] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_not] = ACTIONS(316), + [anon_sym_and] = ACTIONS(351), + [anon_sym_or] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(320), + [anon_sym_SLASH] = ACTIONS(348), + [anon_sym_PERCENT] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(605), + [anon_sym_PIPE] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_LT_LT] = ACTIONS(605), + [anon_sym_TILDE] = ACTIONS(320), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(346), + [anon_sym_EQ_EQ] = ACTIONS(346), + [anon_sym_BANG_EQ] = ACTIONS(346), + [anon_sym_GT_EQ] = ACTIONS(346), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_LT_GT] = ACTIONS(346), + [anon_sym_is] = ACTIONS(351), + [anon_sym_lambda] = ACTIONS(322), + [sym_ellipsis] = ACTIONS(324), + [anon_sym_LBRACE] = ACTIONS(326), + [sym_integer] = ACTIONS(328), + [sym_float] = ACTIONS(324), + [anon_sym_await] = ACTIONS(330), + [sym_true] = ACTIONS(328), + [sym_false] = ACTIONS(328), + [sym_none] = ACTIONS(328), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(597), - [sym_string_start] = ACTIONS(79), + [sym__newline] = ACTIONS(346), + [sym_string_start] = ACTIONS(332), }, [143] = { - [sym_import_statement] = STATE(2328), - [sym_future_import_statement] = STATE(2328), - [sym_import_from_statement] = STATE(2328), - [sym_print_statement] = STATE(2328), - [sym_assert_statement] = STATE(2328), - [sym_expression_statement] = STATE(2328), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2328), - [sym_delete_statement] = STATE(2328), - [sym_raise_statement] = STATE(2328), - [sym_pass_statement] = STATE(2328), - [sym_break_statement] = STATE(2328), - [sym_continue_statement] = STATE(2328), - [sym_global_statement] = STATE(2328), - [sym_nonlocal_statement] = STATE(2328), - [sym_exec_statement] = STATE(2328), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [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(349), - [anon_sym_async] = ACTIONS(349), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(67), - [anon_sym_yield] = ACTIONS(69), - [sym_ellipsis] = ACTIONS(71), - [anon_sym_LBRACE] = ACTIONS(73), - [sym_integer] = ACTIONS(75), - [sym_float] = ACTIONS(71), - [anon_sym_await] = ACTIONS(77), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_none] = ACTIONS(75), + [sym_named_expression] = STATE(1427), + [sym__named_expression_lhs] = STATE(2513), + [sym_list_splat_pattern] = STATE(1406), + [sym_as_pattern] = STATE(1427), + [sym_expression] = STATE(1575), + [sym_primary_expression] = STATE(994), + [sym_not_operator] = STATE(1427), + [sym_boolean_operator] = STATE(1427), + [sym_binary_operator] = STATE(1426), + [sym_unary_operator] = STATE(1426), + [sym_comparison_operator] = STATE(1427), + [sym_lambda] = STATE(1427), + [sym_attribute] = STATE(1426), + [sym_subscript] = STATE(1426), + [sym_call] = STATE(1426), + [sym_list] = STATE(1426), + [sym_set] = STATE(1426), + [sym_tuple] = STATE(1426), + [sym_dictionary] = STATE(1426), + [sym_list_comprehension] = STATE(1426), + [sym_dictionary_comprehension] = STATE(1426), + [sym_set_comprehension] = STATE(1426), + [sym_generator_expression] = STATE(1426), + [sym_parenthesized_expression] = STATE(1426), + [sym_conditional_expression] = STATE(1427), + [sym_concatenated_string] = STATE(1426), + [sym_string] = STATE(996), + [sym_await] = STATE(1426), + [sym_identifier] = ACTIONS(306), + [anon_sym_SEMI] = ACTIONS(302), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(308), + [anon_sym_COMMA] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(310), + [anon_sym_print] = ACTIONS(312), + [anon_sym_GT_GT] = ACTIONS(274), + [anon_sym_COLON] = ACTIONS(302), + [anon_sym_match] = ACTIONS(312), + [anon_sym_async] = ACTIONS(312), + [anon_sym_STAR_STAR] = ACTIONS(274), + [anon_sym_exec] = ACTIONS(312), + [anon_sym_AT] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_EQ] = ACTIONS(302), + [anon_sym_not] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(274), + [anon_sym_SLASH_SLASH] = ACTIONS(274), + [anon_sym_PIPE] = ACTIONS(274), + [anon_sym_AMP] = ACTIONS(274), + [anon_sym_CARET] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(274), + [anon_sym_TILDE] = ACTIONS(320), + [anon_sym_lambda] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(302), + [anon_sym_DASH_EQ] = ACTIONS(302), + [anon_sym_STAR_EQ] = ACTIONS(302), + [anon_sym_SLASH_EQ] = ACTIONS(302), + [anon_sym_AT_EQ] = ACTIONS(302), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(302), + [anon_sym_PERCENT_EQ] = ACTIONS(302), + [anon_sym_STAR_STAR_EQ] = ACTIONS(302), + [anon_sym_GT_GT_EQ] = ACTIONS(302), + [anon_sym_LT_LT_EQ] = ACTIONS(302), + [anon_sym_AMP_EQ] = ACTIONS(302), + [anon_sym_CARET_EQ] = ACTIONS(302), + [anon_sym_PIPE_EQ] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(324), + [anon_sym_LBRACE] = ACTIONS(326), + [sym_integer] = ACTIONS(328), + [sym_float] = ACTIONS(324), + [anon_sym_await] = ACTIONS(330), + [sym_true] = ACTIONS(328), + [sym_false] = ACTIONS(328), + [sym_none] = ACTIONS(328), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(599), - [sym_string_start] = ACTIONS(79), + [sym__newline] = ACTIONS(302), + [sym_string_start] = ACTIONS(332), }, [144] = { - [sym_import_statement] = STATE(2328), - [sym_future_import_statement] = STATE(2328), - [sym_import_from_statement] = STATE(2328), - [sym_print_statement] = STATE(2328), - [sym_assert_statement] = STATE(2328), - [sym_expression_statement] = STATE(2328), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2328), - [sym_delete_statement] = STATE(2328), - [sym_raise_statement] = STATE(2328), - [sym_pass_statement] = STATE(2328), - [sym_break_statement] = STATE(2328), - [sym_continue_statement] = STATE(2328), - [sym_global_statement] = STATE(2328), - [sym_nonlocal_statement] = STATE(2328), - [sym_exec_statement] = STATE(2328), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [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(349), - [anon_sym_async] = ACTIONS(349), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(67), - [anon_sym_yield] = ACTIONS(69), - [sym_ellipsis] = ACTIONS(71), - [anon_sym_LBRACE] = ACTIONS(73), - [sym_integer] = ACTIONS(75), - [sym_float] = ACTIONS(71), - [anon_sym_await] = ACTIONS(77), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_none] = ACTIONS(75), + [sym_named_expression] = STATE(1195), + [sym__named_expression_lhs] = STATE(2375), + [sym_list_splat_pattern] = STATE(1164), + [sym_as_pattern] = STATE(1195), + [sym_expression] = STATE(1247), + [sym_primary_expression] = STATE(971), + [sym_not_operator] = STATE(1195), + [sym_boolean_operator] = STATE(1195), + [sym_binary_operator] = STATE(1196), + [sym_unary_operator] = STATE(1196), + [sym_comparison_operator] = STATE(1195), + [sym_lambda] = STATE(1195), + [sym_attribute] = STATE(1196), + [sym_subscript] = STATE(1196), + [sym_call] = STATE(1196), + [sym_list] = STATE(1196), + [sym_set] = STATE(1196), + [sym_tuple] = STATE(1196), + [sym_dictionary] = STATE(1196), + [sym_list_comprehension] = STATE(1196), + [sym_dictionary_comprehension] = STATE(1196), + [sym_set_comprehension] = STATE(1196), + [sym_generator_expression] = STATE(1196), + [sym_parenthesized_expression] = STATE(1196), + [sym_conditional_expression] = STATE(1195), + [sym_concatenated_string] = STATE(1196), + [sym_string] = STATE(984), + [sym_await] = STATE(1196), + [sym_identifier] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(348), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(605), + [anon_sym_as] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(583), + [anon_sym_print] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_COLON_EQ] = ACTIONS(289), + [anon_sym_if] = ACTIONS(348), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_match] = ACTIONS(585), + [anon_sym_async] = ACTIONS(585), + [anon_sym_for] = ACTIONS(351), + [anon_sym_in] = ACTIONS(348), + [anon_sym_STAR_STAR] = ACTIONS(605), + [anon_sym_exec] = ACTIONS(585), + [anon_sym_AT] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(587), + [anon_sym_not] = ACTIONS(589), + [anon_sym_and] = ACTIONS(348), + [anon_sym_or] = ACTIONS(348), + [anon_sym_PLUS] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(591), + [anon_sym_SLASH] = ACTIONS(348), + [anon_sym_PERCENT] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(605), + [anon_sym_PIPE] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_LT_LT] = ACTIONS(605), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(348), + [anon_sym_LT_EQ] = ACTIONS(605), + [anon_sym_EQ_EQ] = ACTIONS(605), + [anon_sym_BANG_EQ] = ACTIONS(605), + [anon_sym_GT_EQ] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(348), + [anon_sym_LT_GT] = ACTIONS(605), + [anon_sym_is] = ACTIONS(348), + [anon_sym_lambda] = ACTIONS(593), + [sym_ellipsis] = ACTIONS(595), + [anon_sym_LBRACE] = ACTIONS(597), + [anon_sym_RBRACE] = ACTIONS(605), + [sym_integer] = ACTIONS(599), + [sym_float] = ACTIONS(595), + [anon_sym_await] = ACTIONS(601), + [sym_true] = ACTIONS(599), + [sym_false] = ACTIONS(599), + [sym_none] = ACTIONS(599), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(601), - [sym_string_start] = ACTIONS(79), + [sym_string_start] = ACTIONS(603), }, [145] = { - [sym_import_statement] = STATE(2328), - [sym_future_import_statement] = STATE(2328), - [sym_import_from_statement] = STATE(2328), - [sym_print_statement] = STATE(2328), - [sym_assert_statement] = STATE(2328), - [sym_expression_statement] = STATE(2328), - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2504), - [sym_return_statement] = STATE(2328), - [sym_delete_statement] = STATE(2328), - [sym_raise_statement] = STATE(2328), - [sym_pass_statement] = STATE(2328), - [sym_break_statement] = STATE(2328), - [sym_continue_statement] = STATE(2328), - [sym_global_statement] = STATE(2328), - [sym_nonlocal_statement] = STATE(2328), - [sym_exec_statement] = STATE(2328), - [sym_pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1693), - [sym_list_pattern] = STATE(1693), - [sym_list_splat_pattern] = STATE(661), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1161), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_assignment] = STATE(2292), - [sym_augmented_assignment] = STATE(2292), - [sym_pattern_list] = STATE(1722), - [sym_yield] = STATE(2292), - [sym_attribute] = STATE(666), - [sym_subscript] = STATE(666), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [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(349), - [anon_sym_async] = ACTIONS(349), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(67), - [anon_sym_yield] = ACTIONS(69), - [sym_ellipsis] = ACTIONS(71), - [anon_sym_LBRACE] = ACTIONS(73), - [sym_integer] = ACTIONS(75), - [sym_float] = ACTIONS(71), - [anon_sym_await] = ACTIONS(77), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_none] = ACTIONS(75), + [sym_named_expression] = STATE(1427), + [sym__named_expression_lhs] = STATE(2338), + [sym_list_splat_pattern] = STATE(1406), + [sym_as_pattern] = STATE(1427), + [sym_expression] = STATE(1384), + [sym_primary_expression] = STATE(1032), + [sym_not_operator] = STATE(1427), + [sym_boolean_operator] = STATE(1427), + [sym_binary_operator] = STATE(1426), + [sym_unary_operator] = STATE(1426), + [sym_comparison_operator] = STATE(1427), + [sym_lambda] = STATE(1427), + [sym_attribute] = STATE(1426), + [sym_subscript] = STATE(1426), + [sym_call] = STATE(1426), + [sym_list] = STATE(1426), + [sym_set] = STATE(1426), + [sym_tuple] = STATE(1426), + [sym_dictionary] = STATE(1426), + [sym_list_comprehension] = STATE(1426), + [sym_dictionary_comprehension] = STATE(1426), + [sym_set_comprehension] = STATE(1426), + [sym_generator_expression] = STATE(1426), + [sym_parenthesized_expression] = STATE(1426), + [sym_conditional_expression] = STATE(1427), + [sym_concatenated_string] = STATE(1426), + [sym_string] = STATE(996), + [sym_await] = STATE(1426), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(308), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_as] = ACTIONS(274), + [anon_sym_STAR] = ACTIONS(310), + [anon_sym_print] = ACTIONS(312), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_if] = ACTIONS(274), + [anon_sym_COLON] = ACTIONS(272), + [anon_sym_else] = ACTIONS(274), + [anon_sym_match] = ACTIONS(312), + [anon_sym_async] = ACTIONS(312), + [anon_sym_in] = ACTIONS(274), + [anon_sym_STAR_STAR] = ACTIONS(272), + [anon_sym_exec] = ACTIONS(312), + [anon_sym_AT] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_EQ] = ACTIONS(274), + [anon_sym_not] = ACTIONS(608), + [anon_sym_and] = ACTIONS(274), + [anon_sym_or] = ACTIONS(274), + [anon_sym_PLUS] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(320), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_SLASH_SLASH] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(272), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(320), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_LT_EQ] = ACTIONS(272), + [anon_sym_EQ_EQ] = ACTIONS(272), + [anon_sym_BANG_EQ] = ACTIONS(272), + [anon_sym_GT_EQ] = ACTIONS(272), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_LT_GT] = ACTIONS(272), + [anon_sym_is] = ACTIONS(274), + [anon_sym_lambda] = ACTIONS(610), + [sym_ellipsis] = ACTIONS(324), + [anon_sym_LBRACE] = ACTIONS(326), + [sym_integer] = ACTIONS(328), + [sym_float] = ACTIONS(324), + [anon_sym_await] = ACTIONS(330), + [sym_true] = ACTIONS(328), + [sym_false] = ACTIONS(328), + [sym_none] = ACTIONS(328), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(79), + [sym_string_start] = ACTIONS(332), }, [146] = { - [sym_named_expression] = STATE(1456), - [sym__named_expression_lhs] = STATE(2379), - [sym_list_splat_pattern] = STATE(1366), - [sym_as_pattern] = STATE(1456), - [sym_expression] = STATE(1638), - [sym_primary_expression] = STATE(1079), - [sym_not_operator] = STATE(1456), - [sym_boolean_operator] = STATE(1456), - [sym_binary_operator] = STATE(1455), - [sym_unary_operator] = STATE(1455), - [sym_comparison_operator] = STATE(1456), - [sym_lambda] = STATE(1456), - [sym_attribute] = STATE(1455), - [sym_subscript] = STATE(1455), - [sym_call] = STATE(1455), - [sym_list] = STATE(1455), - [sym_set] = STATE(1455), - [sym_tuple] = STATE(1455), - [sym_dictionary] = STATE(1455), - [sym_list_comprehension] = STATE(1455), - [sym_dictionary_comprehension] = STATE(1455), - [sym_set_comprehension] = STATE(1455), - [sym_generator_expression] = STATE(1455), - [sym_parenthesized_expression] = STATE(1455), - [sym_conditional_expression] = STATE(1456), - [sym_concatenated_string] = STATE(1455), - [sym_string] = STATE(1071), - [sym_await] = STATE(1455), - [sym_identifier] = ACTIONS(314), - [anon_sym_DOT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_COMMA] = ACTIONS(342), - [anon_sym_as] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_print] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(603), - [anon_sym_if] = ACTIONS(347), - [anon_sym_COLON] = ACTIONS(342), - [anon_sym_match] = ACTIONS(320), - [anon_sym_async] = ACTIONS(320), - [anon_sym_for] = ACTIONS(347), - [anon_sym_in] = ACTIONS(347), - [anon_sym_STAR_STAR] = ACTIONS(603), - [anon_sym_exec] = ACTIONS(320), - [anon_sym_AT] = ACTIONS(603), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_EQ] = ACTIONS(347), - [anon_sym_not] = ACTIONS(324), - [anon_sym_and] = ACTIONS(347), - [anon_sym_or] = ACTIONS(347), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_SLASH] = ACTIONS(344), - [anon_sym_PERCENT] = ACTIONS(603), - [anon_sym_SLASH_SLASH] = ACTIONS(603), - [anon_sym_PIPE] = ACTIONS(603), - [anon_sym_AMP] = ACTIONS(603), - [anon_sym_CARET] = ACTIONS(603), - [anon_sym_LT_LT] = ACTIONS(603), - [anon_sym_TILDE] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(347), - [anon_sym_LT_EQ] = ACTIONS(342), - [anon_sym_EQ_EQ] = ACTIONS(342), - [anon_sym_BANG_EQ] = ACTIONS(342), - [anon_sym_GT_EQ] = ACTIONS(342), - [anon_sym_GT] = ACTIONS(347), - [anon_sym_LT_GT] = ACTIONS(342), - [anon_sym_is] = ACTIONS(347), - [anon_sym_lambda] = ACTIONS(330), - [sym_ellipsis] = ACTIONS(332), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_RBRACE] = ACTIONS(342), - [sym_type_conversion] = ACTIONS(342), - [sym_integer] = ACTIONS(336), - [sym_float] = ACTIONS(332), - [anon_sym_await] = ACTIONS(338), - [sym_true] = ACTIONS(336), - [sym_false] = ACTIONS(336), - [sym_none] = ACTIONS(336), + [sym_named_expression] = STATE(1427), + [sym__named_expression_lhs] = STATE(2513), + [sym_list_splat_pattern] = STATE(1406), + [sym_as_pattern] = STATE(1427), + [sym_expression] = STATE(1575), + [sym_primary_expression] = STATE(994), + [sym_not_operator] = STATE(1427), + [sym_boolean_operator] = STATE(1427), + [sym_binary_operator] = STATE(1426), + [sym_unary_operator] = STATE(1426), + [sym_comparison_operator] = STATE(1427), + [sym_lambda] = STATE(1427), + [sym_attribute] = STATE(1426), + [sym_subscript] = STATE(1426), + [sym_call] = STATE(1426), + [sym_list] = STATE(1426), + [sym_set] = STATE(1426), + [sym_tuple] = STATE(1426), + [sym_dictionary] = STATE(1426), + [sym_list_comprehension] = STATE(1426), + [sym_dictionary_comprehension] = STATE(1426), + [sym_set_comprehension] = STATE(1426), + [sym_generator_expression] = STATE(1426), + [sym_parenthesized_expression] = STATE(1426), + [sym_conditional_expression] = STATE(1427), + [sym_concatenated_string] = STATE(1426), + [sym_string] = STATE(996), + [sym_await] = STATE(1426), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(348), + [anon_sym_LPAREN] = ACTIONS(308), + [anon_sym_COMMA] = ACTIONS(346), + [anon_sym_as] = ACTIONS(351), + [anon_sym_STAR] = ACTIONS(310), + [anon_sym_print] = ACTIONS(312), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_if] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(346), + [anon_sym_match] = ACTIONS(312), + [anon_sym_async] = ACTIONS(312), + [anon_sym_for] = ACTIONS(351), + [anon_sym_in] = ACTIONS(351), + [anon_sym_STAR_STAR] = ACTIONS(605), + [anon_sym_exec] = ACTIONS(312), + [anon_sym_AT] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_RBRACK] = ACTIONS(346), + [anon_sym_not] = ACTIONS(316), + [anon_sym_and] = ACTIONS(351), + [anon_sym_or] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(320), + [anon_sym_SLASH] = ACTIONS(348), + [anon_sym_PERCENT] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(605), + [anon_sym_PIPE] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_LT_LT] = ACTIONS(605), + [anon_sym_TILDE] = ACTIONS(320), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(346), + [anon_sym_EQ_EQ] = ACTIONS(346), + [anon_sym_BANG_EQ] = ACTIONS(346), + [anon_sym_GT_EQ] = ACTIONS(346), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_LT_GT] = ACTIONS(346), + [anon_sym_is] = ACTIONS(351), + [anon_sym_lambda] = ACTIONS(322), + [sym_ellipsis] = ACTIONS(324), + [anon_sym_LBRACE] = ACTIONS(326), + [sym_integer] = ACTIONS(328), + [sym_float] = ACTIONS(324), + [anon_sym_await] = ACTIONS(330), + [sym_true] = ACTIONS(328), + [sym_false] = ACTIONS(328), + [sym_none] = ACTIONS(328), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(340), + [sym_string_start] = ACTIONS(332), }, [147] = { - [sym_named_expression] = STATE(1343), - [sym__named_expression_lhs] = STATE(2395), - [sym_list_splat_pattern] = STATE(1236), - [sym_as_pattern] = STATE(1343), - [sym_expression] = STATE(1181), - [sym_primary_expression] = STATE(1044), - [sym_not_operator] = STATE(1343), - [sym_boolean_operator] = STATE(1343), - [sym_binary_operator] = STATE(1341), - [sym_unary_operator] = STATE(1341), - [sym_comparison_operator] = STATE(1343), - [sym_lambda] = STATE(1343), - [sym_attribute] = STATE(1341), - [sym_subscript] = STATE(1341), - [sym_call] = STATE(1341), - [sym_list] = STATE(1341), - [sym_set] = STATE(1341), - [sym_tuple] = STATE(1341), - [sym_dictionary] = STATE(1341), - [sym_list_comprehension] = STATE(1341), - [sym_dictionary_comprehension] = STATE(1341), - [sym_set_comprehension] = STATE(1341), - [sym_generator_expression] = STATE(1341), - [sym_parenthesized_expression] = STATE(1341), - [sym_conditional_expression] = STATE(1343), - [sym_concatenated_string] = STATE(1341), - [sym_string] = STATE(1032), - [sym_await] = STATE(1341), - [sym_identifier] = ACTIONS(606), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(608), - [anon_sym_COMMA] = ACTIONS(275), - [anon_sym_as] = ACTIONS(270), - [anon_sym_STAR] = ACTIONS(610), - [anon_sym_print] = ACTIONS(612), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_COLON_EQ] = ACTIONS(285), - [anon_sym_if] = ACTIONS(270), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_match] = ACTIONS(612), - [anon_sym_async] = ACTIONS(612), - [anon_sym_in] = ACTIONS(270), - [anon_sym_STAR_STAR] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(612), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(614), - [anon_sym_EQ] = ACTIONS(270), - [anon_sym_not] = ACTIONS(616), - [anon_sym_and] = ACTIONS(270), - [anon_sym_or] = ACTIONS(270), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(268), - [anon_sym_CARET] = ACTIONS(268), - [anon_sym_LT_LT] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_LT_EQ] = ACTIONS(268), - [anon_sym_EQ_EQ] = ACTIONS(268), - [anon_sym_BANG_EQ] = ACTIONS(268), - [anon_sym_GT_EQ] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_LT_GT] = ACTIONS(268), - [anon_sym_is] = ACTIONS(270), - [anon_sym_lambda] = ACTIONS(620), - [sym_ellipsis] = ACTIONS(622), - [anon_sym_LBRACE] = ACTIONS(624), - [anon_sym_RBRACE] = ACTIONS(268), - [sym_type_conversion] = ACTIONS(268), - [sym_integer] = ACTIONS(626), - [sym_float] = ACTIONS(622), - [anon_sym_await] = ACTIONS(628), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_none] = ACTIONS(626), + [sym_named_expression] = STATE(1427), + [sym__named_expression_lhs] = STATE(2513), + [sym_list_splat_pattern] = STATE(1406), + [sym_as_pattern] = STATE(1427), + [sym_expression] = STATE(1575), + [sym_primary_expression] = STATE(994), + [sym_not_operator] = STATE(1427), + [sym_boolean_operator] = STATE(1427), + [sym_binary_operator] = STATE(1426), + [sym_unary_operator] = STATE(1426), + [sym_comparison_operator] = STATE(1427), + [sym_lambda] = STATE(1427), + [sym_attribute] = STATE(1426), + [sym_subscript] = STATE(1426), + [sym_call] = STATE(1426), + [sym_list] = STATE(1426), + [sym_set] = STATE(1426), + [sym_tuple] = STATE(1426), + [sym_dictionary] = STATE(1426), + [sym_list_comprehension] = STATE(1426), + [sym_dictionary_comprehension] = STATE(1426), + [sym_set_comprehension] = STATE(1426), + [sym_generator_expression] = STATE(1426), + [sym_parenthesized_expression] = STATE(1426), + [sym_conditional_expression] = STATE(1427), + [sym_concatenated_string] = STATE(1426), + [sym_string] = STATE(996), + [sym_await] = STATE(1426), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(348), + [anon_sym_LPAREN] = ACTIONS(308), + [anon_sym_COMMA] = ACTIONS(346), + [anon_sym_as] = ACTIONS(351), + [anon_sym_STAR] = ACTIONS(310), + [anon_sym_print] = ACTIONS(312), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_if] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(346), + [anon_sym_else] = ACTIONS(351), + [anon_sym_match] = ACTIONS(312), + [anon_sym_async] = ACTIONS(312), + [anon_sym_in] = ACTIONS(351), + [anon_sym_STAR_STAR] = ACTIONS(605), + [anon_sym_exec] = ACTIONS(312), + [anon_sym_AT] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_not] = ACTIONS(316), + [anon_sym_and] = ACTIONS(351), + [anon_sym_or] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(320), + [anon_sym_SLASH] = ACTIONS(348), + [anon_sym_PERCENT] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(605), + [anon_sym_PIPE] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_LT_LT] = ACTIONS(605), + [anon_sym_TILDE] = ACTIONS(320), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(346), + [anon_sym_EQ_EQ] = ACTIONS(346), + [anon_sym_BANG_EQ] = ACTIONS(346), + [anon_sym_GT_EQ] = ACTIONS(346), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_LT_GT] = ACTIONS(346), + [anon_sym_is] = ACTIONS(351), + [anon_sym_lambda] = ACTIONS(322), + [sym_ellipsis] = ACTIONS(324), + [anon_sym_LBRACE] = ACTIONS(326), + [sym_integer] = ACTIONS(328), + [sym_float] = ACTIONS(324), + [anon_sym_await] = ACTIONS(330), + [sym_true] = ACTIONS(328), + [sym_false] = ACTIONS(328), + [sym_none] = ACTIONS(328), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(630), + [sym_string_start] = ACTIONS(332), }, [148] = { - [sym_named_expression] = STATE(1343), - [sym__named_expression_lhs] = STATE(2395), - [sym_list_splat_pattern] = STATE(1236), - [sym_as_pattern] = STATE(1343), - [sym_expression] = STATE(1181), - [sym_primary_expression] = STATE(1044), - [sym_not_operator] = STATE(1343), - [sym_boolean_operator] = STATE(1343), - [sym_binary_operator] = STATE(1341), - [sym_unary_operator] = STATE(1341), - [sym_comparison_operator] = STATE(1343), - [sym_lambda] = STATE(1343), - [sym_attribute] = STATE(1341), - [sym_subscript] = STATE(1341), - [sym_call] = STATE(1341), - [sym_list] = STATE(1341), - [sym_set] = STATE(1341), - [sym_tuple] = STATE(1341), - [sym_dictionary] = STATE(1341), - [sym_list_comprehension] = STATE(1341), - [sym_dictionary_comprehension] = STATE(1341), - [sym_set_comprehension] = STATE(1341), - [sym_generator_expression] = STATE(1341), - [sym_parenthesized_expression] = STATE(1341), - [sym_conditional_expression] = STATE(1343), - [sym_concatenated_string] = STATE(1341), - [sym_string] = STATE(1032), - [sym_await] = STATE(1341), - [sym_identifier] = ACTIONS(606), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(608), - [anon_sym_COMMA] = ACTIONS(268), - [anon_sym_as] = ACTIONS(270), - [anon_sym_STAR] = ACTIONS(610), - [anon_sym_print] = ACTIONS(612), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_COLON_EQ] = ACTIONS(285), - [anon_sym_if] = ACTIONS(270), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_match] = ACTIONS(612), - [anon_sym_async] = ACTIONS(612), - [anon_sym_in] = ACTIONS(270), - [anon_sym_STAR_STAR] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(612), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(614), - [anon_sym_EQ] = ACTIONS(270), - [anon_sym_not] = ACTIONS(616), - [anon_sym_and] = ACTIONS(270), - [anon_sym_or] = ACTIONS(270), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(268), - [anon_sym_CARET] = ACTIONS(268), - [anon_sym_LT_LT] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_LT_EQ] = ACTIONS(268), - [anon_sym_EQ_EQ] = ACTIONS(268), - [anon_sym_BANG_EQ] = ACTIONS(268), - [anon_sym_GT_EQ] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_LT_GT] = ACTIONS(268), - [anon_sym_is] = ACTIONS(270), - [anon_sym_lambda] = ACTIONS(620), - [sym_ellipsis] = ACTIONS(622), - [anon_sym_LBRACE] = ACTIONS(624), - [anon_sym_RBRACE] = ACTIONS(268), - [sym_type_conversion] = ACTIONS(268), - [sym_integer] = ACTIONS(626), - [sym_float] = ACTIONS(622), - [anon_sym_await] = ACTIONS(628), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_none] = ACTIONS(626), + [sym_named_expression] = STATE(1321), + [sym__named_expression_lhs] = STATE(2404), + [sym_list_splat_pattern] = STATE(1304), + [sym_as_pattern] = STATE(1321), + [sym_expression] = STATE(1358), + [sym_primary_expression] = STATE(1033), + [sym_not_operator] = STATE(1321), + [sym_boolean_operator] = STATE(1321), + [sym_binary_operator] = STATE(1316), + [sym_unary_operator] = STATE(1316), + [sym_comparison_operator] = STATE(1321), + [sym_lambda] = STATE(1321), + [sym_attribute] = STATE(1316), + [sym_subscript] = STATE(1316), + [sym_call] = STATE(1316), + [sym_list] = STATE(1316), + [sym_set] = STATE(1316), + [sym_tuple] = STATE(1316), + [sym_dictionary] = STATE(1316), + [sym_list_comprehension] = STATE(1316), + [sym_dictionary_comprehension] = STATE(1316), + [sym_set_comprehension] = STATE(1316), + [sym_generator_expression] = STATE(1316), + [sym_parenthesized_expression] = STATE(1316), + [sym_conditional_expression] = STATE(1321), + [sym_concatenated_string] = STATE(1316), + [sym_string] = STATE(1036), + [sym_await] = STATE(1316), + [sym_identifier] = ACTIONS(638), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(640), + [anon_sym_RPAREN] = ACTIONS(272), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_as] = ACTIONS(274), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_print] = ACTIONS(644), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_COLON_EQ] = ACTIONS(289), + [anon_sym_if] = ACTIONS(274), + [anon_sym_match] = ACTIONS(644), + [anon_sym_async] = ACTIONS(644), + [anon_sym_for] = ACTIONS(274), + [anon_sym_in] = ACTIONS(274), + [anon_sym_STAR_STAR] = ACTIONS(272), + [anon_sym_exec] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_not] = ACTIONS(650), + [anon_sym_and] = ACTIONS(274), + [anon_sym_or] = ACTIONS(274), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_SLASH_SLASH] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(272), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_LT_EQ] = ACTIONS(272), + [anon_sym_EQ_EQ] = ACTIONS(272), + [anon_sym_BANG_EQ] = ACTIONS(272), + [anon_sym_GT_EQ] = ACTIONS(272), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_LT_GT] = ACTIONS(272), + [anon_sym_is] = ACTIONS(274), + [anon_sym_lambda] = ACTIONS(654), + [sym_ellipsis] = ACTIONS(656), + [anon_sym_LBRACE] = ACTIONS(658), + [sym_integer] = ACTIONS(660), + [sym_float] = ACTIONS(656), + [anon_sym_await] = ACTIONS(662), + [sym_true] = ACTIONS(660), + [sym_false] = ACTIONS(660), + [sym_none] = ACTIONS(660), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(630), + [sym_string_start] = ACTIONS(664), }, [149] = { - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2411), - [sym_list_splat_pattern] = STATE(1172), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1300), - [sym_primary_expression] = STATE(1046), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_attribute] = STATE(1344), - [sym_subscript] = STATE(1344), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [sym_identifier] = ACTIONS(266), - [anon_sym_SEMI] = ACTIONS(268), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_from] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(302), - [anon_sym_COMMA] = ACTIONS(268), - [anon_sym_as] = ACTIONS(270), - [anon_sym_STAR] = ACTIONS(304), - [anon_sym_print] = ACTIONS(281), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_COLON_EQ] = ACTIONS(285), - [anon_sym_if] = ACTIONS(270), - [anon_sym_match] = ACTIONS(281), - [anon_sym_async] = ACTIONS(281), - [anon_sym_in] = ACTIONS(270), - [anon_sym_STAR_STAR] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(281), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(306), - [anon_sym_EQ] = ACTIONS(270), - [anon_sym_not] = ACTIONS(308), - [anon_sym_and] = ACTIONS(270), - [anon_sym_or] = ACTIONS(270), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(268), - [anon_sym_CARET] = ACTIONS(268), - [anon_sym_LT_LT] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_LT_EQ] = ACTIONS(268), - [anon_sym_EQ_EQ] = ACTIONS(268), - [anon_sym_BANG_EQ] = ACTIONS(268), - [anon_sym_GT_EQ] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_LT_GT] = ACTIONS(268), - [anon_sym_is] = ACTIONS(270), - [anon_sym_lambda] = ACTIONS(312), - [sym_ellipsis] = ACTIONS(71), - [anon_sym_LBRACE] = ACTIONS(73), - [sym_integer] = ACTIONS(75), - [sym_float] = ACTIONS(71), - [anon_sym_await] = ACTIONS(300), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_none] = ACTIONS(75), + [sym_named_expression] = STATE(1427), + [sym__named_expression_lhs] = STATE(2513), + [sym_list_splat_pattern] = STATE(1406), + [sym_as_pattern] = STATE(1427), + [sym_expression] = STATE(1575), + [sym_primary_expression] = STATE(994), + [sym_not_operator] = STATE(1427), + [sym_boolean_operator] = STATE(1427), + [sym_binary_operator] = STATE(1426), + [sym_unary_operator] = STATE(1426), + [sym_comparison_operator] = STATE(1427), + [sym_lambda] = STATE(1427), + [sym_attribute] = STATE(1426), + [sym_subscript] = STATE(1426), + [sym_call] = STATE(1426), + [sym_list] = STATE(1426), + [sym_set] = STATE(1426), + [sym_tuple] = STATE(1426), + [sym_dictionary] = STATE(1426), + [sym_list_comprehension] = STATE(1426), + [sym_dictionary_comprehension] = STATE(1426), + [sym_set_comprehension] = STATE(1426), + [sym_generator_expression] = STATE(1426), + [sym_parenthesized_expression] = STATE(1426), + [sym_conditional_expression] = STATE(1427), + [sym_concatenated_string] = STATE(1426), + [sym_string] = STATE(996), + [sym_await] = STATE(1426), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(348), + [anon_sym_LPAREN] = ACTIONS(308), + [anon_sym_RPAREN] = ACTIONS(346), + [anon_sym_COMMA] = ACTIONS(346), + [anon_sym_as] = ACTIONS(351), + [anon_sym_STAR] = ACTIONS(310), + [anon_sym_print] = ACTIONS(312), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_if] = ACTIONS(351), + [anon_sym_match] = ACTIONS(312), + [anon_sym_async] = ACTIONS(312), + [anon_sym_for] = ACTIONS(351), + [anon_sym_in] = ACTIONS(351), + [anon_sym_STAR_STAR] = ACTIONS(605), + [anon_sym_exec] = ACTIONS(312), + [anon_sym_AT] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_not] = ACTIONS(316), + [anon_sym_and] = ACTIONS(351), + [anon_sym_or] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(320), + [anon_sym_SLASH] = ACTIONS(348), + [anon_sym_PERCENT] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(605), + [anon_sym_PIPE] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_LT_LT] = ACTIONS(605), + [anon_sym_TILDE] = ACTIONS(320), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(346), + [anon_sym_EQ_EQ] = ACTIONS(346), + [anon_sym_BANG_EQ] = ACTIONS(346), + [anon_sym_GT_EQ] = ACTIONS(346), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_LT_GT] = ACTIONS(346), + [anon_sym_is] = ACTIONS(351), + [anon_sym_lambda] = ACTIONS(322), + [sym_ellipsis] = ACTIONS(324), + [anon_sym_LBRACE] = ACTIONS(326), + [sym_integer] = ACTIONS(328), + [sym_float] = ACTIONS(324), + [anon_sym_await] = ACTIONS(330), + [sym_true] = ACTIONS(328), + [sym_false] = ACTIONS(328), + [sym_none] = ACTIONS(328), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(268), - [sym_string_start] = ACTIONS(79), + [sym_string_start] = ACTIONS(332), }, [150] = { - [sym_named_expression] = STATE(1456), - [sym__named_expression_lhs] = STATE(2379), - [sym_list_splat_pattern] = STATE(1366), - [sym_as_pattern] = STATE(1456), - [sym_expression] = STATE(1638), - [sym_primary_expression] = STATE(1079), - [sym_not_operator] = STATE(1456), - [sym_boolean_operator] = STATE(1456), - [sym_binary_operator] = STATE(1455), - [sym_unary_operator] = STATE(1455), - [sym_comparison_operator] = STATE(1456), - [sym_lambda] = STATE(1456), - [sym_attribute] = STATE(1455), - [sym_subscript] = STATE(1455), - [sym_call] = STATE(1455), - [sym_list] = STATE(1455), - [sym_set] = STATE(1455), - [sym_tuple] = STATE(1455), - [sym_dictionary] = STATE(1455), - [sym_list_comprehension] = STATE(1455), - [sym_dictionary_comprehension] = STATE(1455), - [sym_set_comprehension] = STATE(1455), - [sym_generator_expression] = STATE(1455), - [sym_parenthesized_expression] = STATE(1455), - [sym_conditional_expression] = STATE(1456), - [sym_concatenated_string] = STATE(1455), - [sym_string] = STATE(1071), - [sym_await] = STATE(1455), - [sym_identifier] = ACTIONS(314), - [anon_sym_SEMI] = ACTIONS(298), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_COMMA] = ACTIONS(298), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_print] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(270), - [anon_sym_COLON] = ACTIONS(298), - [anon_sym_match] = ACTIONS(320), - [anon_sym_async] = ACTIONS(320), - [anon_sym_STAR_STAR] = ACTIONS(270), - [anon_sym_exec] = ACTIONS(320), - [anon_sym_AT] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_EQ] = ACTIONS(298), - [anon_sym_not] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(270), - [anon_sym_SLASH_SLASH] = ACTIONS(270), - [anon_sym_PIPE] = ACTIONS(270), - [anon_sym_AMP] = ACTIONS(270), - [anon_sym_CARET] = ACTIONS(270), - [anon_sym_LT_LT] = ACTIONS(270), - [anon_sym_TILDE] = ACTIONS(328), - [anon_sym_lambda] = ACTIONS(330), - [anon_sym_PLUS_EQ] = ACTIONS(298), - [anon_sym_DASH_EQ] = ACTIONS(298), - [anon_sym_STAR_EQ] = ACTIONS(298), - [anon_sym_SLASH_EQ] = ACTIONS(298), - [anon_sym_AT_EQ] = ACTIONS(298), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(298), - [anon_sym_PERCENT_EQ] = ACTIONS(298), - [anon_sym_STAR_STAR_EQ] = ACTIONS(298), - [anon_sym_GT_GT_EQ] = ACTIONS(298), - [anon_sym_LT_LT_EQ] = ACTIONS(298), - [anon_sym_AMP_EQ] = ACTIONS(298), - [anon_sym_CARET_EQ] = ACTIONS(298), - [anon_sym_PIPE_EQ] = ACTIONS(298), - [sym_ellipsis] = ACTIONS(332), - [anon_sym_LBRACE] = ACTIONS(334), - [sym_integer] = ACTIONS(336), - [sym_float] = ACTIONS(332), - [anon_sym_await] = ACTIONS(338), - [sym_true] = ACTIONS(336), - [sym_false] = ACTIONS(336), - [sym_none] = ACTIONS(336), + [sym_named_expression] = STATE(1402), + [sym__named_expression_lhs] = STATE(2365), + [sym_list_splat_pattern] = STATE(1381), + [sym_as_pattern] = STATE(1402), + [sym_expression] = STATE(1327), + [sym_primary_expression] = STATE(1034), + [sym_not_operator] = STATE(1402), + [sym_boolean_operator] = STATE(1402), + [sym_binary_operator] = STATE(1403), + [sym_unary_operator] = STATE(1403), + [sym_comparison_operator] = STATE(1402), + [sym_lambda] = STATE(1402), + [sym_attribute] = STATE(1403), + [sym_subscript] = STATE(1403), + [sym_call] = STATE(1403), + [sym_list] = STATE(1403), + [sym_set] = STATE(1403), + [sym_tuple] = STATE(1403), + [sym_dictionary] = STATE(1403), + [sym_list_comprehension] = STATE(1403), + [sym_dictionary_comprehension] = STATE(1403), + [sym_set_comprehension] = STATE(1403), + [sym_generator_expression] = STATE(1403), + [sym_parenthesized_expression] = STATE(1403), + [sym_conditional_expression] = STATE(1402), + [sym_concatenated_string] = STATE(1403), + [sym_string] = STATE(1012), + [sym_await] = STATE(1403), + [sym_identifier] = ACTIONS(666), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(668), + [anon_sym_COMMA] = ACTIONS(279), + [anon_sym_as] = ACTIONS(274), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_print] = ACTIONS(672), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_COLON_EQ] = ACTIONS(289), + [anon_sym_if] = ACTIONS(274), + [anon_sym_match] = ACTIONS(672), + [anon_sym_async] = ACTIONS(672), + [anon_sym_for] = ACTIONS(274), + [anon_sym_in] = ACTIONS(274), + [anon_sym_STAR_STAR] = ACTIONS(272), + [anon_sym_exec] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(674), + [anon_sym_RBRACK] = ACTIONS(279), + [anon_sym_not] = ACTIONS(676), + [anon_sym_and] = ACTIONS(274), + [anon_sym_or] = ACTIONS(274), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_SLASH_SLASH] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(272), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_LT_EQ] = ACTIONS(272), + [anon_sym_EQ_EQ] = ACTIONS(272), + [anon_sym_BANG_EQ] = ACTIONS(272), + [anon_sym_GT_EQ] = ACTIONS(272), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_LT_GT] = ACTIONS(272), + [anon_sym_is] = ACTIONS(274), + [anon_sym_lambda] = ACTIONS(680), + [sym_ellipsis] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(684), + [sym_integer] = ACTIONS(686), + [sym_float] = ACTIONS(682), + [anon_sym_await] = ACTIONS(688), + [sym_true] = ACTIONS(686), + [sym_false] = ACTIONS(686), + [sym_none] = ACTIONS(686), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(298), - [sym_string_start] = ACTIONS(340), + [sym_string_start] = ACTIONS(690), }, [151] = { - [sym_named_expression] = STATE(1343), - [sym__named_expression_lhs] = STATE(2395), - [sym_list_splat_pattern] = STATE(1236), - [sym_as_pattern] = STATE(1343), - [sym_expression] = STATE(1181), - [sym_primary_expression] = STATE(1044), - [sym_not_operator] = STATE(1343), - [sym_boolean_operator] = STATE(1343), - [sym_binary_operator] = STATE(1341), - [sym_unary_operator] = STATE(1341), - [sym_comparison_operator] = STATE(1343), - [sym_lambda] = STATE(1343), - [sym_attribute] = STATE(1341), - [sym_subscript] = STATE(1341), - [sym_call] = STATE(1341), - [sym_list] = STATE(1341), - [sym_set] = STATE(1341), - [sym_tuple] = STATE(1341), - [sym_dictionary] = STATE(1341), - [sym_list_comprehension] = STATE(1341), - [sym_dictionary_comprehension] = STATE(1341), - [sym_set_comprehension] = STATE(1341), - [sym_generator_expression] = STATE(1341), - [sym_parenthesized_expression] = STATE(1341), - [sym_conditional_expression] = STATE(1343), - [sym_concatenated_string] = STATE(1341), - [sym_string] = STATE(1032), - [sym_await] = STATE(1341), - [sym_identifier] = ACTIONS(606), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(608), - [anon_sym_COMMA] = ACTIONS(268), - [anon_sym_as] = ACTIONS(270), - [anon_sym_STAR] = ACTIONS(610), - [anon_sym_print] = ACTIONS(612), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_COLON] = ACTIONS(268), - [anon_sym_match] = ACTIONS(612), - [anon_sym_async] = ACTIONS(612), - [anon_sym_in] = ACTIONS(270), - [anon_sym_STAR_STAR] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(612), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(614), - [anon_sym_EQ] = ACTIONS(270), - [anon_sym_not] = ACTIONS(616), - [anon_sym_and] = ACTIONS(270), - [anon_sym_or] = ACTIONS(270), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(268), - [anon_sym_CARET] = ACTIONS(268), - [anon_sym_LT_LT] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_LT_EQ] = ACTIONS(268), - [anon_sym_EQ_EQ] = ACTIONS(268), - [anon_sym_BANG_EQ] = ACTIONS(268), - [anon_sym_GT_EQ] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_LT_GT] = ACTIONS(268), - [anon_sym_is] = ACTIONS(270), - [anon_sym_lambda] = ACTIONS(620), - [sym_ellipsis] = ACTIONS(622), - [anon_sym_LBRACE] = ACTIONS(624), - [anon_sym_RBRACE] = ACTIONS(268), - [sym_type_conversion] = ACTIONS(268), - [sym_integer] = ACTIONS(626), - [sym_float] = ACTIONS(622), - [anon_sym_await] = ACTIONS(628), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_none] = ACTIONS(626), + [sym_named_expression] = STATE(1470), + [sym__named_expression_lhs] = STATE(2380), + [sym_list_splat_pattern] = STATE(1456), + [sym_as_pattern] = STATE(1470), + [sym_expression] = STATE(1504), + [sym_primary_expression] = STATE(1102), + [sym_not_operator] = STATE(1470), + [sym_boolean_operator] = STATE(1470), + [sym_binary_operator] = STATE(1469), + [sym_unary_operator] = STATE(1469), + [sym_comparison_operator] = STATE(1470), + [sym_lambda] = STATE(1470), + [sym_attribute] = STATE(1469), + [sym_subscript] = STATE(1469), + [sym_call] = STATE(1469), + [sym_list] = STATE(1469), + [sym_set] = STATE(1469), + [sym_tuple] = STATE(1469), + [sym_dictionary] = STATE(1469), + [sym_list_comprehension] = STATE(1469), + [sym_dictionary_comprehension] = STATE(1469), + [sym_set_comprehension] = STATE(1469), + [sym_generator_expression] = STATE(1469), + [sym_parenthesized_expression] = STATE(1469), + [sym_conditional_expression] = STATE(1470), + [sym_concatenated_string] = STATE(1469), + [sym_string] = STATE(1062), + [sym_await] = STATE(1469), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(348), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_RPAREN] = ACTIONS(605), + [anon_sym_COMMA] = ACTIONS(605), + [anon_sym_as] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(696), + [anon_sym_print] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_COLON_EQ] = ACTIONS(289), + [anon_sym_if] = ACTIONS(348), + [anon_sym_match] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_for] = ACTIONS(351), + [anon_sym_in] = ACTIONS(348), + [anon_sym_STAR_STAR] = ACTIONS(605), + [anon_sym_exec] = ACTIONS(698), + [anon_sym_AT] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(700), + [anon_sym_not] = ACTIONS(702), + [anon_sym_and] = ACTIONS(348), + [anon_sym_or] = ACTIONS(348), + [anon_sym_PLUS] = ACTIONS(704), + [anon_sym_DASH] = ACTIONS(704), + [anon_sym_SLASH] = ACTIONS(348), + [anon_sym_PERCENT] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(605), + [anon_sym_PIPE] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_LT_LT] = ACTIONS(605), + [anon_sym_TILDE] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(348), + [anon_sym_LT_EQ] = ACTIONS(605), + [anon_sym_EQ_EQ] = ACTIONS(605), + [anon_sym_BANG_EQ] = ACTIONS(605), + [anon_sym_GT_EQ] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(348), + [anon_sym_LT_GT] = ACTIONS(605), + [anon_sym_is] = ACTIONS(348), + [anon_sym_lambda] = ACTIONS(706), + [sym_ellipsis] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [sym_integer] = ACTIONS(712), + [sym_float] = ACTIONS(708), + [anon_sym_await] = ACTIONS(714), + [sym_true] = ACTIONS(712), + [sym_false] = ACTIONS(712), + [sym_none] = ACTIONS(712), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(630), + [sym_string_start] = ACTIONS(716), }, [152] = { - [sym_named_expression] = STATE(1278), - [sym__named_expression_lhs] = STATE(2390), - [sym_list_splat_pattern] = STATE(1338), - [sym_as_pattern] = STATE(1278), - [sym_expression] = STATE(1276), - [sym_primary_expression] = STATE(1045), - [sym_not_operator] = STATE(1278), - [sym_boolean_operator] = STATE(1278), - [sym_binary_operator] = STATE(1277), - [sym_unary_operator] = STATE(1277), - [sym_comparison_operator] = STATE(1278), - [sym_lambda] = STATE(1278), - [sym_attribute] = STATE(1277), - [sym_subscript] = STATE(1277), - [sym_call] = STATE(1277), - [sym_list] = STATE(1277), - [sym_set] = STATE(1277), - [sym_tuple] = STATE(1277), - [sym_dictionary] = STATE(1277), - [sym_list_comprehension] = STATE(1277), - [sym_dictionary_comprehension] = STATE(1277), - [sym_set_comprehension] = STATE(1277), - [sym_generator_expression] = STATE(1277), - [sym_parenthesized_expression] = STATE(1277), - [sym_conditional_expression] = STATE(1278), - [sym_concatenated_string] = STATE(1277), - [sym_string] = STATE(1037), - [sym_await] = STATE(1277), - [sym_identifier] = ACTIONS(632), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(634), - [anon_sym_COMMA] = ACTIONS(268), - [anon_sym_as] = ACTIONS(270), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_print] = ACTIONS(638), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_COLON_EQ] = ACTIONS(285), - [anon_sym_if] = ACTIONS(270), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_match] = ACTIONS(638), - [anon_sym_async] = ACTIONS(638), - [anon_sym_for] = ACTIONS(270), - [anon_sym_in] = ACTIONS(270), - [anon_sym_STAR_STAR] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(640), - [anon_sym_not] = ACTIONS(642), - [anon_sym_and] = ACTIONS(270), - [anon_sym_or] = ACTIONS(270), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(268), - [anon_sym_CARET] = ACTIONS(268), - [anon_sym_LT_LT] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(644), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_LT_EQ] = ACTIONS(268), - [anon_sym_EQ_EQ] = ACTIONS(268), - [anon_sym_BANG_EQ] = ACTIONS(268), - [anon_sym_GT_EQ] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_LT_GT] = ACTIONS(268), - [anon_sym_is] = ACTIONS(270), - [anon_sym_lambda] = ACTIONS(646), - [sym_ellipsis] = ACTIONS(648), - [anon_sym_LBRACE] = ACTIONS(650), - [anon_sym_RBRACE] = ACTIONS(268), - [sym_integer] = ACTIONS(652), - [sym_float] = ACTIONS(648), - [anon_sym_await] = ACTIONS(654), - [sym_true] = ACTIONS(652), - [sym_false] = ACTIONS(652), - [sym_none] = ACTIONS(652), + [sym_named_expression] = STATE(1321), + [sym__named_expression_lhs] = STATE(2404), + [sym_list_splat_pattern] = STATE(1304), + [sym_as_pattern] = STATE(1321), + [sym_expression] = STATE(1358), + [sym_primary_expression] = STATE(1033), + [sym_not_operator] = STATE(1321), + [sym_boolean_operator] = STATE(1321), + [sym_binary_operator] = STATE(1316), + [sym_unary_operator] = STATE(1316), + [sym_comparison_operator] = STATE(1321), + [sym_lambda] = STATE(1321), + [sym_attribute] = STATE(1316), + [sym_subscript] = STATE(1316), + [sym_call] = STATE(1316), + [sym_list] = STATE(1316), + [sym_set] = STATE(1316), + [sym_tuple] = STATE(1316), + [sym_dictionary] = STATE(1316), + [sym_list_comprehension] = STATE(1316), + [sym_dictionary_comprehension] = STATE(1316), + [sym_set_comprehension] = STATE(1316), + [sym_generator_expression] = STATE(1316), + [sym_parenthesized_expression] = STATE(1316), + [sym_conditional_expression] = STATE(1321), + [sym_concatenated_string] = STATE(1316), + [sym_string] = STATE(1036), + [sym_await] = STATE(1316), + [sym_identifier] = ACTIONS(638), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(640), + [anon_sym_RPAREN] = ACTIONS(279), + [anon_sym_COMMA] = ACTIONS(279), + [anon_sym_as] = ACTIONS(274), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_print] = ACTIONS(644), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_COLON_EQ] = ACTIONS(289), + [anon_sym_if] = ACTIONS(274), + [anon_sym_match] = ACTIONS(644), + [anon_sym_async] = ACTIONS(644), + [anon_sym_for] = ACTIONS(274), + [anon_sym_in] = ACTIONS(274), + [anon_sym_STAR_STAR] = ACTIONS(272), + [anon_sym_exec] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_not] = ACTIONS(650), + [anon_sym_and] = ACTIONS(274), + [anon_sym_or] = ACTIONS(274), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_SLASH_SLASH] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(272), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_LT_EQ] = ACTIONS(272), + [anon_sym_EQ_EQ] = ACTIONS(272), + [anon_sym_BANG_EQ] = ACTIONS(272), + [anon_sym_GT_EQ] = ACTIONS(272), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_LT_GT] = ACTIONS(272), + [anon_sym_is] = ACTIONS(274), + [anon_sym_lambda] = ACTIONS(654), + [sym_ellipsis] = ACTIONS(656), + [anon_sym_LBRACE] = ACTIONS(658), + [sym_integer] = ACTIONS(660), + [sym_float] = ACTIONS(656), + [anon_sym_await] = ACTIONS(662), + [sym_true] = ACTIONS(660), + [sym_false] = ACTIONS(660), + [sym_none] = ACTIONS(660), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(656), + [sym_string_start] = ACTIONS(664), }, [153] = { - [sym_named_expression] = STATE(1454), - [sym__named_expression_lhs] = STATE(2415), - [sym_list_splat_pattern] = STATE(1407), - [sym_as_pattern] = STATE(1454), - [sym_expression] = STATE(1372), - [sym_primary_expression] = STATE(1098), - [sym_not_operator] = STATE(1454), - [sym_boolean_operator] = STATE(1454), - [sym_binary_operator] = STATE(1385), - [sym_unary_operator] = STATE(1385), - [sym_comparison_operator] = STATE(1454), - [sym_lambda] = STATE(1454), - [sym_attribute] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_call] = STATE(1385), - [sym_list] = STATE(1385), - [sym_set] = STATE(1385), - [sym_tuple] = STATE(1385), - [sym_dictionary] = STATE(1385), - [sym_list_comprehension] = STATE(1385), - [sym_dictionary_comprehension] = STATE(1385), - [sym_set_comprehension] = STATE(1385), - [sym_generator_expression] = STATE(1385), - [sym_parenthesized_expression] = STATE(1385), - [sym_conditional_expression] = STATE(1454), - [sym_concatenated_string] = STATE(1385), - [sym_string] = STATE(1095), - [sym_await] = STATE(1385), - [sym_identifier] = ACTIONS(658), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(660), - [anon_sym_RPAREN] = ACTIONS(268), - [anon_sym_COMMA] = ACTIONS(268), - [anon_sym_as] = ACTIONS(270), - [anon_sym_STAR] = ACTIONS(662), - [anon_sym_print] = ACTIONS(664), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_COLON_EQ] = ACTIONS(285), - [anon_sym_if] = ACTIONS(270), - [anon_sym_match] = ACTIONS(664), - [anon_sym_async] = ACTIONS(664), - [anon_sym_for] = ACTIONS(270), - [anon_sym_in] = ACTIONS(270), - [anon_sym_STAR_STAR] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(664), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(666), - [anon_sym_EQ] = ACTIONS(668), - [anon_sym_not] = ACTIONS(670), - [anon_sym_and] = ACTIONS(270), - [anon_sym_or] = ACTIONS(270), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(268), - [anon_sym_CARET] = ACTIONS(268), - [anon_sym_LT_LT] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(672), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_LT_EQ] = ACTIONS(268), - [anon_sym_EQ_EQ] = ACTIONS(268), - [anon_sym_BANG_EQ] = ACTIONS(268), - [anon_sym_GT_EQ] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_LT_GT] = ACTIONS(268), - [anon_sym_is] = ACTIONS(270), - [anon_sym_lambda] = ACTIONS(674), - [sym_ellipsis] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(678), - [sym_integer] = ACTIONS(680), - [sym_float] = ACTIONS(676), - [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_none] = ACTIONS(680), + [sym_named_expression] = STATE(1470), + [sym__named_expression_lhs] = STATE(2380), + [sym_list_splat_pattern] = STATE(1456), + [sym_as_pattern] = STATE(1470), + [sym_expression] = STATE(1504), + [sym_primary_expression] = STATE(1102), + [sym_not_operator] = STATE(1470), + [sym_boolean_operator] = STATE(1470), + [sym_binary_operator] = STATE(1469), + [sym_unary_operator] = STATE(1469), + [sym_comparison_operator] = STATE(1470), + [sym_lambda] = STATE(1470), + [sym_attribute] = STATE(1469), + [sym_subscript] = STATE(1469), + [sym_call] = STATE(1469), + [sym_list] = STATE(1469), + [sym_set] = STATE(1469), + [sym_tuple] = STATE(1469), + [sym_dictionary] = STATE(1469), + [sym_list_comprehension] = STATE(1469), + [sym_dictionary_comprehension] = STATE(1469), + [sym_set_comprehension] = STATE(1469), + [sym_generator_expression] = STATE(1469), + [sym_parenthesized_expression] = STATE(1469), + [sym_conditional_expression] = STATE(1470), + [sym_concatenated_string] = STATE(1469), + [sym_string] = STATE(1062), + [sym_await] = STATE(1469), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_RPAREN] = ACTIONS(272), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_as] = ACTIONS(274), + [anon_sym_STAR] = ACTIONS(696), + [anon_sym_print] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_COLON_EQ] = ACTIONS(289), + [anon_sym_if] = ACTIONS(274), + [anon_sym_match] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_in] = ACTIONS(274), + [anon_sym_STAR_STAR] = ACTIONS(272), + [anon_sym_exec] = ACTIONS(698), + [anon_sym_AT] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(700), + [anon_sym_EQ] = ACTIONS(648), + [anon_sym_not] = ACTIONS(702), + [anon_sym_and] = ACTIONS(274), + [anon_sym_or] = ACTIONS(274), + [anon_sym_PLUS] = ACTIONS(704), + [anon_sym_DASH] = ACTIONS(704), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_SLASH_SLASH] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(272), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_LT_EQ] = ACTIONS(272), + [anon_sym_EQ_EQ] = ACTIONS(272), + [anon_sym_BANG_EQ] = ACTIONS(272), + [anon_sym_GT_EQ] = ACTIONS(272), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_LT_GT] = ACTIONS(272), + [anon_sym_is] = ACTIONS(274), + [anon_sym_lambda] = ACTIONS(706), + [sym_ellipsis] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [sym_integer] = ACTIONS(712), + [sym_float] = ACTIONS(708), + [anon_sym_await] = ACTIONS(714), + [sym_true] = ACTIONS(712), + [sym_false] = ACTIONS(712), + [sym_none] = ACTIONS(712), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(684), + [sym_string_start] = ACTIONS(716), }, [154] = { - [sym_named_expression] = STATE(1456), - [sym__named_expression_lhs] = STATE(2366), - [sym_list_splat_pattern] = STATE(1366), - [sym_as_pattern] = STATE(1456), - [sym_expression] = STATE(1490), - [sym_primary_expression] = STATE(1048), - [sym_not_operator] = STATE(1456), - [sym_boolean_operator] = STATE(1456), - [sym_binary_operator] = STATE(1455), - [sym_unary_operator] = STATE(1455), - [sym_comparison_operator] = STATE(1456), - [sym_lambda] = STATE(1456), - [sym_attribute] = STATE(1455), - [sym_subscript] = STATE(1455), - [sym_call] = STATE(1455), - [sym_list] = STATE(1455), - [sym_set] = STATE(1455), - [sym_tuple] = STATE(1455), - [sym_dictionary] = STATE(1455), - [sym_list_comprehension] = STATE(1455), - [sym_dictionary_comprehension] = STATE(1455), - [sym_set_comprehension] = STATE(1455), - [sym_generator_expression] = STATE(1455), - [sym_parenthesized_expression] = STATE(1455), - [sym_conditional_expression] = STATE(1456), - [sym_concatenated_string] = STATE(1455), - [sym_string] = STATE(1071), - [sym_await] = STATE(1455), - [sym_identifier] = ACTIONS(314), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_COMMA] = ACTIONS(268), - [anon_sym_as] = ACTIONS(270), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_print] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_COLON_EQ] = ACTIONS(285), - [anon_sym_if] = ACTIONS(270), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_else] = ACTIONS(270), - [anon_sym_match] = ACTIONS(320), - [anon_sym_async] = ACTIONS(320), - [anon_sym_in] = ACTIONS(270), - [anon_sym_STAR_STAR] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(320), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_EQ] = ACTIONS(270), - [anon_sym_not] = ACTIONS(686), - [anon_sym_and] = ACTIONS(270), - [anon_sym_or] = ACTIONS(270), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(268), - [anon_sym_CARET] = ACTIONS(268), - [anon_sym_LT_LT] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_LT_EQ] = ACTIONS(268), - [anon_sym_EQ_EQ] = ACTIONS(268), - [anon_sym_BANG_EQ] = ACTIONS(268), - [anon_sym_GT_EQ] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_LT_GT] = ACTIONS(268), - [anon_sym_is] = ACTIONS(270), - [anon_sym_lambda] = ACTIONS(688), - [sym_ellipsis] = ACTIONS(332), - [anon_sym_LBRACE] = ACTIONS(334), - [sym_integer] = ACTIONS(336), - [sym_float] = ACTIONS(332), - [anon_sym_await] = ACTIONS(338), - [sym_true] = ACTIONS(336), - [sym_false] = ACTIONS(336), - [sym_none] = ACTIONS(336), + [sym_named_expression] = STATE(1262), + [sym__named_expression_lhs] = STATE(2370), + [sym_list_splat_pattern] = STATE(1238), + [sym_as_pattern] = STATE(1262), + [sym_expression] = STATE(1155), + [sym_primary_expression] = STATE(981), + [sym_not_operator] = STATE(1262), + [sym_boolean_operator] = STATE(1262), + [sym_binary_operator] = STATE(1261), + [sym_unary_operator] = STATE(1261), + [sym_comparison_operator] = STATE(1262), + [sym_lambda] = STATE(1262), + [sym_attribute] = STATE(1261), + [sym_subscript] = STATE(1261), + [sym_call] = STATE(1261), + [sym_list] = STATE(1261), + [sym_set] = STATE(1261), + [sym_tuple] = STATE(1261), + [sym_dictionary] = STATE(1261), + [sym_list_comprehension] = STATE(1261), + [sym_dictionary_comprehension] = STATE(1261), + [sym_set_comprehension] = STATE(1261), + [sym_generator_expression] = STATE(1261), + [sym_parenthesized_expression] = STATE(1261), + [sym_conditional_expression] = STATE(1262), + [sym_concatenated_string] = STATE(1261), + [sym_string] = STATE(975), + [sym_await] = STATE(1261), + [sym_identifier] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_as] = ACTIONS(274), + [anon_sym_STAR] = ACTIONS(616), + [anon_sym_print] = ACTIONS(618), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_if] = ACTIONS(274), + [anon_sym_COLON] = ACTIONS(272), + [anon_sym_match] = ACTIONS(618), + [anon_sym_async] = ACTIONS(618), + [anon_sym_for] = ACTIONS(274), + [anon_sym_in] = ACTIONS(274), + [anon_sym_STAR_STAR] = ACTIONS(272), + [anon_sym_exec] = ACTIONS(618), + [anon_sym_AT] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(620), + [anon_sym_not] = ACTIONS(622), + [anon_sym_and] = ACTIONS(274), + [anon_sym_or] = ACTIONS(274), + [anon_sym_PLUS] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(624), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_SLASH_SLASH] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(272), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_LT_EQ] = ACTIONS(272), + [anon_sym_EQ_EQ] = ACTIONS(272), + [anon_sym_BANG_EQ] = ACTIONS(272), + [anon_sym_GT_EQ] = ACTIONS(272), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_LT_GT] = ACTIONS(272), + [anon_sym_is] = ACTIONS(274), + [anon_sym_lambda] = ACTIONS(626), + [sym_ellipsis] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_RBRACE] = ACTIONS(272), + [sym_integer] = ACTIONS(632), + [sym_float] = ACTIONS(628), + [anon_sym_await] = ACTIONS(634), + [sym_true] = ACTIONS(632), + [sym_false] = ACTIONS(632), + [sym_none] = ACTIONS(632), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(340), + [sym_string_start] = ACTIONS(636), }, [155] = { - [sym_named_expression] = STATE(1456), - [sym__named_expression_lhs] = STATE(2379), - [sym_list_splat_pattern] = STATE(1366), - [sym_as_pattern] = STATE(1456), - [sym_expression] = STATE(1638), - [sym_primary_expression] = STATE(1079), - [sym_not_operator] = STATE(1456), - [sym_boolean_operator] = STATE(1456), - [sym_binary_operator] = STATE(1455), - [sym_unary_operator] = STATE(1455), - [sym_comparison_operator] = STATE(1456), - [sym_lambda] = STATE(1456), - [sym_attribute] = STATE(1455), - [sym_subscript] = STATE(1455), - [sym_call] = STATE(1455), - [sym_list] = STATE(1455), - [sym_set] = STATE(1455), - [sym_tuple] = STATE(1455), - [sym_dictionary] = STATE(1455), - [sym_list_comprehension] = STATE(1455), - [sym_dictionary_comprehension] = STATE(1455), - [sym_set_comprehension] = STATE(1455), - [sym_generator_expression] = STATE(1455), - [sym_parenthesized_expression] = STATE(1455), - [sym_conditional_expression] = STATE(1456), - [sym_concatenated_string] = STATE(1455), - [sym_string] = STATE(1071), - [sym_await] = STATE(1455), - [sym_identifier] = ACTIONS(314), - [anon_sym_SEMI] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(344), - [anon_sym_from] = ACTIONS(347), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_COMMA] = ACTIONS(342), - [anon_sym_as] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_print] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(603), - [anon_sym_if] = ACTIONS(347), - [anon_sym_match] = ACTIONS(320), - [anon_sym_async] = ACTIONS(320), - [anon_sym_in] = ACTIONS(347), - [anon_sym_STAR_STAR] = ACTIONS(603), - [anon_sym_exec] = ACTIONS(320), - [anon_sym_AT] = ACTIONS(603), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_EQ] = ACTIONS(347), - [anon_sym_not] = ACTIONS(324), - [anon_sym_and] = ACTIONS(347), - [anon_sym_or] = ACTIONS(347), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_SLASH] = ACTIONS(344), - [anon_sym_PERCENT] = ACTIONS(603), - [anon_sym_SLASH_SLASH] = ACTIONS(603), - [anon_sym_PIPE] = ACTIONS(603), - [anon_sym_AMP] = ACTIONS(603), - [anon_sym_CARET] = ACTIONS(603), - [anon_sym_LT_LT] = ACTIONS(603), - [anon_sym_TILDE] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(347), - [anon_sym_LT_EQ] = ACTIONS(342), - [anon_sym_EQ_EQ] = ACTIONS(342), - [anon_sym_BANG_EQ] = ACTIONS(342), - [anon_sym_GT_EQ] = ACTIONS(342), - [anon_sym_GT] = ACTIONS(347), - [anon_sym_LT_GT] = ACTIONS(342), - [anon_sym_is] = ACTIONS(347), - [anon_sym_lambda] = ACTIONS(330), - [sym_ellipsis] = ACTIONS(332), - [anon_sym_LBRACE] = ACTIONS(334), - [sym_integer] = ACTIONS(336), - [sym_float] = ACTIONS(332), - [anon_sym_await] = ACTIONS(338), - [sym_true] = ACTIONS(336), - [sym_false] = ACTIONS(336), - [sym_none] = ACTIONS(336), + [sym_named_expression] = STATE(1470), + [sym__named_expression_lhs] = STATE(2380), + [sym_list_splat_pattern] = STATE(1456), + [sym_as_pattern] = STATE(1470), + [sym_expression] = STATE(1504), + [sym_primary_expression] = STATE(1102), + [sym_not_operator] = STATE(1470), + [sym_boolean_operator] = STATE(1470), + [sym_binary_operator] = STATE(1469), + [sym_unary_operator] = STATE(1469), + [sym_comparison_operator] = STATE(1470), + [sym_lambda] = STATE(1470), + [sym_attribute] = STATE(1469), + [sym_subscript] = STATE(1469), + [sym_call] = STATE(1469), + [sym_list] = STATE(1469), + [sym_set] = STATE(1469), + [sym_tuple] = STATE(1469), + [sym_dictionary] = STATE(1469), + [sym_list_comprehension] = STATE(1469), + [sym_dictionary_comprehension] = STATE(1469), + [sym_set_comprehension] = STATE(1469), + [sym_generator_expression] = STATE(1469), + [sym_parenthesized_expression] = STATE(1469), + [sym_conditional_expression] = STATE(1470), + [sym_concatenated_string] = STATE(1469), + [sym_string] = STATE(1062), + [sym_await] = STATE(1469), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_RPAREN] = ACTIONS(272), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_as] = ACTIONS(274), + [anon_sym_STAR] = ACTIONS(696), + [anon_sym_print] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_COLON_EQ] = ACTIONS(289), + [anon_sym_if] = ACTIONS(274), + [anon_sym_match] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_in] = ACTIONS(274), + [anon_sym_STAR_STAR] = ACTIONS(272), + [anon_sym_exec] = ACTIONS(698), + [anon_sym_AT] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(700), + [anon_sym_EQ] = ACTIONS(274), + [anon_sym_not] = ACTIONS(702), + [anon_sym_and] = ACTIONS(274), + [anon_sym_or] = ACTIONS(274), + [anon_sym_PLUS] = ACTIONS(704), + [anon_sym_DASH] = ACTIONS(704), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_SLASH_SLASH] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(272), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_LT_EQ] = ACTIONS(272), + [anon_sym_EQ_EQ] = ACTIONS(272), + [anon_sym_BANG_EQ] = ACTIONS(272), + [anon_sym_GT_EQ] = ACTIONS(272), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_LT_GT] = ACTIONS(272), + [anon_sym_is] = ACTIONS(274), + [anon_sym_lambda] = ACTIONS(706), + [sym_ellipsis] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [sym_integer] = ACTIONS(712), + [sym_float] = ACTIONS(708), + [anon_sym_await] = ACTIONS(714), + [sym_true] = ACTIONS(712), + [sym_false] = ACTIONS(712), + [sym_none] = ACTIONS(712), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(342), - [sym_string_start] = ACTIONS(340), + [sym_string_start] = ACTIONS(716), }, [156] = { - [sym_named_expression] = STATE(1343), - [sym__named_expression_lhs] = STATE(2395), - [sym_list_splat_pattern] = STATE(1236), - [sym_as_pattern] = STATE(1343), - [sym_expression] = STATE(1181), - [sym_primary_expression] = STATE(1044), - [sym_not_operator] = STATE(1343), - [sym_boolean_operator] = STATE(1343), - [sym_binary_operator] = STATE(1341), - [sym_unary_operator] = STATE(1341), - [sym_comparison_operator] = STATE(1343), - [sym_lambda] = STATE(1343), - [sym_attribute] = STATE(1341), - [sym_subscript] = STATE(1341), - [sym_call] = STATE(1341), - [sym_list] = STATE(1341), - [sym_set] = STATE(1341), - [sym_tuple] = STATE(1341), - [sym_dictionary] = STATE(1341), - [sym_list_comprehension] = STATE(1341), - [sym_dictionary_comprehension] = STATE(1341), - [sym_set_comprehension] = STATE(1341), - [sym_generator_expression] = STATE(1341), - [sym_parenthesized_expression] = STATE(1341), - [sym_conditional_expression] = STATE(1343), - [sym_concatenated_string] = STATE(1341), - [sym_string] = STATE(1032), - [sym_await] = STATE(1341), - [sym_identifier] = ACTIONS(606), - [anon_sym_DOT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(608), - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_as] = ACTIONS(344), - [anon_sym_STAR] = ACTIONS(610), - [anon_sym_print] = ACTIONS(612), - [anon_sym_GT_GT] = ACTIONS(603), - [anon_sym_COLON_EQ] = ACTIONS(285), - [anon_sym_if] = ACTIONS(344), - [anon_sym_COLON] = ACTIONS(347), - [anon_sym_match] = ACTIONS(612), - [anon_sym_async] = ACTIONS(612), - [anon_sym_for] = ACTIONS(347), - [anon_sym_in] = ACTIONS(344), - [anon_sym_STAR_STAR] = ACTIONS(603), - [anon_sym_exec] = ACTIONS(612), - [anon_sym_AT] = ACTIONS(603), - [anon_sym_LBRACK] = ACTIONS(614), - [anon_sym_not] = ACTIONS(616), - [anon_sym_and] = ACTIONS(344), - [anon_sym_or] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_SLASH] = ACTIONS(344), - [anon_sym_PERCENT] = ACTIONS(603), - [anon_sym_SLASH_SLASH] = ACTIONS(603), - [anon_sym_PIPE] = ACTIONS(603), - [anon_sym_AMP] = ACTIONS(603), - [anon_sym_CARET] = ACTIONS(603), - [anon_sym_LT_LT] = ACTIONS(603), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_LT_EQ] = ACTIONS(603), - [anon_sym_EQ_EQ] = ACTIONS(603), - [anon_sym_BANG_EQ] = ACTIONS(603), - [anon_sym_GT_EQ] = ACTIONS(603), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LT_GT] = ACTIONS(603), - [anon_sym_is] = ACTIONS(344), - [anon_sym_lambda] = ACTIONS(620), - [sym_ellipsis] = ACTIONS(622), - [anon_sym_LBRACE] = ACTIONS(624), - [anon_sym_RBRACE] = ACTIONS(603), - [sym_integer] = ACTIONS(626), - [sym_float] = ACTIONS(622), - [anon_sym_await] = ACTIONS(628), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_none] = ACTIONS(626), + [sym_named_expression] = STATE(1530), + [sym__named_expression_lhs] = STATE(2385), + [sym_list_splat_pattern] = STATE(1480), + [sym_as_pattern] = STATE(1530), + [sym_expression] = STATE(1454), + [sym_primary_expression] = STATE(1093), + [sym_not_operator] = STATE(1530), + [sym_boolean_operator] = STATE(1530), + [sym_binary_operator] = STATE(1531), + [sym_unary_operator] = STATE(1531), + [sym_comparison_operator] = STATE(1530), + [sym_lambda] = STATE(1530), + [sym_attribute] = STATE(1531), + [sym_subscript] = STATE(1531), + [sym_call] = STATE(1531), + [sym_list] = STATE(1531), + [sym_set] = STATE(1531), + [sym_tuple] = STATE(1531), + [sym_dictionary] = STATE(1531), + [sym_list_comprehension] = STATE(1531), + [sym_dictionary_comprehension] = STATE(1531), + [sym_set_comprehension] = STATE(1531), + [sym_generator_expression] = STATE(1531), + [sym_parenthesized_expression] = STATE(1531), + [sym_conditional_expression] = STATE(1530), + [sym_concatenated_string] = STATE(1531), + [sym_string] = STATE(1099), + [sym_await] = STATE(1531), + [sym_identifier] = ACTIONS(718), + [anon_sym_DOT] = ACTIONS(348), + [anon_sym_LPAREN] = ACTIONS(720), + [anon_sym_COMMA] = ACTIONS(605), + [anon_sym_as] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_print] = ACTIONS(724), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_COLON_EQ] = ACTIONS(289), + [anon_sym_if] = ACTIONS(348), + [anon_sym_match] = ACTIONS(724), + [anon_sym_async] = ACTIONS(724), + [anon_sym_for] = ACTIONS(351), + [anon_sym_in] = ACTIONS(348), + [anon_sym_STAR_STAR] = ACTIONS(605), + [anon_sym_exec] = ACTIONS(724), + [anon_sym_AT] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(726), + [anon_sym_RBRACK] = ACTIONS(605), + [anon_sym_not] = ACTIONS(728), + [anon_sym_and] = ACTIONS(348), + [anon_sym_or] = ACTIONS(348), + [anon_sym_PLUS] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(730), + [anon_sym_SLASH] = ACTIONS(348), + [anon_sym_PERCENT] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(605), + [anon_sym_PIPE] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_LT_LT] = ACTIONS(605), + [anon_sym_TILDE] = ACTIONS(730), + [anon_sym_LT] = ACTIONS(348), + [anon_sym_LT_EQ] = ACTIONS(605), + [anon_sym_EQ_EQ] = ACTIONS(605), + [anon_sym_BANG_EQ] = ACTIONS(605), + [anon_sym_GT_EQ] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(348), + [anon_sym_LT_GT] = ACTIONS(605), + [anon_sym_is] = ACTIONS(348), + [anon_sym_lambda] = ACTIONS(732), + [sym_ellipsis] = ACTIONS(734), + [anon_sym_LBRACE] = ACTIONS(736), + [sym_integer] = ACTIONS(738), + [sym_float] = ACTIONS(734), + [anon_sym_await] = ACTIONS(740), + [sym_true] = ACTIONS(738), + [sym_false] = ACTIONS(738), + [sym_none] = ACTIONS(738), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(630), + [sym_string_start] = ACTIONS(742), }, [157] = { - [sym_named_expression] = STATE(1329), - [sym__named_expression_lhs] = STATE(2411), - [sym_list_splat_pattern] = STATE(1172), - [sym_as_pattern] = STATE(1329), - [sym_expression] = STATE(1300), - [sym_primary_expression] = STATE(1046), - [sym_not_operator] = STATE(1329), - [sym_boolean_operator] = STATE(1329), - [sym_binary_operator] = STATE(1344), - [sym_unary_operator] = STATE(1344), - [sym_comparison_operator] = STATE(1329), - [sym_lambda] = STATE(1329), - [sym_attribute] = STATE(1344), - [sym_subscript] = STATE(1344), - [sym_call] = STATE(1344), - [sym_list] = STATE(1344), - [sym_set] = STATE(1344), - [sym_tuple] = STATE(1344), - [sym_dictionary] = STATE(1344), - [sym_list_comprehension] = STATE(1344), - [sym_dictionary_comprehension] = STATE(1344), - [sym_set_comprehension] = STATE(1344), - [sym_generator_expression] = STATE(1344), - [sym_parenthesized_expression] = STATE(1344), - [sym_conditional_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1344), - [sym_string] = STATE(1034), - [sym_await] = STATE(1344), - [sym_identifier] = ACTIONS(266), - [anon_sym_SEMI] = ACTIONS(268), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_from] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(302), - [anon_sym_COMMA] = ACTIONS(268), - [anon_sym_as] = ACTIONS(270), - [anon_sym_STAR] = ACTIONS(304), - [anon_sym_print] = ACTIONS(281), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_match] = ACTIONS(281), - [anon_sym_async] = ACTIONS(281), - [anon_sym_in] = ACTIONS(270), - [anon_sym_STAR_STAR] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(281), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(306), - [anon_sym_EQ] = ACTIONS(270), - [anon_sym_not] = ACTIONS(308), - [anon_sym_and] = ACTIONS(270), - [anon_sym_or] = ACTIONS(270), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(268), - [anon_sym_CARET] = ACTIONS(268), - [anon_sym_LT_LT] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_LT_EQ] = ACTIONS(268), - [anon_sym_EQ_EQ] = ACTIONS(268), - [anon_sym_BANG_EQ] = ACTIONS(268), - [anon_sym_GT_EQ] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_LT_GT] = ACTIONS(268), - [anon_sym_is] = ACTIONS(270), - [anon_sym_lambda] = ACTIONS(312), - [sym_ellipsis] = ACTIONS(71), - [anon_sym_LBRACE] = ACTIONS(73), - [sym_integer] = ACTIONS(75), - [sym_float] = ACTIONS(71), - [anon_sym_await] = ACTIONS(300), - [sym_true] = ACTIONS(75), - [sym_false] = ACTIONS(75), - [sym_none] = ACTIONS(75), + [sym_named_expression] = STATE(1530), + [sym__named_expression_lhs] = STATE(2385), + [sym_list_splat_pattern] = STATE(1480), + [sym_as_pattern] = STATE(1530), + [sym_expression] = STATE(1454), + [sym_primary_expression] = STATE(1093), + [sym_not_operator] = STATE(1530), + [sym_boolean_operator] = STATE(1530), + [sym_binary_operator] = STATE(1531), + [sym_unary_operator] = STATE(1531), + [sym_comparison_operator] = STATE(1530), + [sym_lambda] = STATE(1530), + [sym_attribute] = STATE(1531), + [sym_subscript] = STATE(1531), + [sym_call] = STATE(1531), + [sym_list] = STATE(1531), + [sym_set] = STATE(1531), + [sym_tuple] = STATE(1531), + [sym_dictionary] = STATE(1531), + [sym_list_comprehension] = STATE(1531), + [sym_dictionary_comprehension] = STATE(1531), + [sym_set_comprehension] = STATE(1531), + [sym_generator_expression] = STATE(1531), + [sym_parenthesized_expression] = STATE(1531), + [sym_conditional_expression] = STATE(1530), + [sym_concatenated_string] = STATE(1531), + [sym_string] = STATE(1099), + [sym_await] = STATE(1531), + [sym_identifier] = ACTIONS(718), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(720), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_as] = ACTIONS(274), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_print] = ACTIONS(724), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_COLON_EQ] = ACTIONS(289), + [anon_sym_if] = ACTIONS(274), + [anon_sym_COLON] = ACTIONS(274), + [anon_sym_match] = ACTIONS(724), + [anon_sym_async] = ACTIONS(724), + [anon_sym_in] = ACTIONS(274), + [anon_sym_STAR_STAR] = ACTIONS(272), + [anon_sym_exec] = ACTIONS(724), + [anon_sym_AT] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(726), + [anon_sym_RBRACK] = ACTIONS(272), + [anon_sym_not] = ACTIONS(728), + [anon_sym_and] = ACTIONS(274), + [anon_sym_or] = ACTIONS(274), + [anon_sym_PLUS] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(730), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_SLASH_SLASH] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(272), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(730), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_LT_EQ] = ACTIONS(272), + [anon_sym_EQ_EQ] = ACTIONS(272), + [anon_sym_BANG_EQ] = ACTIONS(272), + [anon_sym_GT_EQ] = ACTIONS(272), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_LT_GT] = ACTIONS(272), + [anon_sym_is] = ACTIONS(274), + [anon_sym_lambda] = ACTIONS(732), + [sym_ellipsis] = ACTIONS(734), + [anon_sym_LBRACE] = ACTIONS(736), + [sym_integer] = ACTIONS(738), + [sym_float] = ACTIONS(734), + [anon_sym_await] = ACTIONS(740), + [sym_true] = ACTIONS(738), + [sym_false] = ACTIONS(738), + [sym_none] = ACTIONS(738), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(268), - [sym_string_start] = ACTIONS(79), + [sym_string_start] = ACTIONS(742), }, [158] = { - [sym_named_expression] = STATE(1454), - [sym__named_expression_lhs] = STATE(2415), - [sym_list_splat_pattern] = STATE(1407), - [sym_as_pattern] = STATE(1454), - [sym_expression] = STATE(1372), - [sym_primary_expression] = STATE(1098), - [sym_not_operator] = STATE(1454), - [sym_boolean_operator] = STATE(1454), - [sym_binary_operator] = STATE(1385), - [sym_unary_operator] = STATE(1385), - [sym_comparison_operator] = STATE(1454), - [sym_lambda] = STATE(1454), - [sym_attribute] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_call] = STATE(1385), - [sym_list] = STATE(1385), - [sym_set] = STATE(1385), - [sym_tuple] = STATE(1385), - [sym_dictionary] = STATE(1385), - [sym_list_comprehension] = STATE(1385), - [sym_dictionary_comprehension] = STATE(1385), - [sym_set_comprehension] = STATE(1385), - [sym_generator_expression] = STATE(1385), - [sym_parenthesized_expression] = STATE(1385), - [sym_conditional_expression] = STATE(1454), - [sym_concatenated_string] = STATE(1385), - [sym_string] = STATE(1095), - [sym_await] = STATE(1385), - [sym_identifier] = ACTIONS(658), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(660), - [anon_sym_RPAREN] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(275), - [anon_sym_as] = ACTIONS(270), - [anon_sym_STAR] = ACTIONS(662), - [anon_sym_print] = ACTIONS(664), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_COLON_EQ] = ACTIONS(285), - [anon_sym_if] = ACTIONS(270), - [anon_sym_match] = ACTIONS(664), - [anon_sym_async] = ACTIONS(664), - [anon_sym_for] = ACTIONS(270), - [anon_sym_in] = ACTIONS(270), - [anon_sym_STAR_STAR] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(664), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(666), - [anon_sym_not] = ACTIONS(670), - [anon_sym_and] = ACTIONS(270), - [anon_sym_or] = ACTIONS(270), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(268), - [anon_sym_CARET] = ACTIONS(268), - [anon_sym_LT_LT] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(672), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_LT_EQ] = ACTIONS(268), - [anon_sym_EQ_EQ] = ACTIONS(268), - [anon_sym_BANG_EQ] = ACTIONS(268), - [anon_sym_GT_EQ] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_LT_GT] = ACTIONS(268), - [anon_sym_is] = ACTIONS(270), - [anon_sym_lambda] = ACTIONS(674), - [sym_ellipsis] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(678), - [sym_integer] = ACTIONS(680), - [sym_float] = ACTIONS(676), - [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_none] = ACTIONS(680), + [sym_named_expression] = STATE(1402), + [sym__named_expression_lhs] = STATE(2365), + [sym_list_splat_pattern] = STATE(1381), + [sym_as_pattern] = STATE(1402), + [sym_expression] = STATE(1327), + [sym_primary_expression] = STATE(1034), + [sym_not_operator] = STATE(1402), + [sym_boolean_operator] = STATE(1402), + [sym_binary_operator] = STATE(1403), + [sym_unary_operator] = STATE(1403), + [sym_comparison_operator] = STATE(1402), + [sym_lambda] = STATE(1402), + [sym_attribute] = STATE(1403), + [sym_subscript] = STATE(1403), + [sym_call] = STATE(1403), + [sym_list] = STATE(1403), + [sym_set] = STATE(1403), + [sym_tuple] = STATE(1403), + [sym_dictionary] = STATE(1403), + [sym_list_comprehension] = STATE(1403), + [sym_dictionary_comprehension] = STATE(1403), + [sym_set_comprehension] = STATE(1403), + [sym_generator_expression] = STATE(1403), + [sym_parenthesized_expression] = STATE(1403), + [sym_conditional_expression] = STATE(1402), + [sym_concatenated_string] = STATE(1403), + [sym_string] = STATE(1012), + [sym_await] = STATE(1403), + [sym_identifier] = ACTIONS(666), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(668), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_as] = ACTIONS(274), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_print] = ACTIONS(672), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_COLON_EQ] = ACTIONS(289), + [anon_sym_if] = ACTIONS(274), + [anon_sym_match] = ACTIONS(672), + [anon_sym_async] = ACTIONS(672), + [anon_sym_for] = ACTIONS(274), + [anon_sym_in] = ACTIONS(274), + [anon_sym_STAR_STAR] = ACTIONS(272), + [anon_sym_exec] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(674), + [anon_sym_RBRACK] = ACTIONS(272), + [anon_sym_not] = ACTIONS(676), + [anon_sym_and] = ACTIONS(274), + [anon_sym_or] = ACTIONS(274), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_SLASH_SLASH] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(272), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_LT_EQ] = ACTIONS(272), + [anon_sym_EQ_EQ] = ACTIONS(272), + [anon_sym_BANG_EQ] = ACTIONS(272), + [anon_sym_GT_EQ] = ACTIONS(272), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_LT_GT] = ACTIONS(272), + [anon_sym_is] = ACTIONS(274), + [anon_sym_lambda] = ACTIONS(680), + [sym_ellipsis] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(684), + [sym_integer] = ACTIONS(686), + [sym_float] = ACTIONS(682), + [anon_sym_await] = ACTIONS(688), + [sym_true] = ACTIONS(686), + [sym_false] = ACTIONS(686), + [sym_none] = ACTIONS(686), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(684), + [sym_string_start] = ACTIONS(690), }, [159] = { - [sym_named_expression] = STATE(1506), - [sym__named_expression_lhs] = STATE(2385), - [sym_list_splat_pattern] = STATE(1397), - [sym_as_pattern] = STATE(1506), - [sym_expression] = STATE(1362), - [sym_primary_expression] = STATE(1059), - [sym_not_operator] = STATE(1506), - [sym_boolean_operator] = STATE(1506), - [sym_binary_operator] = STATE(1507), - [sym_unary_operator] = STATE(1507), - [sym_comparison_operator] = STATE(1506), - [sym_lambda] = STATE(1506), - [sym_attribute] = STATE(1507), - [sym_subscript] = STATE(1507), - [sym_call] = STATE(1507), - [sym_list] = STATE(1507), - [sym_set] = STATE(1507), - [sym_tuple] = STATE(1507), - [sym_dictionary] = STATE(1507), - [sym_list_comprehension] = STATE(1507), - [sym_dictionary_comprehension] = STATE(1507), - [sym_set_comprehension] = STATE(1507), - [sym_generator_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_conditional_expression] = STATE(1506), - [sym_concatenated_string] = STATE(1507), - [sym_string] = STATE(1058), - [sym_await] = STATE(1507), - [sym_identifier] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(692), - [anon_sym_COMMA] = ACTIONS(275), - [anon_sym_as] = ACTIONS(270), - [anon_sym_STAR] = ACTIONS(694), - [anon_sym_print] = ACTIONS(696), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_COLON_EQ] = ACTIONS(285), - [anon_sym_if] = ACTIONS(270), - [anon_sym_match] = ACTIONS(696), - [anon_sym_async] = ACTIONS(696), - [anon_sym_for] = ACTIONS(270), - [anon_sym_in] = ACTIONS(270), - [anon_sym_STAR_STAR] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(696), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(698), - [anon_sym_RBRACK] = ACTIONS(275), - [anon_sym_not] = ACTIONS(700), - [anon_sym_and] = ACTIONS(270), - [anon_sym_or] = ACTIONS(270), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(268), - [anon_sym_CARET] = ACTIONS(268), - [anon_sym_LT_LT] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(702), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_LT_EQ] = ACTIONS(268), - [anon_sym_EQ_EQ] = ACTIONS(268), - [anon_sym_BANG_EQ] = ACTIONS(268), - [anon_sym_GT_EQ] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_LT_GT] = ACTIONS(268), - [anon_sym_is] = ACTIONS(270), - [anon_sym_lambda] = ACTIONS(704), - [sym_ellipsis] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(708), - [sym_integer] = ACTIONS(710), - [sym_float] = ACTIONS(706), - [anon_sym_await] = ACTIONS(712), - [sym_true] = ACTIONS(710), - [sym_false] = ACTIONS(710), - [sym_none] = ACTIONS(710), + [sym_named_expression] = STATE(1321), + [sym__named_expression_lhs] = STATE(2404), + [sym_list_splat_pattern] = STATE(1304), + [sym_as_pattern] = STATE(1321), + [sym_expression] = STATE(1358), + [sym_primary_expression] = STATE(1033), + [sym_not_operator] = STATE(1321), + [sym_boolean_operator] = STATE(1321), + [sym_binary_operator] = STATE(1316), + [sym_unary_operator] = STATE(1316), + [sym_comparison_operator] = STATE(1321), + [sym_lambda] = STATE(1321), + [sym_attribute] = STATE(1316), + [sym_subscript] = STATE(1316), + [sym_call] = STATE(1316), + [sym_list] = STATE(1316), + [sym_set] = STATE(1316), + [sym_tuple] = STATE(1316), + [sym_dictionary] = STATE(1316), + [sym_list_comprehension] = STATE(1316), + [sym_dictionary_comprehension] = STATE(1316), + [sym_set_comprehension] = STATE(1316), + [sym_generator_expression] = STATE(1316), + [sym_parenthesized_expression] = STATE(1316), + [sym_conditional_expression] = STATE(1321), + [sym_concatenated_string] = STATE(1316), + [sym_string] = STATE(1036), + [sym_await] = STATE(1316), + [sym_identifier] = ACTIONS(638), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(640), + [anon_sym_RPAREN] = ACTIONS(272), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_as] = ACTIONS(274), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_print] = ACTIONS(644), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_if] = ACTIONS(274), + [anon_sym_match] = ACTIONS(644), + [anon_sym_async] = ACTIONS(644), + [anon_sym_for] = ACTIONS(274), + [anon_sym_in] = ACTIONS(274), + [anon_sym_STAR_STAR] = ACTIONS(272), + [anon_sym_exec] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_not] = ACTIONS(650), + [anon_sym_and] = ACTIONS(274), + [anon_sym_or] = ACTIONS(274), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_SLASH_SLASH] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(272), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_LT_EQ] = ACTIONS(272), + [anon_sym_EQ_EQ] = ACTIONS(272), + [anon_sym_BANG_EQ] = ACTIONS(272), + [anon_sym_GT_EQ] = ACTIONS(272), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_LT_GT] = ACTIONS(272), + [anon_sym_is] = ACTIONS(274), + [anon_sym_lambda] = ACTIONS(654), + [sym_ellipsis] = ACTIONS(656), + [anon_sym_LBRACE] = ACTIONS(658), + [sym_integer] = ACTIONS(660), + [sym_float] = ACTIONS(656), + [anon_sym_await] = ACTIONS(662), + [sym_true] = ACTIONS(660), + [sym_false] = ACTIONS(660), + [sym_none] = ACTIONS(660), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(714), + [sym_string_start] = ACTIONS(664), }, [160] = { - [sym_named_expression] = STATE(1278), - [sym__named_expression_lhs] = STATE(2390), - [sym_list_splat_pattern] = STATE(1338), - [sym_as_pattern] = STATE(1278), - [sym_expression] = STATE(1276), - [sym_primary_expression] = STATE(1045), - [sym_not_operator] = STATE(1278), - [sym_boolean_operator] = STATE(1278), - [sym_binary_operator] = STATE(1277), - [sym_unary_operator] = STATE(1277), - [sym_comparison_operator] = STATE(1278), - [sym_lambda] = STATE(1278), - [sym_attribute] = STATE(1277), - [sym_subscript] = STATE(1277), - [sym_call] = STATE(1277), - [sym_list] = STATE(1277), - [sym_set] = STATE(1277), - [sym_tuple] = STATE(1277), - [sym_dictionary] = STATE(1277), - [sym_list_comprehension] = STATE(1277), - [sym_dictionary_comprehension] = STATE(1277), - [sym_set_comprehension] = STATE(1277), - [sym_generator_expression] = STATE(1277), - [sym_parenthesized_expression] = STATE(1277), - [sym_conditional_expression] = STATE(1278), - [sym_concatenated_string] = STATE(1277), - [sym_string] = STATE(1037), - [sym_await] = STATE(1277), - [sym_identifier] = ACTIONS(632), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(634), - [anon_sym_COMMA] = ACTIONS(268), - [anon_sym_as] = ACTIONS(270), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_print] = ACTIONS(638), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_COLON] = ACTIONS(268), - [anon_sym_match] = ACTIONS(638), - [anon_sym_async] = ACTIONS(638), - [anon_sym_for] = ACTIONS(270), - [anon_sym_in] = ACTIONS(270), - [anon_sym_STAR_STAR] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(640), - [anon_sym_not] = ACTIONS(642), - [anon_sym_and] = ACTIONS(270), - [anon_sym_or] = ACTIONS(270), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(268), - [anon_sym_CARET] = ACTIONS(268), - [anon_sym_LT_LT] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(644), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_LT_EQ] = ACTIONS(268), - [anon_sym_EQ_EQ] = ACTIONS(268), - [anon_sym_BANG_EQ] = ACTIONS(268), - [anon_sym_GT_EQ] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_LT_GT] = ACTIONS(268), - [anon_sym_is] = ACTIONS(270), - [anon_sym_lambda] = ACTIONS(646), - [sym_ellipsis] = ACTIONS(648), - [anon_sym_LBRACE] = ACTIONS(650), - [anon_sym_RBRACE] = ACTIONS(268), - [sym_integer] = ACTIONS(652), - [sym_float] = ACTIONS(648), - [anon_sym_await] = ACTIONS(654), - [sym_true] = ACTIONS(652), - [sym_false] = ACTIONS(652), - [sym_none] = ACTIONS(652), + [sym_named_expression] = STATE(1530), + [sym__named_expression_lhs] = STATE(2385), + [sym_list_splat_pattern] = STATE(1480), + [sym_as_pattern] = STATE(1530), + [sym_expression] = STATE(1454), + [sym_primary_expression] = STATE(1093), + [sym_not_operator] = STATE(1530), + [sym_boolean_operator] = STATE(1530), + [sym_binary_operator] = STATE(1531), + [sym_unary_operator] = STATE(1531), + [sym_comparison_operator] = STATE(1530), + [sym_lambda] = STATE(1530), + [sym_attribute] = STATE(1531), + [sym_subscript] = STATE(1531), + [sym_call] = STATE(1531), + [sym_list] = STATE(1531), + [sym_set] = STATE(1531), + [sym_tuple] = STATE(1531), + [sym_dictionary] = STATE(1531), + [sym_list_comprehension] = STATE(1531), + [sym_dictionary_comprehension] = STATE(1531), + [sym_set_comprehension] = STATE(1531), + [sym_generator_expression] = STATE(1531), + [sym_parenthesized_expression] = STATE(1531), + [sym_conditional_expression] = STATE(1530), + [sym_concatenated_string] = STATE(1531), + [sym_string] = STATE(1099), + [sym_await] = STATE(1531), + [sym_identifier] = ACTIONS(718), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(720), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_as] = ACTIONS(274), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_print] = ACTIONS(724), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_if] = ACTIONS(274), + [anon_sym_COLON] = ACTIONS(272), + [anon_sym_match] = ACTIONS(724), + [anon_sym_async] = ACTIONS(724), + [anon_sym_in] = ACTIONS(274), + [anon_sym_STAR_STAR] = ACTIONS(272), + [anon_sym_exec] = ACTIONS(724), + [anon_sym_AT] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(726), + [anon_sym_RBRACK] = ACTIONS(272), + [anon_sym_not] = ACTIONS(728), + [anon_sym_and] = ACTIONS(274), + [anon_sym_or] = ACTIONS(274), + [anon_sym_PLUS] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(730), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_SLASH_SLASH] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(272), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(730), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_LT_EQ] = ACTIONS(272), + [anon_sym_EQ_EQ] = ACTIONS(272), + [anon_sym_BANG_EQ] = ACTIONS(272), + [anon_sym_GT_EQ] = ACTIONS(272), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_LT_GT] = ACTIONS(272), + [anon_sym_is] = ACTIONS(274), + [anon_sym_lambda] = ACTIONS(732), + [sym_ellipsis] = ACTIONS(734), + [anon_sym_LBRACE] = ACTIONS(736), + [sym_integer] = ACTIONS(738), + [sym_float] = ACTIONS(734), + [anon_sym_await] = ACTIONS(740), + [sym_true] = ACTIONS(738), + [sym_false] = ACTIONS(738), + [sym_none] = ACTIONS(738), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(656), + [sym_string_start] = ACTIONS(742), }, [161] = { - [sym_named_expression] = STATE(1456), - [sym__named_expression_lhs] = STATE(2379), - [sym_list_splat_pattern] = STATE(1366), - [sym_as_pattern] = STATE(1456), - [sym_expression] = STATE(1638), - [sym_primary_expression] = STATE(1079), - [sym_not_operator] = STATE(1456), - [sym_boolean_operator] = STATE(1456), - [sym_binary_operator] = STATE(1455), - [sym_unary_operator] = STATE(1455), - [sym_comparison_operator] = STATE(1456), - [sym_lambda] = STATE(1456), - [sym_attribute] = STATE(1455), - [sym_subscript] = STATE(1455), - [sym_call] = STATE(1455), - [sym_list] = STATE(1455), - [sym_set] = STATE(1455), - [sym_tuple] = STATE(1455), - [sym_dictionary] = STATE(1455), - [sym_list_comprehension] = STATE(1455), - [sym_dictionary_comprehension] = STATE(1455), - [sym_set_comprehension] = STATE(1455), - [sym_generator_expression] = STATE(1455), - [sym_parenthesized_expression] = STATE(1455), - [sym_conditional_expression] = STATE(1456), - [sym_concatenated_string] = STATE(1455), - [sym_string] = STATE(1071), - [sym_await] = STATE(1455), - [sym_identifier] = ACTIONS(314), - [anon_sym_DOT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_RPAREN] = ACTIONS(342), - [anon_sym_COMMA] = ACTIONS(342), - [anon_sym_as] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_print] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(603), - [anon_sym_if] = ACTIONS(347), - [anon_sym_match] = ACTIONS(320), - [anon_sym_async] = ACTIONS(320), - [anon_sym_for] = ACTIONS(347), - [anon_sym_in] = ACTIONS(347), - [anon_sym_STAR_STAR] = ACTIONS(603), - [anon_sym_exec] = ACTIONS(320), - [anon_sym_AT] = ACTIONS(603), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_EQ] = ACTIONS(347), - [anon_sym_not] = ACTIONS(324), - [anon_sym_and] = ACTIONS(347), - [anon_sym_or] = ACTIONS(347), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_SLASH] = ACTIONS(344), - [anon_sym_PERCENT] = ACTIONS(603), - [anon_sym_SLASH_SLASH] = ACTIONS(603), - [anon_sym_PIPE] = ACTIONS(603), - [anon_sym_AMP] = ACTIONS(603), - [anon_sym_CARET] = ACTIONS(603), - [anon_sym_LT_LT] = ACTIONS(603), - [anon_sym_TILDE] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(347), - [anon_sym_LT_EQ] = ACTIONS(342), - [anon_sym_EQ_EQ] = ACTIONS(342), - [anon_sym_BANG_EQ] = ACTIONS(342), - [anon_sym_GT_EQ] = ACTIONS(342), - [anon_sym_GT] = ACTIONS(347), - [anon_sym_LT_GT] = ACTIONS(342), - [anon_sym_is] = ACTIONS(347), - [anon_sym_lambda] = ACTIONS(330), - [sym_ellipsis] = ACTIONS(332), - [anon_sym_LBRACE] = ACTIONS(334), - [sym_integer] = ACTIONS(336), - [sym_float] = ACTIONS(332), - [anon_sym_await] = ACTIONS(338), - [sym_true] = ACTIONS(336), - [sym_false] = ACTIONS(336), - [sym_none] = ACTIONS(336), + [sym_named_expression] = STATE(1470), + [sym__named_expression_lhs] = STATE(2380), + [sym_list_splat_pattern] = STATE(1456), + [sym_as_pattern] = STATE(1470), + [sym_expression] = STATE(1504), + [sym_primary_expression] = STATE(1102), + [sym_not_operator] = STATE(1470), + [sym_boolean_operator] = STATE(1470), + [sym_binary_operator] = STATE(1469), + [sym_unary_operator] = STATE(1469), + [sym_comparison_operator] = STATE(1470), + [sym_lambda] = STATE(1470), + [sym_attribute] = STATE(1469), + [sym_subscript] = STATE(1469), + [sym_call] = STATE(1469), + [sym_list] = STATE(1469), + [sym_set] = STATE(1469), + [sym_tuple] = STATE(1469), + [sym_dictionary] = STATE(1469), + [sym_list_comprehension] = STATE(1469), + [sym_dictionary_comprehension] = STATE(1469), + [sym_set_comprehension] = STATE(1469), + [sym_generator_expression] = STATE(1469), + [sym_parenthesized_expression] = STATE(1469), + [sym_conditional_expression] = STATE(1470), + [sym_concatenated_string] = STATE(1469), + [sym_string] = STATE(1062), + [sym_await] = STATE(1469), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_RPAREN] = ACTIONS(272), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_as] = ACTIONS(274), + [anon_sym_STAR] = ACTIONS(696), + [anon_sym_print] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_if] = ACTIONS(274), + [anon_sym_match] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_in] = ACTIONS(274), + [anon_sym_STAR_STAR] = ACTIONS(272), + [anon_sym_exec] = ACTIONS(698), + [anon_sym_AT] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(700), + [anon_sym_EQ] = ACTIONS(274), + [anon_sym_not] = ACTIONS(702), + [anon_sym_and] = ACTIONS(274), + [anon_sym_or] = ACTIONS(274), + [anon_sym_PLUS] = ACTIONS(704), + [anon_sym_DASH] = ACTIONS(704), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_SLASH_SLASH] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(272), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_LT_EQ] = ACTIONS(272), + [anon_sym_EQ_EQ] = ACTIONS(272), + [anon_sym_BANG_EQ] = ACTIONS(272), + [anon_sym_GT_EQ] = ACTIONS(272), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_LT_GT] = ACTIONS(272), + [anon_sym_is] = ACTIONS(274), + [anon_sym_lambda] = ACTIONS(706), + [sym_ellipsis] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [sym_integer] = ACTIONS(712), + [sym_float] = ACTIONS(708), + [anon_sym_await] = ACTIONS(714), + [sym_true] = ACTIONS(712), + [sym_false] = ACTIONS(712), + [sym_none] = ACTIONS(712), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(340), + [sym_string_start] = ACTIONS(716), }, [162] = { - [sym_named_expression] = STATE(1606), - [sym__named_expression_lhs] = STATE(2400), - [sym_list_splat_pattern] = STATE(1516), - [sym_as_pattern] = STATE(1606), - [sym_expression] = STATE(1602), - [sym_primary_expression] = STATE(1104), - [sym_not_operator] = STATE(1606), - [sym_boolean_operator] = STATE(1606), - [sym_binary_operator] = STATE(1552), - [sym_unary_operator] = STATE(1552), - [sym_comparison_operator] = STATE(1606), - [sym_lambda] = STATE(1606), - [sym_attribute] = STATE(1552), - [sym_subscript] = STATE(1552), - [sym_call] = STATE(1552), - [sym_list] = STATE(1552), - [sym_set] = STATE(1552), - [sym_tuple] = STATE(1552), - [sym_dictionary] = STATE(1552), - [sym_list_comprehension] = STATE(1552), - [sym_dictionary_comprehension] = STATE(1552), - [sym_set_comprehension] = STATE(1552), - [sym_generator_expression] = STATE(1552), - [sym_parenthesized_expression] = STATE(1552), - [sym_conditional_expression] = STATE(1606), - [sym_concatenated_string] = STATE(1552), - [sym_string] = STATE(1157), - [sym_await] = STATE(1552), - [sym_identifier] = ACTIONS(716), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(718), - [anon_sym_RPAREN] = ACTIONS(268), - [anon_sym_COMMA] = ACTIONS(268), - [anon_sym_as] = ACTIONS(270), - [anon_sym_STAR] = ACTIONS(720), - [anon_sym_print] = ACTIONS(722), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_COLON_EQ] = ACTIONS(285), - [anon_sym_if] = ACTIONS(270), - [anon_sym_match] = ACTIONS(722), - [anon_sym_async] = ACTIONS(722), - [anon_sym_in] = ACTIONS(270), - [anon_sym_STAR_STAR] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(722), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(724), - [anon_sym_EQ] = ACTIONS(270), - [anon_sym_not] = ACTIONS(726), - [anon_sym_and] = ACTIONS(270), - [anon_sym_or] = ACTIONS(270), - [anon_sym_PLUS] = ACTIONS(728), - [anon_sym_DASH] = ACTIONS(728), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(268), - [anon_sym_CARET] = ACTIONS(268), - [anon_sym_LT_LT] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(728), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_LT_EQ] = ACTIONS(268), - [anon_sym_EQ_EQ] = ACTIONS(268), - [anon_sym_BANG_EQ] = ACTIONS(268), - [anon_sym_GT_EQ] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_LT_GT] = ACTIONS(268), - [anon_sym_is] = ACTIONS(270), - [anon_sym_lambda] = ACTIONS(730), - [sym_ellipsis] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [sym_integer] = ACTIONS(736), - [sym_float] = ACTIONS(732), - [anon_sym_await] = ACTIONS(738), - [sym_true] = ACTIONS(736), - [sym_false] = ACTIONS(736), - [sym_none] = ACTIONS(736), + [sym_named_expression] = STATE(1427), + [sym__named_expression_lhs] = STATE(2513), + [sym_list_splat_pattern] = STATE(1406), + [sym_as_pattern] = STATE(1427), + [sym_expression] = STATE(1575), + [sym_primary_expression] = STATE(994), + [sym_not_operator] = STATE(1427), + [sym_boolean_operator] = STATE(1427), + [sym_binary_operator] = STATE(1426), + [sym_unary_operator] = STATE(1426), + [sym_comparison_operator] = STATE(1427), + [sym_lambda] = STATE(1427), + [sym_attribute] = STATE(1426), + [sym_subscript] = STATE(1426), + [sym_call] = STATE(1426), + [sym_list] = STATE(1426), + [sym_set] = STATE(1426), + [sym_tuple] = STATE(1426), + [sym_dictionary] = STATE(1426), + [sym_list_comprehension] = STATE(1426), + [sym_dictionary_comprehension] = STATE(1426), + [sym_set_comprehension] = STATE(1426), + [sym_generator_expression] = STATE(1426), + [sym_parenthesized_expression] = STATE(1426), + [sym_conditional_expression] = STATE(1427), + [sym_concatenated_string] = STATE(1426), + [sym_string] = STATE(996), + [sym_await] = STATE(1426), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(348), + [anon_sym_LPAREN] = ACTIONS(308), + [anon_sym_COMMA] = ACTIONS(346), + [anon_sym_STAR] = ACTIONS(310), + [anon_sym_print] = ACTIONS(312), + [anon_sym_GT_GT] = ACTIONS(348), + [anon_sym_COLON] = ACTIONS(346), + [anon_sym_match] = ACTIONS(312), + [anon_sym_async] = ACTIONS(312), + [anon_sym_STAR_STAR] = ACTIONS(348), + [anon_sym_exec] = ACTIONS(312), + [anon_sym_AT] = ACTIONS(348), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_EQ] = ACTIONS(346), + [anon_sym_not] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(348), + [anon_sym_PERCENT] = ACTIONS(348), + [anon_sym_SLASH_SLASH] = ACTIONS(348), + [anon_sym_PIPE] = ACTIONS(348), + [anon_sym_AMP] = ACTIONS(348), + [anon_sym_CARET] = ACTIONS(348), + [anon_sym_LT_LT] = ACTIONS(348), + [anon_sym_TILDE] = ACTIONS(320), + [anon_sym_lambda] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(346), + [anon_sym_DASH_EQ] = ACTIONS(346), + [anon_sym_STAR_EQ] = ACTIONS(346), + [anon_sym_SLASH_EQ] = ACTIONS(346), + [anon_sym_AT_EQ] = ACTIONS(346), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(346), + [anon_sym_PERCENT_EQ] = ACTIONS(346), + [anon_sym_STAR_STAR_EQ] = ACTIONS(346), + [anon_sym_GT_GT_EQ] = ACTIONS(346), + [anon_sym_LT_LT_EQ] = ACTIONS(346), + [anon_sym_AMP_EQ] = ACTIONS(346), + [anon_sym_CARET_EQ] = ACTIONS(346), + [anon_sym_PIPE_EQ] = ACTIONS(346), + [sym_ellipsis] = ACTIONS(324), + [anon_sym_LBRACE] = ACTIONS(326), + [sym_integer] = ACTIONS(328), + [sym_float] = ACTIONS(324), + [anon_sym_await] = ACTIONS(330), + [sym_true] = ACTIONS(328), + [sym_false] = ACTIONS(328), + [sym_none] = ACTIONS(328), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(740), + [sym_string_start] = ACTIONS(332), }, [163] = { - [sym_named_expression] = STATE(1456), - [sym__named_expression_lhs] = STATE(2366), - [sym_list_splat_pattern] = STATE(1366), - [sym_as_pattern] = STATE(1456), - [sym_expression] = STATE(1490), - [sym_primary_expression] = STATE(1048), - [sym_not_operator] = STATE(1456), - [sym_boolean_operator] = STATE(1456), - [sym_binary_operator] = STATE(1455), - [sym_unary_operator] = STATE(1455), - [sym_comparison_operator] = STATE(1456), - [sym_lambda] = STATE(1456), - [sym_attribute] = STATE(1455), - [sym_subscript] = STATE(1455), - [sym_call] = STATE(1455), - [sym_list] = STATE(1455), - [sym_set] = STATE(1455), - [sym_tuple] = STATE(1455), - [sym_dictionary] = STATE(1455), - [sym_list_comprehension] = STATE(1455), - [sym_dictionary_comprehension] = STATE(1455), - [sym_set_comprehension] = STATE(1455), - [sym_generator_expression] = STATE(1455), - [sym_parenthesized_expression] = STATE(1455), - [sym_conditional_expression] = STATE(1456), - [sym_concatenated_string] = STATE(1455), - [sym_string] = STATE(1071), - [sym_await] = STATE(1455), - [sym_identifier] = ACTIONS(314), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_COMMA] = ACTIONS(268), - [anon_sym_as] = ACTIONS(270), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_print] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_COLON] = ACTIONS(268), - [anon_sym_else] = ACTIONS(270), - [anon_sym_match] = ACTIONS(320), - [anon_sym_async] = ACTIONS(320), - [anon_sym_in] = ACTIONS(270), - [anon_sym_STAR_STAR] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(320), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_EQ] = ACTIONS(270), - [anon_sym_not] = ACTIONS(686), - [anon_sym_and] = ACTIONS(270), - [anon_sym_or] = ACTIONS(270), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(268), - [anon_sym_CARET] = ACTIONS(268), - [anon_sym_LT_LT] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_LT_EQ] = ACTIONS(268), - [anon_sym_EQ_EQ] = ACTIONS(268), - [anon_sym_BANG_EQ] = ACTIONS(268), - [anon_sym_GT_EQ] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_LT_GT] = ACTIONS(268), - [anon_sym_is] = ACTIONS(270), - [anon_sym_lambda] = ACTIONS(688), - [sym_ellipsis] = ACTIONS(332), - [anon_sym_LBRACE] = ACTIONS(334), - [sym_integer] = ACTIONS(336), - [sym_float] = ACTIONS(332), - [anon_sym_await] = ACTIONS(338), - [sym_true] = ACTIONS(336), - [sym_false] = ACTIONS(336), - [sym_none] = ACTIONS(336), + [sym_named_expression] = STATE(1427), + [sym__named_expression_lhs] = STATE(2513), + [sym_list_splat_pattern] = STATE(1406), + [sym_as_pattern] = STATE(1427), + [sym_expression] = STATE(1575), + [sym_primary_expression] = STATE(994), + [sym_not_operator] = STATE(1427), + [sym_boolean_operator] = STATE(1427), + [sym_binary_operator] = STATE(1426), + [sym_unary_operator] = STATE(1426), + [sym_comparison_operator] = STATE(1427), + [sym_lambda] = STATE(1427), + [sym_attribute] = STATE(1426), + [sym_subscript] = STATE(1426), + [sym_call] = STATE(1426), + [sym_list] = STATE(1426), + [sym_set] = STATE(1426), + [sym_tuple] = STATE(1426), + [sym_dictionary] = STATE(1426), + [sym_list_comprehension] = STATE(1426), + [sym_dictionary_comprehension] = STATE(1426), + [sym_set_comprehension] = STATE(1426), + [sym_generator_expression] = STATE(1426), + [sym_parenthesized_expression] = STATE(1426), + [sym_conditional_expression] = STATE(1427), + [sym_concatenated_string] = STATE(1426), + [sym_string] = STATE(996), + [sym_await] = STATE(1426), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(308), + [anon_sym_COMMA] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(310), + [anon_sym_print] = ACTIONS(312), + [anon_sym_GT_GT] = ACTIONS(274), + [anon_sym_COLON] = ACTIONS(302), + [anon_sym_match] = ACTIONS(312), + [anon_sym_async] = ACTIONS(312), + [anon_sym_STAR_STAR] = ACTIONS(274), + [anon_sym_exec] = ACTIONS(312), + [anon_sym_AT] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_EQ] = ACTIONS(302), + [anon_sym_not] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(274), + [anon_sym_SLASH_SLASH] = ACTIONS(274), + [anon_sym_PIPE] = ACTIONS(274), + [anon_sym_AMP] = ACTIONS(274), + [anon_sym_CARET] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(274), + [anon_sym_TILDE] = ACTIONS(320), + [anon_sym_lambda] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(302), + [anon_sym_DASH_EQ] = ACTIONS(302), + [anon_sym_STAR_EQ] = ACTIONS(302), + [anon_sym_SLASH_EQ] = ACTIONS(302), + [anon_sym_AT_EQ] = ACTIONS(302), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(302), + [anon_sym_PERCENT_EQ] = ACTIONS(302), + [anon_sym_STAR_STAR_EQ] = ACTIONS(302), + [anon_sym_GT_GT_EQ] = ACTIONS(302), + [anon_sym_LT_LT_EQ] = ACTIONS(302), + [anon_sym_AMP_EQ] = ACTIONS(302), + [anon_sym_CARET_EQ] = ACTIONS(302), + [anon_sym_PIPE_EQ] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(324), + [anon_sym_LBRACE] = ACTIONS(326), + [sym_integer] = ACTIONS(328), + [sym_float] = ACTIONS(324), + [anon_sym_await] = ACTIONS(330), + [sym_true] = ACTIONS(328), + [sym_false] = ACTIONS(328), + [sym_none] = ACTIONS(328), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(340), + [sym_string_start] = ACTIONS(332), }, [164] = { - [sym_named_expression] = STATE(1454), - [sym__named_expression_lhs] = STATE(2415), - [sym_list_splat_pattern] = STATE(1407), - [sym_as_pattern] = STATE(1454), - [sym_expression] = STATE(1372), - [sym_primary_expression] = STATE(1098), - [sym_not_operator] = STATE(1454), - [sym_boolean_operator] = STATE(1454), - [sym_binary_operator] = STATE(1385), - [sym_unary_operator] = STATE(1385), - [sym_comparison_operator] = STATE(1454), - [sym_lambda] = STATE(1454), - [sym_attribute] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_call] = STATE(1385), - [sym_list] = STATE(1385), - [sym_set] = STATE(1385), - [sym_tuple] = STATE(1385), - [sym_dictionary] = STATE(1385), - [sym_list_comprehension] = STATE(1385), - [sym_dictionary_comprehension] = STATE(1385), - [sym_set_comprehension] = STATE(1385), - [sym_generator_expression] = STATE(1385), - [sym_parenthesized_expression] = STATE(1385), - [sym_conditional_expression] = STATE(1454), - [sym_concatenated_string] = STATE(1385), - [sym_string] = STATE(1095), - [sym_await] = STATE(1385), - [sym_identifier] = ACTIONS(658), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(660), - [anon_sym_RPAREN] = ACTIONS(268), - [anon_sym_COMMA] = ACTIONS(268), - [anon_sym_as] = ACTIONS(270), - [anon_sym_STAR] = ACTIONS(662), - [anon_sym_print] = ACTIONS(664), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_COLON_EQ] = ACTIONS(285), - [anon_sym_if] = ACTIONS(270), - [anon_sym_match] = ACTIONS(664), - [anon_sym_async] = ACTIONS(664), - [anon_sym_for] = ACTIONS(270), - [anon_sym_in] = ACTIONS(270), - [anon_sym_STAR_STAR] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(664), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(666), - [anon_sym_not] = ACTIONS(670), - [anon_sym_and] = ACTIONS(270), - [anon_sym_or] = ACTIONS(270), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(268), - [anon_sym_CARET] = ACTIONS(268), - [anon_sym_LT_LT] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(672), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_LT_EQ] = ACTIONS(268), - [anon_sym_EQ_EQ] = ACTIONS(268), - [anon_sym_BANG_EQ] = ACTIONS(268), - [anon_sym_GT_EQ] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_LT_GT] = ACTIONS(268), - [anon_sym_is] = ACTIONS(270), - [anon_sym_lambda] = ACTIONS(674), - [sym_ellipsis] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(678), - [sym_integer] = ACTIONS(680), - [sym_float] = ACTIONS(676), - [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_none] = ACTIONS(680), + [sym_named_expression] = STATE(1402), + [sym__named_expression_lhs] = STATE(2365), + [sym_list_splat_pattern] = STATE(1381), + [sym_as_pattern] = STATE(1402), + [sym_expression] = STATE(1327), + [sym_primary_expression] = STATE(1034), + [sym_not_operator] = STATE(1402), + [sym_boolean_operator] = STATE(1402), + [sym_binary_operator] = STATE(1403), + [sym_unary_operator] = STATE(1403), + [sym_comparison_operator] = STATE(1402), + [sym_lambda] = STATE(1402), + [sym_attribute] = STATE(1403), + [sym_subscript] = STATE(1403), + [sym_call] = STATE(1403), + [sym_list] = STATE(1403), + [sym_set] = STATE(1403), + [sym_tuple] = STATE(1403), + [sym_dictionary] = STATE(1403), + [sym_list_comprehension] = STATE(1403), + [sym_dictionary_comprehension] = STATE(1403), + [sym_set_comprehension] = STATE(1403), + [sym_generator_expression] = STATE(1403), + [sym_parenthesized_expression] = STATE(1403), + [sym_conditional_expression] = STATE(1402), + [sym_concatenated_string] = STATE(1403), + [sym_string] = STATE(1012), + [sym_await] = STATE(1403), + [sym_identifier] = ACTIONS(666), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(668), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_as] = ACTIONS(274), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_print] = ACTIONS(672), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_if] = ACTIONS(274), + [anon_sym_match] = ACTIONS(672), + [anon_sym_async] = ACTIONS(672), + [anon_sym_for] = ACTIONS(274), + [anon_sym_in] = ACTIONS(274), + [anon_sym_STAR_STAR] = ACTIONS(272), + [anon_sym_exec] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(674), + [anon_sym_RBRACK] = ACTIONS(272), + [anon_sym_not] = ACTIONS(676), + [anon_sym_and] = ACTIONS(274), + [anon_sym_or] = ACTIONS(274), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_SLASH_SLASH] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(272), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_LT_EQ] = ACTIONS(272), + [anon_sym_EQ_EQ] = ACTIONS(272), + [anon_sym_BANG_EQ] = ACTIONS(272), + [anon_sym_GT_EQ] = ACTIONS(272), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_LT_GT] = ACTIONS(272), + [anon_sym_is] = ACTIONS(274), + [anon_sym_lambda] = ACTIONS(680), + [sym_ellipsis] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(684), + [sym_integer] = ACTIONS(686), + [sym_float] = ACTIONS(682), + [anon_sym_await] = ACTIONS(688), + [sym_true] = ACTIONS(686), + [sym_false] = ACTIONS(686), + [sym_none] = ACTIONS(686), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(684), + [sym_string_start] = ACTIONS(690), }, [165] = { - [sym_named_expression] = STATE(1581), - [sym__named_expression_lhs] = STATE(2405), - [sym_list_splat_pattern] = STATE(1598), - [sym_as_pattern] = STATE(1581), - [sym_expression] = STATE(1594), - [sym_primary_expression] = STATE(1107), - [sym_not_operator] = STATE(1581), - [sym_boolean_operator] = STATE(1581), - [sym_binary_operator] = STATE(1580), - [sym_unary_operator] = STATE(1580), - [sym_comparison_operator] = STATE(1581), - [sym_lambda] = STATE(1581), - [sym_attribute] = STATE(1580), - [sym_subscript] = STATE(1580), - [sym_call] = STATE(1580), - [sym_list] = STATE(1580), - [sym_set] = STATE(1580), - [sym_tuple] = STATE(1580), - [sym_dictionary] = STATE(1580), - [sym_list_comprehension] = STATE(1580), - [sym_dictionary_comprehension] = STATE(1580), - [sym_set_comprehension] = STATE(1580), - [sym_generator_expression] = STATE(1580), - [sym_parenthesized_expression] = STATE(1580), - [sym_conditional_expression] = STATE(1581), - [sym_concatenated_string] = STATE(1580), - [sym_string] = STATE(1132), - [sym_await] = STATE(1580), - [sym_identifier] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(744), - [anon_sym_COMMA] = ACTIONS(268), - [anon_sym_as] = ACTIONS(270), - [anon_sym_STAR] = ACTIONS(746), - [anon_sym_print] = ACTIONS(748), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_COLON_EQ] = ACTIONS(285), - [anon_sym_if] = ACTIONS(270), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_match] = ACTIONS(748), - [anon_sym_async] = ACTIONS(748), - [anon_sym_in] = ACTIONS(270), - [anon_sym_STAR_STAR] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(750), - [anon_sym_RBRACK] = ACTIONS(268), - [anon_sym_not] = ACTIONS(752), - [anon_sym_and] = ACTIONS(270), - [anon_sym_or] = ACTIONS(270), - [anon_sym_PLUS] = ACTIONS(754), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(268), - [anon_sym_CARET] = ACTIONS(268), - [anon_sym_LT_LT] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(754), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_LT_EQ] = ACTIONS(268), - [anon_sym_EQ_EQ] = ACTIONS(268), - [anon_sym_BANG_EQ] = ACTIONS(268), - [anon_sym_GT_EQ] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_LT_GT] = ACTIONS(268), - [anon_sym_is] = ACTIONS(270), - [anon_sym_lambda] = ACTIONS(756), - [sym_ellipsis] = ACTIONS(758), - [anon_sym_LBRACE] = ACTIONS(760), - [sym_integer] = ACTIONS(762), - [sym_float] = ACTIONS(758), - [anon_sym_await] = ACTIONS(764), - [sym_true] = ACTIONS(762), - [sym_false] = ACTIONS(762), - [sym_none] = ACTIONS(762), + [sym_named_expression] = STATE(1427), + [sym__named_expression_lhs] = STATE(2513), + [sym_list_splat_pattern] = STATE(1406), + [sym_as_pattern] = STATE(1427), + [sym_expression] = STATE(1575), + [sym_primary_expression] = STATE(994), + [sym_not_operator] = STATE(1427), + [sym_boolean_operator] = STATE(1427), + [sym_binary_operator] = STATE(1426), + [sym_unary_operator] = STATE(1426), + [sym_comparison_operator] = STATE(1427), + [sym_lambda] = STATE(1427), + [sym_attribute] = STATE(1426), + [sym_subscript] = STATE(1426), + [sym_call] = STATE(1426), + [sym_list] = STATE(1426), + [sym_set] = STATE(1426), + [sym_tuple] = STATE(1426), + [sym_dictionary] = STATE(1426), + [sym_list_comprehension] = STATE(1426), + [sym_dictionary_comprehension] = STATE(1426), + [sym_set_comprehension] = STATE(1426), + [sym_generator_expression] = STATE(1426), + [sym_parenthesized_expression] = STATE(1426), + [sym_conditional_expression] = STATE(1427), + [sym_concatenated_string] = STATE(1426), + [sym_string] = STATE(996), + [sym_await] = STATE(1426), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(308), + [anon_sym_COMMA] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(310), + [anon_sym_print] = ACTIONS(312), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(302), + [anon_sym_match] = ACTIONS(312), + [anon_sym_async] = ACTIONS(312), + [anon_sym_STAR_STAR] = ACTIONS(272), + [anon_sym_exec] = ACTIONS(312), + [anon_sym_AT] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_EQ] = ACTIONS(302), + [anon_sym_not] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(320), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_SLASH_SLASH] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(272), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(320), + [anon_sym_lambda] = ACTIONS(322), + [sym_ellipsis] = ACTIONS(324), + [anon_sym_LBRACE] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(302), + [sym_type_conversion] = ACTIONS(302), + [sym_integer] = ACTIONS(328), + [sym_float] = ACTIONS(324), + [anon_sym_await] = ACTIONS(330), + [sym_true] = ACTIONS(328), + [sym_false] = ACTIONS(328), + [sym_none] = ACTIONS(328), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(766), + [sym_string_start] = ACTIONS(332), }, [166] = { - [sym_named_expression] = STATE(1606), - [sym__named_expression_lhs] = STATE(2400), - [sym_list_splat_pattern] = STATE(1516), - [sym_as_pattern] = STATE(1606), - [sym_expression] = STATE(1602), - [sym_primary_expression] = STATE(1104), - [sym_not_operator] = STATE(1606), - [sym_boolean_operator] = STATE(1606), - [sym_binary_operator] = STATE(1552), - [sym_unary_operator] = STATE(1552), - [sym_comparison_operator] = STATE(1606), - [sym_lambda] = STATE(1606), - [sym_attribute] = STATE(1552), - [sym_subscript] = STATE(1552), - [sym_call] = STATE(1552), - [sym_list] = STATE(1552), - [sym_set] = STATE(1552), - [sym_tuple] = STATE(1552), - [sym_dictionary] = STATE(1552), - [sym_list_comprehension] = STATE(1552), - [sym_dictionary_comprehension] = STATE(1552), - [sym_set_comprehension] = STATE(1552), - [sym_generator_expression] = STATE(1552), - [sym_parenthesized_expression] = STATE(1552), - [sym_conditional_expression] = STATE(1606), - [sym_concatenated_string] = STATE(1552), - [sym_string] = STATE(1157), - [sym_await] = STATE(1552), - [sym_identifier] = ACTIONS(716), - [anon_sym_DOT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(718), - [anon_sym_RPAREN] = ACTIONS(603), - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_as] = ACTIONS(344), - [anon_sym_STAR] = ACTIONS(720), - [anon_sym_print] = ACTIONS(722), - [anon_sym_GT_GT] = ACTIONS(603), - [anon_sym_COLON_EQ] = ACTIONS(285), - [anon_sym_if] = ACTIONS(344), - [anon_sym_match] = ACTIONS(722), - [anon_sym_async] = ACTIONS(722), - [anon_sym_for] = ACTIONS(347), - [anon_sym_in] = ACTIONS(344), - [anon_sym_STAR_STAR] = ACTIONS(603), - [anon_sym_exec] = ACTIONS(722), - [anon_sym_AT] = ACTIONS(603), - [anon_sym_LBRACK] = ACTIONS(724), - [anon_sym_not] = ACTIONS(726), - [anon_sym_and] = ACTIONS(344), - [anon_sym_or] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(728), - [anon_sym_DASH] = ACTIONS(728), - [anon_sym_SLASH] = ACTIONS(344), - [anon_sym_PERCENT] = ACTIONS(603), - [anon_sym_SLASH_SLASH] = ACTIONS(603), - [anon_sym_PIPE] = ACTIONS(603), - [anon_sym_AMP] = ACTIONS(603), - [anon_sym_CARET] = ACTIONS(603), - [anon_sym_LT_LT] = ACTIONS(603), - [anon_sym_TILDE] = ACTIONS(728), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_LT_EQ] = ACTIONS(603), - [anon_sym_EQ_EQ] = ACTIONS(603), - [anon_sym_BANG_EQ] = ACTIONS(603), - [anon_sym_GT_EQ] = ACTIONS(603), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LT_GT] = ACTIONS(603), - [anon_sym_is] = ACTIONS(344), - [anon_sym_lambda] = ACTIONS(730), - [sym_ellipsis] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [sym_integer] = ACTIONS(736), - [sym_float] = ACTIONS(732), - [anon_sym_await] = ACTIONS(738), - [sym_true] = ACTIONS(736), - [sym_false] = ACTIONS(736), - [sym_none] = ACTIONS(736), + [sym_named_expression] = STATE(1427), + [sym__named_expression_lhs] = STATE(2513), + [sym_list_splat_pattern] = STATE(1406), + [sym_as_pattern] = STATE(1427), + [sym_expression] = STATE(1575), + [sym_primary_expression] = STATE(994), + [sym_not_operator] = STATE(1427), + [sym_boolean_operator] = STATE(1427), + [sym_binary_operator] = STATE(1426), + [sym_unary_operator] = STATE(1426), + [sym_comparison_operator] = STATE(1427), + [sym_lambda] = STATE(1427), + [sym_attribute] = STATE(1426), + [sym_subscript] = STATE(1426), + [sym_call] = STATE(1426), + [sym_list] = STATE(1426), + [sym_set] = STATE(1426), + [sym_tuple] = STATE(1426), + [sym_dictionary] = STATE(1426), + [sym_list_comprehension] = STATE(1426), + [sym_dictionary_comprehension] = STATE(1426), + [sym_set_comprehension] = STATE(1426), + [sym_generator_expression] = STATE(1426), + [sym_parenthesized_expression] = STATE(1426), + [sym_conditional_expression] = STATE(1427), + [sym_concatenated_string] = STATE(1426), + [sym_string] = STATE(996), + [sym_await] = STATE(1426), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(308), + [anon_sym_RPAREN] = ACTIONS(346), + [anon_sym_COMMA] = ACTIONS(346), + [anon_sym_STAR] = ACTIONS(310), + [anon_sym_print] = ACTIONS(312), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(346), + [anon_sym_match] = ACTIONS(312), + [anon_sym_async] = ACTIONS(312), + [anon_sym_STAR_STAR] = ACTIONS(272), + [anon_sym_exec] = ACTIONS(312), + [anon_sym_AT] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_not] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(320), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_SLASH_SLASH] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(272), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(320), + [anon_sym_lambda] = ACTIONS(322), + [sym_ellipsis] = ACTIONS(324), + [anon_sym_LBRACE] = ACTIONS(326), + [sym_integer] = ACTIONS(328), + [sym_float] = ACTIONS(324), + [anon_sym_await] = ACTIONS(330), + [sym_true] = ACTIONS(328), + [sym_false] = ACTIONS(328), + [sym_none] = ACTIONS(328), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(740), + [sym_string_start] = ACTIONS(332), }, [167] = { - [sym_named_expression] = STATE(1506), - [sym__named_expression_lhs] = STATE(2385), - [sym_list_splat_pattern] = STATE(1397), - [sym_as_pattern] = STATE(1506), - [sym_expression] = STATE(1362), - [sym_primary_expression] = STATE(1059), - [sym_not_operator] = STATE(1506), - [sym_boolean_operator] = STATE(1506), - [sym_binary_operator] = STATE(1507), - [sym_unary_operator] = STATE(1507), - [sym_comparison_operator] = STATE(1506), - [sym_lambda] = STATE(1506), - [sym_attribute] = STATE(1507), - [sym_subscript] = STATE(1507), - [sym_call] = STATE(1507), - [sym_list] = STATE(1507), - [sym_set] = STATE(1507), - [sym_tuple] = STATE(1507), - [sym_dictionary] = STATE(1507), - [sym_list_comprehension] = STATE(1507), - [sym_dictionary_comprehension] = STATE(1507), - [sym_set_comprehension] = STATE(1507), - [sym_generator_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_conditional_expression] = STATE(1506), - [sym_concatenated_string] = STATE(1507), - [sym_string] = STATE(1058), - [sym_await] = STATE(1507), - [sym_identifier] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(692), - [anon_sym_COMMA] = ACTIONS(268), - [anon_sym_as] = ACTIONS(270), - [anon_sym_STAR] = ACTIONS(694), - [anon_sym_print] = ACTIONS(696), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_COLON_EQ] = ACTIONS(285), - [anon_sym_if] = ACTIONS(270), - [anon_sym_match] = ACTIONS(696), - [anon_sym_async] = ACTIONS(696), - [anon_sym_for] = ACTIONS(270), - [anon_sym_in] = ACTIONS(270), - [anon_sym_STAR_STAR] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(696), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(698), - [anon_sym_RBRACK] = ACTIONS(268), - [anon_sym_not] = ACTIONS(700), - [anon_sym_and] = ACTIONS(270), - [anon_sym_or] = ACTIONS(270), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(268), - [anon_sym_CARET] = ACTIONS(268), - [anon_sym_LT_LT] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(702), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_LT_EQ] = ACTIONS(268), - [anon_sym_EQ_EQ] = ACTIONS(268), - [anon_sym_BANG_EQ] = ACTIONS(268), - [anon_sym_GT_EQ] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_LT_GT] = ACTIONS(268), - [anon_sym_is] = ACTIONS(270), - [anon_sym_lambda] = ACTIONS(704), - [sym_ellipsis] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(708), - [sym_integer] = ACTIONS(710), - [sym_float] = ACTIONS(706), - [anon_sym_await] = ACTIONS(712), - [sym_true] = ACTIONS(710), - [sym_false] = ACTIONS(710), - [sym_none] = ACTIONS(710), + [sym_named_expression] = STATE(1427), + [sym__named_expression_lhs] = STATE(2513), + [sym_list_splat_pattern] = STATE(1406), + [sym_as_pattern] = STATE(1427), + [sym_expression] = STATE(1575), + [sym_primary_expression] = STATE(994), + [sym_not_operator] = STATE(1427), + [sym_boolean_operator] = STATE(1427), + [sym_binary_operator] = STATE(1426), + [sym_unary_operator] = STATE(1426), + [sym_comparison_operator] = STATE(1427), + [sym_lambda] = STATE(1427), + [sym_attribute] = STATE(1426), + [sym_subscript] = STATE(1426), + [sym_call] = STATE(1426), + [sym_list] = STATE(1426), + [sym_set] = STATE(1426), + [sym_tuple] = STATE(1426), + [sym_dictionary] = STATE(1426), + [sym_list_comprehension] = STATE(1426), + [sym_dictionary_comprehension] = STATE(1426), + [sym_set_comprehension] = STATE(1426), + [sym_generator_expression] = STATE(1426), + [sym_parenthesized_expression] = STATE(1426), + [sym_conditional_expression] = STATE(1427), + [sym_concatenated_string] = STATE(1426), + [sym_string] = STATE(996), + [sym_await] = STATE(1426), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(308), + [anon_sym_RPAREN] = ACTIONS(744), + [anon_sym_COMMA] = ACTIONS(744), + [anon_sym_STAR] = ACTIONS(310), + [anon_sym_print] = ACTIONS(312), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(744), + [anon_sym_match] = ACTIONS(312), + [anon_sym_async] = ACTIONS(312), + [anon_sym_STAR_STAR] = ACTIONS(272), + [anon_sym_exec] = ACTIONS(312), + [anon_sym_AT] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_not] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(320), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_SLASH_SLASH] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(272), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(320), + [anon_sym_lambda] = ACTIONS(322), + [sym_ellipsis] = ACTIONS(324), + [anon_sym_LBRACE] = ACTIONS(326), + [sym_integer] = ACTIONS(328), + [sym_float] = ACTIONS(324), + [anon_sym_await] = ACTIONS(330), + [sym_true] = ACTIONS(328), + [sym_false] = ACTIONS(328), + [sym_none] = ACTIONS(328), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(714), + [sym_string_start] = ACTIONS(332), }, [168] = { - [sym_named_expression] = STATE(1456), - [sym__named_expression_lhs] = STATE(2379), - [sym_list_splat_pattern] = STATE(1366), - [sym_as_pattern] = STATE(1456), - [sym_expression] = STATE(1638), - [sym_primary_expression] = STATE(1079), - [sym_not_operator] = STATE(1456), - [sym_boolean_operator] = STATE(1456), - [sym_binary_operator] = STATE(1455), - [sym_unary_operator] = STATE(1455), - [sym_comparison_operator] = STATE(1456), - [sym_lambda] = STATE(1456), - [sym_attribute] = STATE(1455), - [sym_subscript] = STATE(1455), - [sym_call] = STATE(1455), - [sym_list] = STATE(1455), - [sym_set] = STATE(1455), - [sym_tuple] = STATE(1455), - [sym_dictionary] = STATE(1455), - [sym_list_comprehension] = STATE(1455), - [sym_dictionary_comprehension] = STATE(1455), - [sym_set_comprehension] = STATE(1455), - [sym_generator_expression] = STATE(1455), - [sym_parenthesized_expression] = STATE(1455), - [sym_conditional_expression] = STATE(1456), - [sym_concatenated_string] = STATE(1455), - [sym_string] = STATE(1071), - [sym_await] = STATE(1455), - [sym_identifier] = ACTIONS(314), - [anon_sym_DOT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_COMMA] = ACTIONS(342), - [anon_sym_as] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_print] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(603), - [anon_sym_if] = ACTIONS(347), - [anon_sym_COLON] = ACTIONS(342), - [anon_sym_match] = ACTIONS(320), - [anon_sym_async] = ACTIONS(320), - [anon_sym_for] = ACTIONS(347), - [anon_sym_in] = ACTIONS(347), - [anon_sym_STAR_STAR] = ACTIONS(603), - [anon_sym_exec] = ACTIONS(320), - [anon_sym_AT] = ACTIONS(603), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_RBRACK] = ACTIONS(342), - [anon_sym_not] = ACTIONS(324), - [anon_sym_and] = ACTIONS(347), - [anon_sym_or] = ACTIONS(347), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_SLASH] = ACTIONS(344), - [anon_sym_PERCENT] = ACTIONS(603), - [anon_sym_SLASH_SLASH] = ACTIONS(603), - [anon_sym_PIPE] = ACTIONS(603), - [anon_sym_AMP] = ACTIONS(603), - [anon_sym_CARET] = ACTIONS(603), - [anon_sym_LT_LT] = ACTIONS(603), - [anon_sym_TILDE] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(347), - [anon_sym_LT_EQ] = ACTIONS(342), - [anon_sym_EQ_EQ] = ACTIONS(342), - [anon_sym_BANG_EQ] = ACTIONS(342), - [anon_sym_GT_EQ] = ACTIONS(342), - [anon_sym_GT] = ACTIONS(347), - [anon_sym_LT_GT] = ACTIONS(342), - [anon_sym_is] = ACTIONS(347), - [anon_sym_lambda] = ACTIONS(330), - [sym_ellipsis] = ACTIONS(332), - [anon_sym_LBRACE] = ACTIONS(334), - [sym_integer] = ACTIONS(336), - [sym_float] = ACTIONS(332), - [anon_sym_await] = ACTIONS(338), - [sym_true] = ACTIONS(336), - [sym_false] = ACTIONS(336), - [sym_none] = ACTIONS(336), + [sym_named_expression] = STATE(1427), + [sym__named_expression_lhs] = STATE(2513), + [sym_list_splat_pattern] = STATE(1406), + [sym_as_pattern] = STATE(1427), + [sym_expression] = STATE(1575), + [sym_primary_expression] = STATE(994), + [sym_not_operator] = STATE(1427), + [sym_boolean_operator] = STATE(1427), + [sym_binary_operator] = STATE(1426), + [sym_unary_operator] = STATE(1426), + [sym_comparison_operator] = STATE(1427), + [sym_lambda] = STATE(1427), + [sym_attribute] = STATE(1426), + [sym_subscript] = STATE(1426), + [sym_call] = STATE(1426), + [sym_list] = STATE(1426), + [sym_set] = STATE(1426), + [sym_tuple] = STATE(1426), + [sym_dictionary] = STATE(1426), + [sym_list_comprehension] = STATE(1426), + [sym_dictionary_comprehension] = STATE(1426), + [sym_set_comprehension] = STATE(1426), + [sym_generator_expression] = STATE(1426), + [sym_parenthesized_expression] = STATE(1426), + [sym_conditional_expression] = STATE(1427), + [sym_concatenated_string] = STATE(1426), + [sym_string] = STATE(996), + [sym_await] = STATE(1426), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(308), + [anon_sym_COMMA] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(310), + [anon_sym_print] = ACTIONS(312), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_match] = ACTIONS(312), + [anon_sym_async] = ACTIONS(312), + [anon_sym_STAR_STAR] = ACTIONS(272), + [anon_sym_exec] = ACTIONS(312), + [anon_sym_AT] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_RBRACK] = ACTIONS(302), + [anon_sym_not] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(320), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_SLASH_SLASH] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(272), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(320), + [anon_sym_lambda] = ACTIONS(322), + [sym_ellipsis] = ACTIONS(324), + [anon_sym_LBRACE] = ACTIONS(326), + [sym_integer] = ACTIONS(328), + [sym_float] = ACTIONS(324), + [anon_sym_await] = ACTIONS(330), + [sym_true] = ACTIONS(328), + [sym_false] = ACTIONS(328), + [sym_none] = ACTIONS(328), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(340), + [sym_string_start] = ACTIONS(332), }, [169] = { - [sym_named_expression] = STATE(1606), - [sym__named_expression_lhs] = STATE(2400), - [sym_list_splat_pattern] = STATE(1516), - [sym_as_pattern] = STATE(1606), - [sym_expression] = STATE(1602), - [sym_primary_expression] = STATE(1104), - [sym_not_operator] = STATE(1606), - [sym_boolean_operator] = STATE(1606), - [sym_binary_operator] = STATE(1552), - [sym_unary_operator] = STATE(1552), - [sym_comparison_operator] = STATE(1606), - [sym_lambda] = STATE(1606), - [sym_attribute] = STATE(1552), - [sym_subscript] = STATE(1552), - [sym_call] = STATE(1552), - [sym_list] = STATE(1552), - [sym_set] = STATE(1552), - [sym_tuple] = STATE(1552), - [sym_dictionary] = STATE(1552), - [sym_list_comprehension] = STATE(1552), - [sym_dictionary_comprehension] = STATE(1552), - [sym_set_comprehension] = STATE(1552), - [sym_generator_expression] = STATE(1552), - [sym_parenthesized_expression] = STATE(1552), - [sym_conditional_expression] = STATE(1606), - [sym_concatenated_string] = STATE(1552), - [sym_string] = STATE(1157), - [sym_await] = STATE(1552), - [sym_identifier] = ACTIONS(716), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(718), - [anon_sym_RPAREN] = ACTIONS(268), - [anon_sym_COMMA] = ACTIONS(268), - [anon_sym_as] = ACTIONS(270), - [anon_sym_STAR] = ACTIONS(720), - [anon_sym_print] = ACTIONS(722), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_COLON_EQ] = ACTIONS(285), - [anon_sym_if] = ACTIONS(270), - [anon_sym_match] = ACTIONS(722), - [anon_sym_async] = ACTIONS(722), - [anon_sym_in] = ACTIONS(270), - [anon_sym_STAR_STAR] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(722), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(724), - [anon_sym_EQ] = ACTIONS(668), - [anon_sym_not] = ACTIONS(726), - [anon_sym_and] = ACTIONS(270), - [anon_sym_or] = ACTIONS(270), - [anon_sym_PLUS] = ACTIONS(728), - [anon_sym_DASH] = ACTIONS(728), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(268), - [anon_sym_CARET] = ACTIONS(268), - [anon_sym_LT_LT] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(728), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_LT_EQ] = ACTIONS(268), - [anon_sym_EQ_EQ] = ACTIONS(268), - [anon_sym_BANG_EQ] = ACTIONS(268), - [anon_sym_GT_EQ] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_LT_GT] = ACTIONS(268), - [anon_sym_is] = ACTIONS(270), - [anon_sym_lambda] = ACTIONS(730), - [sym_ellipsis] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [sym_integer] = ACTIONS(736), - [sym_float] = ACTIONS(732), - [anon_sym_await] = ACTIONS(738), - [sym_true] = ACTIONS(736), - [sym_false] = ACTIONS(736), - [sym_none] = ACTIONS(736), + [sym_named_expression] = STATE(1427), + [sym__named_expression_lhs] = STATE(2513), + [sym_list_splat_pattern] = STATE(1406), + [sym_as_pattern] = STATE(1427), + [sym_expression] = STATE(1575), + [sym_primary_expression] = STATE(994), + [sym_not_operator] = STATE(1427), + [sym_boolean_operator] = STATE(1427), + [sym_binary_operator] = STATE(1426), + [sym_unary_operator] = STATE(1426), + [sym_comparison_operator] = STATE(1427), + [sym_lambda] = STATE(1427), + [sym_attribute] = STATE(1426), + [sym_subscript] = STATE(1426), + [sym_call] = STATE(1426), + [sym_list] = STATE(1426), + [sym_set] = STATE(1426), + [sym_tuple] = STATE(1426), + [sym_dictionary] = STATE(1426), + [sym_list_comprehension] = STATE(1426), + [sym_dictionary_comprehension] = STATE(1426), + [sym_set_comprehension] = STATE(1426), + [sym_generator_expression] = STATE(1426), + [sym_parenthesized_expression] = STATE(1426), + [sym_conditional_expression] = STATE(1427), + [sym_concatenated_string] = STATE(1426), + [sym_string] = STATE(996), + [sym_await] = STATE(1426), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(308), + [anon_sym_COMMA] = ACTIONS(744), + [anon_sym_STAR] = ACTIONS(310), + [anon_sym_print] = ACTIONS(312), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(744), + [anon_sym_match] = ACTIONS(312), + [anon_sym_async] = ACTIONS(312), + [anon_sym_STAR_STAR] = ACTIONS(272), + [anon_sym_exec] = ACTIONS(312), + [anon_sym_AT] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_not] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(320), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_SLASH_SLASH] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(272), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(320), + [anon_sym_lambda] = ACTIONS(322), + [sym_ellipsis] = ACTIONS(324), + [anon_sym_LBRACE] = ACTIONS(326), + [sym_integer] = ACTIONS(328), + [sym_float] = ACTIONS(324), + [anon_sym_await] = ACTIONS(330), + [sym_true] = ACTIONS(328), + [sym_false] = ACTIONS(328), + [sym_none] = ACTIONS(328), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(740), + [sym_string_start] = ACTIONS(332), }, [170] = { - [sym_named_expression] = STATE(1456), - [sym__named_expression_lhs] = STATE(2379), - [sym_list_splat_pattern] = STATE(1366), - [sym_as_pattern] = STATE(1456), - [sym_expression] = STATE(1638), - [sym_primary_expression] = STATE(1079), - [sym_not_operator] = STATE(1456), - [sym_boolean_operator] = STATE(1456), - [sym_binary_operator] = STATE(1455), - [sym_unary_operator] = STATE(1455), - [sym_comparison_operator] = STATE(1456), - [sym_lambda] = STATE(1456), - [sym_attribute] = STATE(1455), - [sym_subscript] = STATE(1455), - [sym_call] = STATE(1455), - [sym_list] = STATE(1455), - [sym_set] = STATE(1455), - [sym_tuple] = STATE(1455), - [sym_dictionary] = STATE(1455), - [sym_list_comprehension] = STATE(1455), - [sym_dictionary_comprehension] = STATE(1455), - [sym_set_comprehension] = STATE(1455), - [sym_generator_expression] = STATE(1455), - [sym_parenthesized_expression] = STATE(1455), - [sym_conditional_expression] = STATE(1456), - [sym_concatenated_string] = STATE(1455), - [sym_string] = STATE(1071), - [sym_await] = STATE(1455), - [sym_identifier] = ACTIONS(314), - [anon_sym_DOT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_COMMA] = ACTIONS(342), - [anon_sym_as] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_print] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(603), - [anon_sym_if] = ACTIONS(347), - [anon_sym_COLON] = ACTIONS(342), - [anon_sym_else] = ACTIONS(347), - [anon_sym_match] = ACTIONS(320), - [anon_sym_async] = ACTIONS(320), - [anon_sym_in] = ACTIONS(347), - [anon_sym_STAR_STAR] = ACTIONS(603), - [anon_sym_exec] = ACTIONS(320), - [anon_sym_AT] = ACTIONS(603), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_EQ] = ACTIONS(347), - [anon_sym_not] = ACTIONS(324), - [anon_sym_and] = ACTIONS(347), - [anon_sym_or] = ACTIONS(347), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_SLASH] = ACTIONS(344), - [anon_sym_PERCENT] = ACTIONS(603), - [anon_sym_SLASH_SLASH] = ACTIONS(603), - [anon_sym_PIPE] = ACTIONS(603), - [anon_sym_AMP] = ACTIONS(603), - [anon_sym_CARET] = ACTIONS(603), - [anon_sym_LT_LT] = ACTIONS(603), - [anon_sym_TILDE] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(347), - [anon_sym_LT_EQ] = ACTIONS(342), - [anon_sym_EQ_EQ] = ACTIONS(342), - [anon_sym_BANG_EQ] = ACTIONS(342), - [anon_sym_GT_EQ] = ACTIONS(342), - [anon_sym_GT] = ACTIONS(347), - [anon_sym_LT_GT] = ACTIONS(342), - [anon_sym_is] = ACTIONS(347), - [anon_sym_lambda] = ACTIONS(330), - [sym_ellipsis] = ACTIONS(332), - [anon_sym_LBRACE] = ACTIONS(334), - [sym_integer] = ACTIONS(336), - [sym_float] = ACTIONS(332), - [anon_sym_await] = ACTIONS(338), - [sym_true] = ACTIONS(336), - [sym_false] = ACTIONS(336), - [sym_none] = ACTIONS(336), + [sym_named_expression] = STATE(1427), + [sym__named_expression_lhs] = STATE(2513), + [sym_list_splat_pattern] = STATE(1406), + [sym_as_pattern] = STATE(1427), + [sym_expression] = STATE(1575), + [sym_primary_expression] = STATE(994), + [sym_not_operator] = STATE(1427), + [sym_boolean_operator] = STATE(1427), + [sym_binary_operator] = STATE(1426), + [sym_unary_operator] = STATE(1426), + [sym_comparison_operator] = STATE(1427), + [sym_lambda] = STATE(1427), + [sym_attribute] = STATE(1426), + [sym_subscript] = STATE(1426), + [sym_call] = STATE(1426), + [sym_list] = STATE(1426), + [sym_set] = STATE(1426), + [sym_tuple] = STATE(1426), + [sym_dictionary] = STATE(1426), + [sym_list_comprehension] = STATE(1426), + [sym_dictionary_comprehension] = STATE(1426), + [sym_set_comprehension] = STATE(1426), + [sym_generator_expression] = STATE(1426), + [sym_parenthesized_expression] = STATE(1426), + [sym_conditional_expression] = STATE(1427), + [sym_concatenated_string] = STATE(1426), + [sym_string] = STATE(996), + [sym_await] = STATE(1426), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(308), + [anon_sym_COMMA] = ACTIONS(346), + [anon_sym_STAR] = ACTIONS(310), + [anon_sym_print] = ACTIONS(312), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_COLON] = ACTIONS(346), + [anon_sym_match] = ACTIONS(312), + [anon_sym_async] = ACTIONS(312), + [anon_sym_STAR_STAR] = ACTIONS(272), + [anon_sym_exec] = ACTIONS(312), + [anon_sym_AT] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_not] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(320), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_SLASH_SLASH] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(272), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(320), + [anon_sym_lambda] = ACTIONS(322), + [sym_ellipsis] = ACTIONS(324), + [anon_sym_LBRACE] = ACTIONS(326), + [sym_integer] = ACTIONS(328), + [sym_float] = ACTIONS(324), + [anon_sym_await] = ACTIONS(330), + [sym_true] = ACTIONS(328), + [sym_false] = ACTIONS(328), + [sym_none] = ACTIONS(328), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(340), + [sym_string_start] = ACTIONS(332), }, [171] = { - [sym_named_expression] = STATE(1581), - [sym__named_expression_lhs] = STATE(2405), - [sym_list_splat_pattern] = STATE(1598), - [sym_as_pattern] = STATE(1581), - [sym_expression] = STATE(1594), - [sym_primary_expression] = STATE(1107), - [sym_not_operator] = STATE(1581), - [sym_boolean_operator] = STATE(1581), - [sym_binary_operator] = STATE(1580), - [sym_unary_operator] = STATE(1580), - [sym_comparison_operator] = STATE(1581), - [sym_lambda] = STATE(1581), - [sym_attribute] = STATE(1580), - [sym_subscript] = STATE(1580), - [sym_call] = STATE(1580), - [sym_list] = STATE(1580), - [sym_set] = STATE(1580), - [sym_tuple] = STATE(1580), - [sym_dictionary] = STATE(1580), - [sym_list_comprehension] = STATE(1580), - [sym_dictionary_comprehension] = STATE(1580), - [sym_set_comprehension] = STATE(1580), - [sym_generator_expression] = STATE(1580), - [sym_parenthesized_expression] = STATE(1580), - [sym_conditional_expression] = STATE(1581), - [sym_concatenated_string] = STATE(1580), - [sym_string] = STATE(1132), - [sym_await] = STATE(1580), - [sym_identifier] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(744), - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_as] = ACTIONS(344), - [anon_sym_STAR] = ACTIONS(746), - [anon_sym_print] = ACTIONS(748), - [anon_sym_GT_GT] = ACTIONS(603), - [anon_sym_COLON_EQ] = ACTIONS(285), - [anon_sym_if] = ACTIONS(344), - [anon_sym_match] = ACTIONS(748), - [anon_sym_async] = ACTIONS(748), - [anon_sym_for] = ACTIONS(347), - [anon_sym_in] = ACTIONS(344), - [anon_sym_STAR_STAR] = ACTIONS(603), - [anon_sym_exec] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(603), - [anon_sym_LBRACK] = ACTIONS(750), - [anon_sym_RBRACK] = ACTIONS(603), - [anon_sym_not] = ACTIONS(752), - [anon_sym_and] = ACTIONS(344), - [anon_sym_or] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(754), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_SLASH] = ACTIONS(344), - [anon_sym_PERCENT] = ACTIONS(603), - [anon_sym_SLASH_SLASH] = ACTIONS(603), - [anon_sym_PIPE] = ACTIONS(603), - [anon_sym_AMP] = ACTIONS(603), - [anon_sym_CARET] = ACTIONS(603), - [anon_sym_LT_LT] = ACTIONS(603), - [anon_sym_TILDE] = ACTIONS(754), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_LT_EQ] = ACTIONS(603), - [anon_sym_EQ_EQ] = ACTIONS(603), - [anon_sym_BANG_EQ] = ACTIONS(603), - [anon_sym_GT_EQ] = ACTIONS(603), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LT_GT] = ACTIONS(603), - [anon_sym_is] = ACTIONS(344), - [anon_sym_lambda] = ACTIONS(756), - [sym_ellipsis] = ACTIONS(758), - [anon_sym_LBRACE] = ACTIONS(760), - [sym_integer] = ACTIONS(762), - [sym_float] = ACTIONS(758), - [anon_sym_await] = ACTIONS(764), - [sym_true] = ACTIONS(762), - [sym_false] = ACTIONS(762), - [sym_none] = ACTIONS(762), + [sym_named_expression] = STATE(1427), + [sym__named_expression_lhs] = STATE(2513), + [sym_list_splat_pattern] = STATE(1406), + [sym_as_pattern] = STATE(1427), + [sym_expression] = STATE(1575), + [sym_primary_expression] = STATE(994), + [sym_not_operator] = STATE(1427), + [sym_boolean_operator] = STATE(1427), + [sym_binary_operator] = STATE(1426), + [sym_unary_operator] = STATE(1426), + [sym_comparison_operator] = STATE(1427), + [sym_lambda] = STATE(1427), + [sym_attribute] = STATE(1426), + [sym_subscript] = STATE(1426), + [sym_call] = STATE(1426), + [sym_list] = STATE(1426), + [sym_set] = STATE(1426), + [sym_tuple] = STATE(1426), + [sym_dictionary] = STATE(1426), + [sym_list_comprehension] = STATE(1426), + [sym_dictionary_comprehension] = STATE(1426), + [sym_set_comprehension] = STATE(1426), + [sym_generator_expression] = STATE(1426), + [sym_parenthesized_expression] = STATE(1426), + [sym_conditional_expression] = STATE(1427), + [sym_concatenated_string] = STATE(1426), + [sym_string] = STATE(996), + [sym_await] = STATE(1426), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(308), + [anon_sym_COMMA] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(310), + [anon_sym_print] = ACTIONS(312), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_match] = ACTIONS(312), + [anon_sym_async] = ACTIONS(312), + [anon_sym_in] = ACTIONS(291), + [anon_sym_STAR_STAR] = ACTIONS(272), + [anon_sym_exec] = ACTIONS(312), + [anon_sym_AT] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_not] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(320), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_SLASH_SLASH] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(272), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(320), + [anon_sym_lambda] = ACTIONS(322), + [sym_ellipsis] = ACTIONS(324), + [anon_sym_LBRACE] = ACTIONS(326), + [sym_integer] = ACTIONS(328), + [sym_float] = ACTIONS(324), + [anon_sym_await] = ACTIONS(330), + [sym_true] = ACTIONS(328), + [sym_false] = ACTIONS(328), + [sym_none] = ACTIONS(328), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(766), + [sym_string_start] = ACTIONS(332), }, [172] = { - [sym_named_expression] = STATE(1581), - [sym__named_expression_lhs] = STATE(2405), - [sym_list_splat_pattern] = STATE(1598), - [sym_as_pattern] = STATE(1581), - [sym_expression] = STATE(1594), - [sym_primary_expression] = STATE(1107), - [sym_not_operator] = STATE(1581), - [sym_boolean_operator] = STATE(1581), - [sym_binary_operator] = STATE(1580), - [sym_unary_operator] = STATE(1580), - [sym_comparison_operator] = STATE(1581), - [sym_lambda] = STATE(1581), - [sym_attribute] = STATE(1580), - [sym_subscript] = STATE(1580), - [sym_call] = STATE(1580), - [sym_list] = STATE(1580), - [sym_set] = STATE(1580), - [sym_tuple] = STATE(1580), - [sym_dictionary] = STATE(1580), - [sym_list_comprehension] = STATE(1580), - [sym_dictionary_comprehension] = STATE(1580), - [sym_set_comprehension] = STATE(1580), - [sym_generator_expression] = STATE(1580), - [sym_parenthesized_expression] = STATE(1580), - [sym_conditional_expression] = STATE(1581), - [sym_concatenated_string] = STATE(1580), - [sym_string] = STATE(1132), - [sym_await] = STATE(1580), - [sym_identifier] = ACTIONS(742), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(744), - [anon_sym_COMMA] = ACTIONS(268), - [anon_sym_as] = ACTIONS(270), - [anon_sym_STAR] = ACTIONS(746), - [anon_sym_print] = ACTIONS(748), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_COLON] = ACTIONS(268), - [anon_sym_match] = ACTIONS(748), - [anon_sym_async] = ACTIONS(748), - [anon_sym_in] = ACTIONS(270), - [anon_sym_STAR_STAR] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(750), - [anon_sym_RBRACK] = ACTIONS(268), - [anon_sym_not] = ACTIONS(752), - [anon_sym_and] = ACTIONS(270), - [anon_sym_or] = ACTIONS(270), - [anon_sym_PLUS] = ACTIONS(754), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(268), - [anon_sym_CARET] = ACTIONS(268), - [anon_sym_LT_LT] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(754), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_LT_EQ] = ACTIONS(268), - [anon_sym_EQ_EQ] = ACTIONS(268), - [anon_sym_BANG_EQ] = ACTIONS(268), - [anon_sym_GT_EQ] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_LT_GT] = ACTIONS(268), - [anon_sym_is] = ACTIONS(270), - [anon_sym_lambda] = ACTIONS(756), - [sym_ellipsis] = ACTIONS(758), - [anon_sym_LBRACE] = ACTIONS(760), - [sym_integer] = ACTIONS(762), - [sym_float] = ACTIONS(758), - [anon_sym_await] = ACTIONS(764), - [sym_true] = ACTIONS(762), - [sym_false] = ACTIONS(762), - [sym_none] = ACTIONS(762), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(766), - }, - [173] = { - [sym_named_expression] = STATE(1506), - [sym__named_expression_lhs] = STATE(2385), - [sym_list_splat_pattern] = STATE(1397), - [sym_as_pattern] = STATE(1506), - [sym_expression] = STATE(1362), - [sym_primary_expression] = STATE(1059), - [sym_not_operator] = STATE(1506), - [sym_boolean_operator] = STATE(1506), - [sym_binary_operator] = STATE(1507), - [sym_unary_operator] = STATE(1507), - [sym_comparison_operator] = STATE(1506), - [sym_lambda] = STATE(1506), - [sym_attribute] = STATE(1507), - [sym_subscript] = STATE(1507), - [sym_call] = STATE(1507), - [sym_list] = STATE(1507), - [sym_set] = STATE(1507), - [sym_tuple] = STATE(1507), - [sym_dictionary] = STATE(1507), - [sym_list_comprehension] = STATE(1507), - [sym_dictionary_comprehension] = STATE(1507), - [sym_set_comprehension] = STATE(1507), - [sym_generator_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_conditional_expression] = STATE(1506), - [sym_concatenated_string] = STATE(1507), - [sym_string] = STATE(1058), - [sym_await] = STATE(1507), - [sym_identifier] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(692), - [anon_sym_COMMA] = ACTIONS(268), - [anon_sym_as] = ACTIONS(270), - [anon_sym_STAR] = ACTIONS(694), - [anon_sym_print] = ACTIONS(696), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_match] = ACTIONS(696), - [anon_sym_async] = ACTIONS(696), - [anon_sym_for] = ACTIONS(270), - [anon_sym_in] = ACTIONS(270), - [anon_sym_STAR_STAR] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(696), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(698), - [anon_sym_RBRACK] = ACTIONS(268), - [anon_sym_not] = ACTIONS(700), - [anon_sym_and] = ACTIONS(270), - [anon_sym_or] = ACTIONS(270), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(268), - [anon_sym_CARET] = ACTIONS(268), - [anon_sym_LT_LT] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(702), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_LT_EQ] = ACTIONS(268), - [anon_sym_EQ_EQ] = ACTIONS(268), - [anon_sym_BANG_EQ] = ACTIONS(268), - [anon_sym_GT_EQ] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_LT_GT] = ACTIONS(268), - [anon_sym_is] = ACTIONS(270), - [anon_sym_lambda] = ACTIONS(704), - [sym_ellipsis] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(708), - [sym_integer] = ACTIONS(710), - [sym_float] = ACTIONS(706), - [anon_sym_await] = ACTIONS(712), - [sym_true] = ACTIONS(710), - [sym_false] = ACTIONS(710), - [sym_none] = ACTIONS(710), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(714), - }, - [174] = { - [sym_named_expression] = STATE(1454), - [sym__named_expression_lhs] = STATE(2415), - [sym_list_splat_pattern] = STATE(1407), - [sym_as_pattern] = STATE(1454), - [sym_expression] = STATE(1372), - [sym_primary_expression] = STATE(1098), - [sym_not_operator] = STATE(1454), - [sym_boolean_operator] = STATE(1454), - [sym_binary_operator] = STATE(1385), - [sym_unary_operator] = STATE(1385), - [sym_comparison_operator] = STATE(1454), - [sym_lambda] = STATE(1454), - [sym_attribute] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_call] = STATE(1385), - [sym_list] = STATE(1385), - [sym_set] = STATE(1385), - [sym_tuple] = STATE(1385), - [sym_dictionary] = STATE(1385), - [sym_list_comprehension] = STATE(1385), - [sym_dictionary_comprehension] = STATE(1385), - [sym_set_comprehension] = STATE(1385), - [sym_generator_expression] = STATE(1385), - [sym_parenthesized_expression] = STATE(1385), - [sym_conditional_expression] = STATE(1454), - [sym_concatenated_string] = STATE(1385), - [sym_string] = STATE(1095), - [sym_await] = STATE(1385), - [sym_identifier] = ACTIONS(658), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(660), - [anon_sym_RPAREN] = ACTIONS(268), - [anon_sym_COMMA] = ACTIONS(268), - [anon_sym_as] = ACTIONS(270), - [anon_sym_STAR] = ACTIONS(662), - [anon_sym_print] = ACTIONS(664), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_match] = ACTIONS(664), - [anon_sym_async] = ACTIONS(664), - [anon_sym_for] = ACTIONS(270), - [anon_sym_in] = ACTIONS(270), - [anon_sym_STAR_STAR] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(664), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(666), - [anon_sym_not] = ACTIONS(670), - [anon_sym_and] = ACTIONS(270), - [anon_sym_or] = ACTIONS(270), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(268), - [anon_sym_CARET] = ACTIONS(268), - [anon_sym_LT_LT] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(672), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_LT_EQ] = ACTIONS(268), - [anon_sym_EQ_EQ] = ACTIONS(268), - [anon_sym_BANG_EQ] = ACTIONS(268), - [anon_sym_GT_EQ] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_LT_GT] = ACTIONS(268), - [anon_sym_is] = ACTIONS(270), - [anon_sym_lambda] = ACTIONS(674), - [sym_ellipsis] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(678), - [sym_integer] = ACTIONS(680), - [sym_float] = ACTIONS(676), - [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_none] = ACTIONS(680), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(684), - }, - [175] = { - [sym_named_expression] = STATE(1456), - [sym__named_expression_lhs] = STATE(2379), - [sym_list_splat_pattern] = STATE(1366), - [sym_as_pattern] = STATE(1456), - [sym_expression] = STATE(1638), - [sym_primary_expression] = STATE(1079), - [sym_not_operator] = STATE(1456), - [sym_boolean_operator] = STATE(1456), - [sym_binary_operator] = STATE(1455), - [sym_unary_operator] = STATE(1455), - [sym_comparison_operator] = STATE(1456), - [sym_lambda] = STATE(1456), - [sym_attribute] = STATE(1455), - [sym_subscript] = STATE(1455), - [sym_call] = STATE(1455), - [sym_list] = STATE(1455), - [sym_set] = STATE(1455), - [sym_tuple] = STATE(1455), - [sym_dictionary] = STATE(1455), - [sym_list_comprehension] = STATE(1455), - [sym_dictionary_comprehension] = STATE(1455), - [sym_set_comprehension] = STATE(1455), - [sym_generator_expression] = STATE(1455), - [sym_parenthesized_expression] = STATE(1455), - [sym_conditional_expression] = STATE(1456), - [sym_concatenated_string] = STATE(1455), - [sym_string] = STATE(1071), - [sym_await] = STATE(1455), - [sym_identifier] = ACTIONS(314), - [anon_sym_DOT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_COMMA] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_print] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(344), - [anon_sym_COLON] = ACTIONS(342), - [anon_sym_match] = ACTIONS(320), - [anon_sym_async] = ACTIONS(320), - [anon_sym_STAR_STAR] = ACTIONS(344), - [anon_sym_exec] = ACTIONS(320), - [anon_sym_AT] = ACTIONS(344), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_EQ] = ACTIONS(342), - [anon_sym_not] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(344), - [anon_sym_PERCENT] = ACTIONS(344), - [anon_sym_SLASH_SLASH] = ACTIONS(344), - [anon_sym_PIPE] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(344), - [anon_sym_CARET] = ACTIONS(344), - [anon_sym_LT_LT] = ACTIONS(344), - [anon_sym_TILDE] = ACTIONS(328), - [anon_sym_lambda] = ACTIONS(330), - [anon_sym_PLUS_EQ] = ACTIONS(342), - [anon_sym_DASH_EQ] = ACTIONS(342), - [anon_sym_STAR_EQ] = ACTIONS(342), - [anon_sym_SLASH_EQ] = ACTIONS(342), - [anon_sym_AT_EQ] = ACTIONS(342), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(342), - [anon_sym_PERCENT_EQ] = ACTIONS(342), - [anon_sym_STAR_STAR_EQ] = ACTIONS(342), - [anon_sym_GT_GT_EQ] = ACTIONS(342), - [anon_sym_LT_LT_EQ] = ACTIONS(342), - [anon_sym_AMP_EQ] = ACTIONS(342), - [anon_sym_CARET_EQ] = ACTIONS(342), - [anon_sym_PIPE_EQ] = ACTIONS(342), - [sym_ellipsis] = ACTIONS(332), - [anon_sym_LBRACE] = ACTIONS(334), - [sym_integer] = ACTIONS(336), - [sym_float] = ACTIONS(332), - [anon_sym_await] = ACTIONS(338), - [sym_true] = ACTIONS(336), - [sym_false] = ACTIONS(336), - [sym_none] = ACTIONS(336), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(340), - }, - [176] = { - [sym_named_expression] = STATE(1606), - [sym__named_expression_lhs] = STATE(2400), - [sym_list_splat_pattern] = STATE(1516), - [sym_as_pattern] = STATE(1606), - [sym_expression] = STATE(1602), - [sym_primary_expression] = STATE(1104), - [sym_not_operator] = STATE(1606), - [sym_boolean_operator] = STATE(1606), - [sym_binary_operator] = STATE(1552), - [sym_unary_operator] = STATE(1552), - [sym_comparison_operator] = STATE(1606), - [sym_lambda] = STATE(1606), - [sym_attribute] = STATE(1552), - [sym_subscript] = STATE(1552), - [sym_call] = STATE(1552), - [sym_list] = STATE(1552), - [sym_set] = STATE(1552), - [sym_tuple] = STATE(1552), - [sym_dictionary] = STATE(1552), - [sym_list_comprehension] = STATE(1552), - [sym_dictionary_comprehension] = STATE(1552), - [sym_set_comprehension] = STATE(1552), - [sym_generator_expression] = STATE(1552), - [sym_parenthesized_expression] = STATE(1552), - [sym_conditional_expression] = STATE(1606), - [sym_concatenated_string] = STATE(1552), - [sym_string] = STATE(1157), - [sym_await] = STATE(1552), - [sym_identifier] = ACTIONS(716), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(718), - [anon_sym_RPAREN] = ACTIONS(268), - [anon_sym_COMMA] = ACTIONS(268), - [anon_sym_as] = ACTIONS(270), - [anon_sym_STAR] = ACTIONS(720), - [anon_sym_print] = ACTIONS(722), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_match] = ACTIONS(722), - [anon_sym_async] = ACTIONS(722), - [anon_sym_in] = ACTIONS(270), - [anon_sym_STAR_STAR] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(722), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(724), - [anon_sym_EQ] = ACTIONS(270), - [anon_sym_not] = ACTIONS(726), - [anon_sym_and] = ACTIONS(270), - [anon_sym_or] = ACTIONS(270), - [anon_sym_PLUS] = ACTIONS(728), - [anon_sym_DASH] = ACTIONS(728), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(268), - [anon_sym_CARET] = ACTIONS(268), - [anon_sym_LT_LT] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(728), - [anon_sym_LT] = ACTIONS(270), - [anon_sym_LT_EQ] = ACTIONS(268), - [anon_sym_EQ_EQ] = ACTIONS(268), - [anon_sym_BANG_EQ] = ACTIONS(268), - [anon_sym_GT_EQ] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_LT_GT] = ACTIONS(268), - [anon_sym_is] = ACTIONS(270), - [anon_sym_lambda] = ACTIONS(730), - [sym_ellipsis] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [sym_integer] = ACTIONS(736), - [sym_float] = ACTIONS(732), - [anon_sym_await] = ACTIONS(738), - [sym_true] = ACTIONS(736), - [sym_false] = ACTIONS(736), - [sym_none] = ACTIONS(736), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(740), - }, - [177] = { - [sym_named_expression] = STATE(1456), - [sym__named_expression_lhs] = STATE(2379), - [sym_list_splat_pattern] = STATE(1366), - [sym_as_pattern] = STATE(1456), - [sym_expression] = STATE(1638), - [sym_primary_expression] = STATE(1079), - [sym_not_operator] = STATE(1456), - [sym_boolean_operator] = STATE(1456), - [sym_binary_operator] = STATE(1455), - [sym_unary_operator] = STATE(1455), - [sym_comparison_operator] = STATE(1456), - [sym_lambda] = STATE(1456), - [sym_attribute] = STATE(1455), - [sym_subscript] = STATE(1455), - [sym_call] = STATE(1455), - [sym_list] = STATE(1455), - [sym_set] = STATE(1455), - [sym_tuple] = STATE(1455), - [sym_dictionary] = STATE(1455), - [sym_list_comprehension] = STATE(1455), - [sym_dictionary_comprehension] = STATE(1455), - [sym_set_comprehension] = STATE(1455), - [sym_generator_expression] = STATE(1455), - [sym_parenthesized_expression] = STATE(1455), - [sym_conditional_expression] = STATE(1456), - [sym_concatenated_string] = STATE(1455), - [sym_string] = STATE(1071), - [sym_await] = STATE(1455), - [sym_identifier] = ACTIONS(314), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_COMMA] = ACTIONS(298), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_print] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(270), - [anon_sym_COLON] = ACTIONS(298), - [anon_sym_match] = ACTIONS(320), - [anon_sym_async] = ACTIONS(320), - [anon_sym_STAR_STAR] = ACTIONS(270), - [anon_sym_exec] = ACTIONS(320), - [anon_sym_AT] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_EQ] = ACTIONS(298), - [anon_sym_not] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(270), - [anon_sym_SLASH_SLASH] = ACTIONS(270), - [anon_sym_PIPE] = ACTIONS(270), - [anon_sym_AMP] = ACTIONS(270), - [anon_sym_CARET] = ACTIONS(270), - [anon_sym_LT_LT] = ACTIONS(270), - [anon_sym_TILDE] = ACTIONS(328), - [anon_sym_lambda] = ACTIONS(330), - [anon_sym_PLUS_EQ] = ACTIONS(298), - [anon_sym_DASH_EQ] = ACTIONS(298), - [anon_sym_STAR_EQ] = ACTIONS(298), - [anon_sym_SLASH_EQ] = ACTIONS(298), - [anon_sym_AT_EQ] = ACTIONS(298), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(298), - [anon_sym_PERCENT_EQ] = ACTIONS(298), - [anon_sym_STAR_STAR_EQ] = ACTIONS(298), - [anon_sym_GT_GT_EQ] = ACTIONS(298), - [anon_sym_LT_LT_EQ] = ACTIONS(298), - [anon_sym_AMP_EQ] = ACTIONS(298), - [anon_sym_CARET_EQ] = ACTIONS(298), - [anon_sym_PIPE_EQ] = ACTIONS(298), - [sym_ellipsis] = ACTIONS(332), - [anon_sym_LBRACE] = ACTIONS(334), - [sym_integer] = ACTIONS(336), - [sym_float] = ACTIONS(332), - [anon_sym_await] = ACTIONS(338), - [sym_true] = ACTIONS(336), - [sym_false] = ACTIONS(336), - [sym_none] = ACTIONS(336), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(340), - }, - [178] = { - [sym_named_expression] = STATE(1456), - [sym__named_expression_lhs] = STATE(2379), - [sym_list_splat_pattern] = STATE(1366), - [sym_as_pattern] = STATE(1456), - [sym_expression] = STATE(1638), - [sym_primary_expression] = STATE(1079), - [sym_not_operator] = STATE(1456), - [sym_boolean_operator] = STATE(1456), - [sym_binary_operator] = STATE(1455), - [sym_unary_operator] = STATE(1455), - [sym_comparison_operator] = STATE(1456), - [sym_lambda] = STATE(1456), - [sym_attribute] = STATE(1455), - [sym_subscript] = STATE(1455), - [sym_call] = STATE(1455), - [sym_list] = STATE(1455), - [sym_set] = STATE(1455), - [sym_tuple] = STATE(1455), - [sym_dictionary] = STATE(1455), - [sym_list_comprehension] = STATE(1455), - [sym_dictionary_comprehension] = STATE(1455), - [sym_set_comprehension] = STATE(1455), - [sym_generator_expression] = STATE(1455), - [sym_parenthesized_expression] = STATE(1455), - [sym_conditional_expression] = STATE(1456), - [sym_concatenated_string] = STATE(1455), - [sym_string] = STATE(1071), - [sym_await] = STATE(1455), - [sym_identifier] = ACTIONS(314), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_COMMA] = ACTIONS(298), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_print] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(298), - [anon_sym_match] = ACTIONS(320), - [anon_sym_async] = ACTIONS(320), - [anon_sym_STAR_STAR] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(320), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_EQ] = ACTIONS(298), - [anon_sym_not] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(268), - [anon_sym_CARET] = ACTIONS(268), - [anon_sym_LT_LT] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(328), - [anon_sym_lambda] = ACTIONS(330), - [sym_ellipsis] = ACTIONS(332), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_RBRACE] = ACTIONS(298), - [sym_type_conversion] = ACTIONS(298), - [sym_integer] = ACTIONS(336), - [sym_float] = ACTIONS(332), - [anon_sym_await] = ACTIONS(338), - [sym_true] = ACTIONS(336), - [sym_false] = ACTIONS(336), - [sym_none] = ACTIONS(336), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(340), - }, - [179] = { - [sym_named_expression] = STATE(1456), - [sym__named_expression_lhs] = STATE(2379), - [sym_list_splat_pattern] = STATE(1366), - [sym_as_pattern] = STATE(1456), - [sym_expression] = STATE(1638), - [sym_primary_expression] = STATE(1079), - [sym_not_operator] = STATE(1456), - [sym_boolean_operator] = STATE(1456), - [sym_binary_operator] = STATE(1455), - [sym_unary_operator] = STATE(1455), - [sym_comparison_operator] = STATE(1456), - [sym_lambda] = STATE(1456), - [sym_attribute] = STATE(1455), - [sym_subscript] = STATE(1455), - [sym_call] = STATE(1455), - [sym_list] = STATE(1455), - [sym_set] = STATE(1455), - [sym_tuple] = STATE(1455), - [sym_dictionary] = STATE(1455), - [sym_list_comprehension] = STATE(1455), - [sym_dictionary_comprehension] = STATE(1455), - [sym_set_comprehension] = STATE(1455), - [sym_generator_expression] = STATE(1455), - [sym_parenthesized_expression] = STATE(1455), - [sym_conditional_expression] = STATE(1456), - [sym_concatenated_string] = STATE(1455), - [sym_string] = STATE(1071), - [sym_await] = STATE(1455), - [sym_identifier] = ACTIONS(314), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_RPAREN] = ACTIONS(342), - [anon_sym_COMMA] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_print] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(342), - [anon_sym_match] = ACTIONS(320), - [anon_sym_async] = ACTIONS(320), - [anon_sym_STAR_STAR] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(320), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_not] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(268), - [anon_sym_CARET] = ACTIONS(268), - [anon_sym_LT_LT] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(328), - [anon_sym_lambda] = ACTIONS(330), - [sym_ellipsis] = ACTIONS(332), - [anon_sym_LBRACE] = ACTIONS(334), - [sym_integer] = ACTIONS(336), - [sym_float] = ACTIONS(332), - [anon_sym_await] = ACTIONS(338), - [sym_true] = ACTIONS(336), - [sym_false] = ACTIONS(336), - [sym_none] = ACTIONS(336), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(340), - }, - [180] = { - [sym_named_expression] = STATE(1456), - [sym__named_expression_lhs] = STATE(2379), - [sym_list_splat_pattern] = STATE(1366), - [sym_as_pattern] = STATE(1456), - [sym_expression] = STATE(1638), - [sym_primary_expression] = STATE(1079), - [sym_not_operator] = STATE(1456), - [sym_boolean_operator] = STATE(1456), - [sym_binary_operator] = STATE(1455), - [sym_unary_operator] = STATE(1455), - [sym_comparison_operator] = STATE(1456), - [sym_lambda] = STATE(1456), - [sym_attribute] = STATE(1455), - [sym_subscript] = STATE(1455), - [sym_call] = STATE(1455), - [sym_list] = STATE(1455), - [sym_set] = STATE(1455), - [sym_tuple] = STATE(1455), - [sym_dictionary] = STATE(1455), - [sym_list_comprehension] = STATE(1455), - [sym_dictionary_comprehension] = STATE(1455), - [sym_set_comprehension] = STATE(1455), - [sym_generator_expression] = STATE(1455), - [sym_parenthesized_expression] = STATE(1455), - [sym_conditional_expression] = STATE(1456), - [sym_concatenated_string] = STATE(1455), - [sym_string] = STATE(1071), - [sym_await] = STATE(1455), - [sym_identifier] = ACTIONS(314), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_RPAREN] = ACTIONS(768), - [anon_sym_COMMA] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_print] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(768), - [anon_sym_match] = ACTIONS(320), - [anon_sym_async] = ACTIONS(320), - [anon_sym_STAR_STAR] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(320), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_not] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(268), - [anon_sym_CARET] = ACTIONS(268), - [anon_sym_LT_LT] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(328), - [anon_sym_lambda] = ACTIONS(330), - [sym_ellipsis] = ACTIONS(332), - [anon_sym_LBRACE] = ACTIONS(334), - [sym_integer] = ACTIONS(336), - [sym_float] = ACTIONS(332), - [anon_sym_await] = ACTIONS(338), - [sym_true] = ACTIONS(336), - [sym_false] = ACTIONS(336), - [sym_none] = ACTIONS(336), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(340), - }, - [181] = { - [sym_named_expression] = STATE(1456), - [sym__named_expression_lhs] = STATE(2379), - [sym_list_splat_pattern] = STATE(1366), - [sym_as_pattern] = STATE(1456), - [sym_expression] = STATE(1638), - [sym_primary_expression] = STATE(1079), - [sym_not_operator] = STATE(1456), - [sym_boolean_operator] = STATE(1456), - [sym_binary_operator] = STATE(1455), - [sym_unary_operator] = STATE(1455), - [sym_comparison_operator] = STATE(1456), - [sym_lambda] = STATE(1456), - [sym_attribute] = STATE(1455), - [sym_subscript] = STATE(1455), - [sym_call] = STATE(1455), - [sym_list] = STATE(1455), - [sym_set] = STATE(1455), - [sym_tuple] = STATE(1455), - [sym_dictionary] = STATE(1455), - [sym_list_comprehension] = STATE(1455), - [sym_dictionary_comprehension] = STATE(1455), - [sym_set_comprehension] = STATE(1455), - [sym_generator_expression] = STATE(1455), - [sym_parenthesized_expression] = STATE(1455), - [sym_conditional_expression] = STATE(1456), - [sym_concatenated_string] = STATE(1455), - [sym_string] = STATE(1071), - [sym_await] = STATE(1455), - [sym_identifier] = ACTIONS(314), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_COMMA] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_print] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(342), - [anon_sym_match] = ACTIONS(320), - [anon_sym_async] = ACTIONS(320), - [anon_sym_STAR_STAR] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(320), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_not] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(268), - [anon_sym_CARET] = ACTIONS(268), - [anon_sym_LT_LT] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(328), - [anon_sym_lambda] = ACTIONS(330), - [sym_ellipsis] = ACTIONS(332), - [anon_sym_LBRACE] = ACTIONS(334), - [sym_integer] = ACTIONS(336), - [sym_float] = ACTIONS(332), - [anon_sym_await] = ACTIONS(338), - [sym_true] = ACTIONS(336), - [sym_false] = ACTIONS(336), - [sym_none] = ACTIONS(336), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(340), - }, - [182] = { - [sym_named_expression] = STATE(1456), - [sym__named_expression_lhs] = STATE(2379), - [sym_list_splat_pattern] = STATE(1366), - [sym_as_pattern] = STATE(1456), - [sym_expression] = STATE(1638), - [sym_primary_expression] = STATE(1079), - [sym_not_operator] = STATE(1456), - [sym_boolean_operator] = STATE(1456), - [sym_binary_operator] = STATE(1455), - [sym_unary_operator] = STATE(1455), - [sym_comparison_operator] = STATE(1456), - [sym_lambda] = STATE(1456), - [sym_attribute] = STATE(1455), - [sym_subscript] = STATE(1455), - [sym_call] = STATE(1455), - [sym_list] = STATE(1455), - [sym_set] = STATE(1455), - [sym_tuple] = STATE(1455), - [sym_dictionary] = STATE(1455), - [sym_list_comprehension] = STATE(1455), - [sym_dictionary_comprehension] = STATE(1455), - [sym_set_comprehension] = STATE(1455), - [sym_generator_expression] = STATE(1455), - [sym_parenthesized_expression] = STATE(1455), - [sym_conditional_expression] = STATE(1456), - [sym_concatenated_string] = STATE(1455), - [sym_string] = STATE(1071), - [sym_await] = STATE(1455), - [sym_identifier] = ACTIONS(314), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_COMMA] = ACTIONS(298), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_print] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_match] = ACTIONS(320), - [anon_sym_async] = ACTIONS(320), - [anon_sym_in] = ACTIONS(287), - [anon_sym_STAR_STAR] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(320), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_not] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(268), - [anon_sym_CARET] = ACTIONS(268), - [anon_sym_LT_LT] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(328), - [anon_sym_lambda] = ACTIONS(330), - [sym_ellipsis] = ACTIONS(332), - [anon_sym_LBRACE] = ACTIONS(334), - [sym_integer] = ACTIONS(336), - [sym_float] = ACTIONS(332), - [anon_sym_await] = ACTIONS(338), - [sym_true] = ACTIONS(336), - [sym_false] = ACTIONS(336), - [sym_none] = ACTIONS(336), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(340), - }, - [183] = { - [sym_named_expression] = STATE(1456), - [sym__named_expression_lhs] = STATE(2379), - [sym_list_splat_pattern] = STATE(1366), - [sym_as_pattern] = STATE(1456), - [sym_expression] = STATE(1638), - [sym_primary_expression] = STATE(1079), - [sym_not_operator] = STATE(1456), - [sym_boolean_operator] = STATE(1456), - [sym_binary_operator] = STATE(1455), - [sym_unary_operator] = STATE(1455), - [sym_comparison_operator] = STATE(1456), - [sym_lambda] = STATE(1456), - [sym_attribute] = STATE(1455), - [sym_subscript] = STATE(1455), - [sym_call] = STATE(1455), - [sym_list] = STATE(1455), - [sym_set] = STATE(1455), - [sym_tuple] = STATE(1455), - [sym_dictionary] = STATE(1455), - [sym_list_comprehension] = STATE(1455), - [sym_dictionary_comprehension] = STATE(1455), - [sym_set_comprehension] = STATE(1455), - [sym_generator_expression] = STATE(1455), - [sym_parenthesized_expression] = STATE(1455), - [sym_conditional_expression] = STATE(1456), - [sym_concatenated_string] = STATE(1455), - [sym_string] = STATE(1071), - [sym_await] = STATE(1455), - [sym_identifier] = ACTIONS(314), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_COMMA] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_print] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(768), - [anon_sym_match] = ACTIONS(320), - [anon_sym_async] = ACTIONS(320), - [anon_sym_STAR_STAR] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(320), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_not] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(268), - [anon_sym_CARET] = ACTIONS(268), - [anon_sym_LT_LT] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(328), - [anon_sym_lambda] = ACTIONS(330), - [sym_ellipsis] = ACTIONS(332), - [anon_sym_LBRACE] = ACTIONS(334), - [sym_integer] = ACTIONS(336), - [sym_float] = ACTIONS(332), - [anon_sym_await] = ACTIONS(338), - [sym_true] = ACTIONS(336), - [sym_false] = ACTIONS(336), - [sym_none] = ACTIONS(336), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(340), - }, - [184] = { - [sym_named_expression] = STATE(1456), - [sym__named_expression_lhs] = STATE(2379), - [sym_list_splat_pattern] = STATE(1366), - [sym_as_pattern] = STATE(1456), - [sym_expression] = STATE(1638), - [sym_primary_expression] = STATE(1079), - [sym_not_operator] = STATE(1456), - [sym_boolean_operator] = STATE(1456), - [sym_binary_operator] = STATE(1455), - [sym_unary_operator] = STATE(1455), - [sym_comparison_operator] = STATE(1456), - [sym_lambda] = STATE(1456), - [sym_attribute] = STATE(1455), - [sym_subscript] = STATE(1455), - [sym_call] = STATE(1455), - [sym_list] = STATE(1455), - [sym_set] = STATE(1455), - [sym_tuple] = STATE(1455), - [sym_dictionary] = STATE(1455), - [sym_list_comprehension] = STATE(1455), - [sym_dictionary_comprehension] = STATE(1455), - [sym_set_comprehension] = STATE(1455), - [sym_generator_expression] = STATE(1455), - [sym_parenthesized_expression] = STATE(1455), - [sym_conditional_expression] = STATE(1456), - [sym_concatenated_string] = STATE(1455), - [sym_string] = STATE(1071), - [sym_await] = STATE(1455), - [sym_identifier] = ACTIONS(314), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_RPAREN] = ACTIONS(298), - [anon_sym_COMMA] = ACTIONS(298), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_print] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_match] = ACTIONS(320), - [anon_sym_async] = ACTIONS(320), - [anon_sym_STAR_STAR] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(320), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_not] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(268), - [anon_sym_CARET] = ACTIONS(268), - [anon_sym_LT_LT] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(328), - [anon_sym_lambda] = ACTIONS(330), - [sym_ellipsis] = ACTIONS(332), - [anon_sym_LBRACE] = ACTIONS(334), - [sym_integer] = ACTIONS(336), - [sym_float] = ACTIONS(332), - [anon_sym_await] = ACTIONS(338), - [sym_true] = ACTIONS(336), - [sym_false] = ACTIONS(336), - [sym_none] = ACTIONS(336), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(340), - }, - [185] = { - [sym_named_expression] = STATE(1456), - [sym__named_expression_lhs] = STATE(2379), - [sym_list_splat_pattern] = STATE(1366), - [sym_as_pattern] = STATE(1456), - [sym_expression] = STATE(1638), - [sym_primary_expression] = STATE(1079), - [sym_not_operator] = STATE(1456), - [sym_boolean_operator] = STATE(1456), - [sym_binary_operator] = STATE(1455), - [sym_unary_operator] = STATE(1455), - [sym_comparison_operator] = STATE(1456), - [sym_lambda] = STATE(1456), - [sym_attribute] = STATE(1455), - [sym_subscript] = STATE(1455), - [sym_call] = STATE(1455), - [sym_list] = STATE(1455), - [sym_set] = STATE(1455), - [sym_tuple] = STATE(1455), - [sym_dictionary] = STATE(1455), - [sym_list_comprehension] = STATE(1455), - [sym_dictionary_comprehension] = STATE(1455), - [sym_set_comprehension] = STATE(1455), - [sym_generator_expression] = STATE(1455), - [sym_parenthesized_expression] = STATE(1455), - [sym_conditional_expression] = STATE(1456), - [sym_concatenated_string] = STATE(1455), - [sym_string] = STATE(1071), - [sym_await] = STATE(1455), - [sym_identifier] = ACTIONS(314), - [anon_sym_DOT] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_COMMA] = ACTIONS(298), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_print] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(268), - [anon_sym_match] = ACTIONS(320), - [anon_sym_async] = ACTIONS(320), - [anon_sym_STAR_STAR] = ACTIONS(268), - [anon_sym_exec] = ACTIONS(320), - [anon_sym_AT] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_RBRACK] = ACTIONS(298), - [anon_sym_not] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(268), - [anon_sym_SLASH_SLASH] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(268), - [anon_sym_CARET] = ACTIONS(268), - [anon_sym_LT_LT] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(328), - [anon_sym_lambda] = ACTIONS(330), - [sym_ellipsis] = ACTIONS(332), - [anon_sym_LBRACE] = ACTIONS(334), - [sym_integer] = ACTIONS(336), - [sym_float] = ACTIONS(332), - [anon_sym_await] = ACTIONS(338), - [sym_true] = ACTIONS(336), - [sym_false] = ACTIONS(336), - [sym_none] = ACTIONS(336), + [sym_named_expression] = STATE(1427), + [sym__named_expression_lhs] = STATE(2513), + [sym_list_splat_pattern] = STATE(1406), + [sym_as_pattern] = STATE(1427), + [sym_expression] = STATE(1575), + [sym_primary_expression] = STATE(994), + [sym_not_operator] = STATE(1427), + [sym_boolean_operator] = STATE(1427), + [sym_binary_operator] = STATE(1426), + [sym_unary_operator] = STATE(1426), + [sym_comparison_operator] = STATE(1427), + [sym_lambda] = STATE(1427), + [sym_attribute] = STATE(1426), + [sym_subscript] = STATE(1426), + [sym_call] = STATE(1426), + [sym_list] = STATE(1426), + [sym_set] = STATE(1426), + [sym_tuple] = STATE(1426), + [sym_dictionary] = STATE(1426), + [sym_list_comprehension] = STATE(1426), + [sym_dictionary_comprehension] = STATE(1426), + [sym_set_comprehension] = STATE(1426), + [sym_generator_expression] = STATE(1426), + [sym_parenthesized_expression] = STATE(1426), + [sym_conditional_expression] = STATE(1427), + [sym_concatenated_string] = STATE(1426), + [sym_string] = STATE(996), + [sym_await] = STATE(1426), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(308), + [anon_sym_RPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(310), + [anon_sym_print] = ACTIONS(312), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_match] = ACTIONS(312), + [anon_sym_async] = ACTIONS(312), + [anon_sym_STAR_STAR] = ACTIONS(272), + [anon_sym_exec] = ACTIONS(312), + [anon_sym_AT] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_not] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(320), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_SLASH_SLASH] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(272), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(320), + [anon_sym_lambda] = ACTIONS(322), + [sym_ellipsis] = ACTIONS(324), + [anon_sym_LBRACE] = ACTIONS(326), + [sym_integer] = ACTIONS(328), + [sym_float] = ACTIONS(324), + [anon_sym_await] = ACTIONS(330), + [sym_true] = ACTIONS(328), + [sym_false] = ACTIONS(328), + [sym_none] = ACTIONS(328), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(340), + [sym_string_start] = ACTIONS(332), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 23, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_STAR, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1638), 1, + STATE(1575), 1, sym_expression, - STATE(2379), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(270), 2, + ACTIONS(274), 2, anon_sym_DOT, anon_sym_SLASH, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30136,7 +28765,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - ACTIONS(268), 9, + ACTIONS(272), 9, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, @@ -30146,7 +28775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30163,164 +28792,74 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [110] = 27, - ACTIONS(9), 1, + [110] = 29, + ACTIONS(612), 1, sym_identifier, - ACTIONS(15), 1, - anon_sym_LPAREN, - ACTIONS(17), 1, - anon_sym_STAR, - ACTIONS(61), 1, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(63), 1, - anon_sym_not, - ACTIONS(67), 1, - anon_sym_lambda, - ACTIONS(69), 1, - anon_sym_yield, - ACTIONS(73), 1, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(634), 1, anon_sym_await, - ACTIONS(79), 1, + ACTIONS(636), 1, sym_string_start, - STATE(661), 1, - sym_list_splat_pattern, - STATE(1034), 1, - sym_string, - STATE(1161), 1, - sym_primary_expression, - STATE(1707), 1, - sym_pattern, - STATE(1714), 1, - sym_pattern_list, - STATE(1824), 1, - sym_expression, - STATE(2504), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(71), 2, - sym_ellipsis, - sym_float, - STATE(666), 2, - sym_attribute, - sym_subscript, - STATE(1693), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(65), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(75), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(349), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(2332), 5, - sym_expression_list, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, - sym_yield, - STATE(1329), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1344), 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, - [227] = 29, - ACTIONS(632), 1, - sym_identifier, - ACTIONS(640), 1, - anon_sym_LBRACK, - ACTIONS(650), 1, - anon_sym_LBRACE, - ACTIONS(654), 1, - anon_sym_await, - ACTIONS(656), 1, - sym_string_start, - ACTIONS(770), 1, + ACTIONS(746), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(748), 1, anon_sym_COMMA, - ACTIONS(774), 1, + ACTIONS(750), 1, anon_sym_STAR, - ACTIONS(776), 1, + ACTIONS(752), 1, anon_sym_STAR_STAR, - ACTIONS(778), 1, + ACTIONS(754), 1, anon_sym_not, - ACTIONS(780), 1, + ACTIONS(756), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(758), 1, anon_sym_yield, - ACTIONS(784), 1, + ACTIONS(760), 1, anon_sym_RBRACE, - STATE(1037), 1, + STATE(975), 1, sym_string, - STATE(1038), 1, + STATE(976), 1, sym_primary_expression, - STATE(1338), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1729), 1, + STATE(1671), 1, sym_expression, - STATE(1880), 1, + STATE(1815), 1, sym_pair, - STATE(2102), 1, + STATE(2075), 1, sym_dictionary_splat, - STATE(2420), 1, + STATE(2333), 1, sym__named_expression_lhs, - STATE(2476), 1, + STATE(2367), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2157), 3, + STATE(2058), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(638), 4, + ACTIONS(618), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(652), 4, + ACTIONS(632), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1278), 7, + STATE(1262), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30328,7 +28867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1277), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30345,76 +28884,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [348] = 29, - ACTIONS(708), 1, + [231] = 29, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(714), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(786), 1, + ACTIONS(762), 1, sym_identifier, - ACTIONS(788), 1, + ACTIONS(764), 1, anon_sym_LPAREN, - ACTIONS(790), 1, + ACTIONS(766), 1, anon_sym_STAR, - ACTIONS(794), 1, + ACTIONS(770), 1, anon_sym_LBRACK, - ACTIONS(796), 1, + ACTIONS(772), 1, anon_sym_RBRACK, - ACTIONS(798), 1, + ACTIONS(774), 1, anon_sym_not, - ACTIONS(800), 1, + ACTIONS(776), 1, anon_sym_lambda, - ACTIONS(802), 1, + ACTIONS(778), 1, anon_sym_yield, - ACTIONS(804), 1, + ACTIONS(780), 1, anon_sym_await, - STATE(1058), 1, - sym_string, - STATE(1063), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1505), 1, + STATE(1012), 1, + sym_string, + STATE(1400), 1, sym_list_splat_pattern, - STATE(1750), 1, + STATE(1695), 1, sym_expression, - STATE(2257), 1, + STATE(2086), 1, sym_pattern, - STATE(2458), 1, - sym__patterns, - STATE(2461), 1, + STATE(2350), 1, sym__collection_elements, - STATE(2526), 1, + STATE(2361), 1, + sym__patterns, + STATE(2387), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - STATE(1504), 2, + STATE(1399), 2, sym_attribute, sym_subscript, - STATE(2326), 2, + STATE(2306), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(702), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2258), 3, + STATE(2082), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(710), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(792), 4, + ACTIONS(768), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1506), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30422,7 +28961,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 14, + STATE(1403), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30437,77 +28976,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [469] = 30, - ACTIONS(678), 1, - anon_sym_LBRACE, + [352] = 29, ACTIONS(684), 1, + anon_sym_LBRACE, + ACTIONS(690), 1, sym_string_start, - ACTIONS(806), 1, + ACTIONS(762), 1, sym_identifier, - ACTIONS(808), 1, + ACTIONS(764), 1, anon_sym_LPAREN, - ACTIONS(810), 1, - anon_sym_RPAREN, - ACTIONS(812), 1, + ACTIONS(766), 1, anon_sym_STAR, - ACTIONS(816), 1, + ACTIONS(770), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(774), 1, anon_sym_not, - ACTIONS(820), 1, + ACTIONS(776), 1, anon_sym_lambda, - ACTIONS(822), 1, + ACTIONS(778), 1, anon_sym_yield, - ACTIONS(824), 1, + ACTIONS(780), 1, anon_sym_await, - STATE(1095), 1, - sym_string, - STATE(1101), 1, + ACTIONS(782), 1, + anon_sym_RBRACK, + STATE(1008), 1, sym_primary_expression, - STATE(1453), 1, + STATE(1012), 1, + sym_string, + STATE(1400), 1, sym_list_splat_pattern, - STATE(1748), 1, + STATE(1677), 1, sym_expression, - STATE(2125), 1, - sym_yield, - STATE(2142), 1, + STATE(2086), 1, sym_pattern, - STATE(2397), 1, + STATE(2373), 1, sym__collection_elements, - STATE(2417), 1, - sym__patterns, - STATE(2489), 1, + STATE(2387), 1, sym__named_expression_lhs, + STATE(2483), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - STATE(1451), 2, + STATE(1399), 2, sym_attribute, sym_subscript, - STATE(2136), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2327), 2, + STATE(2306), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(672), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(680), 4, + STATE(2082), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(814), 4, + ACTIONS(768), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1454), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30515,7 +29053,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 14, + STATE(1403), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30530,77 +29068,74 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [592] = 30, - ACTIONS(678), 1, + [473] = 29, + ACTIONS(612), 1, + sym_identifier, + ACTIONS(620), 1, + anon_sym_LBRACK, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(634), 1, + anon_sym_await, + ACTIONS(636), 1, sym_string_start, - ACTIONS(806), 1, - sym_identifier, - ACTIONS(808), 1, + ACTIONS(746), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(750), 1, anon_sym_STAR, - ACTIONS(816), 1, - anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(752), 1, + anon_sym_STAR_STAR, + ACTIONS(754), 1, anon_sym_not, - ACTIONS(820), 1, + ACTIONS(756), 1, anon_sym_lambda, - ACTIONS(822), 1, + ACTIONS(758), 1, anon_sym_yield, - ACTIONS(824), 1, - anon_sym_await, - ACTIONS(826), 1, - anon_sym_RPAREN, - STATE(1095), 1, + ACTIONS(784), 1, + anon_sym_COMMA, + ACTIONS(786), 1, + anon_sym_RBRACE, + STATE(975), 1, sym_string, - STATE(1101), 1, + STATE(976), 1, sym_primary_expression, - STATE(1453), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1748), 1, + STATE(1667), 1, sym_expression, - STATE(2125), 1, - sym_yield, - STATE(2142), 1, - sym_pattern, - STATE(2381), 1, - sym__patterns, - STATE(2397), 1, - sym__collection_elements, - STATE(2489), 1, + STATE(1789), 1, + sym_pair, + STATE(2187), 1, + sym_dictionary_splat, + STATE(2333), 1, sym__named_expression_lhs, + STATE(2453), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - STATE(1451), 2, - sym_attribute, - sym_subscript, - STATE(2136), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2327), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(672), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(680), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(814), 4, + STATE(2058), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(618), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1454), 7, + ACTIONS(632), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1262), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30608,9 +29143,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 14, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -30623,76 +29160,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [715] = 29, - ACTIONS(708), 1, + [594] = 29, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(714), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(786), 1, + ACTIONS(762), 1, sym_identifier, - ACTIONS(788), 1, + ACTIONS(764), 1, anon_sym_LPAREN, - ACTIONS(790), 1, + ACTIONS(766), 1, anon_sym_STAR, - ACTIONS(794), 1, + ACTIONS(770), 1, anon_sym_LBRACK, - ACTIONS(798), 1, + ACTIONS(774), 1, anon_sym_not, - ACTIONS(800), 1, + ACTIONS(776), 1, anon_sym_lambda, - ACTIONS(802), 1, + ACTIONS(778), 1, anon_sym_yield, - ACTIONS(804), 1, + ACTIONS(780), 1, anon_sym_await, - ACTIONS(828), 1, + ACTIONS(788), 1, anon_sym_RBRACK, - STATE(1058), 1, - sym_string, - STATE(1063), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1505), 1, + STATE(1012), 1, + sym_string, + STATE(1400), 1, sym_list_splat_pattern, - STATE(1758), 1, + STATE(1674), 1, sym_expression, - STATE(2257), 1, + STATE(2086), 1, sym_pattern, - STATE(2410), 1, - sym__collection_elements, - STATE(2482), 1, + STATE(2328), 1, sym__patterns, - STATE(2526), 1, + STATE(2387), 1, sym__named_expression_lhs, + STATE(2477), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - STATE(1504), 2, + STATE(1399), 2, sym_attribute, sym_subscript, - STATE(2326), 2, + STATE(2306), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(702), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2258), 3, + STATE(2082), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(710), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(792), 4, + ACTIONS(768), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1506), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30700,7 +29237,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 14, + STATE(1403), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30715,77 +29252,74 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [836] = 30, - ACTIONS(678), 1, - anon_sym_LBRACE, - ACTIONS(684), 1, - sym_string_start, - ACTIONS(806), 1, + [715] = 27, + ACTIONS(9), 1, sym_identifier, - ACTIONS(808), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(17), 1, anon_sym_STAR, - ACTIONS(816), 1, + ACTIONS(61), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(820), 1, + ACTIONS(67), 1, anon_sym_lambda, - ACTIONS(822), 1, + ACTIONS(69), 1, anon_sym_yield, - ACTIONS(824), 1, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(77), 1, anon_sym_await, - ACTIONS(830), 1, - anon_sym_RPAREN, - STATE(1095), 1, + ACTIONS(79), 1, + sym_string_start, + STATE(658), 1, + sym_list_splat_pattern, + STATE(977), 1, sym_string, - STATE(1101), 1, + STATE(1048), 1, sym_primary_expression, - STATE(1453), 1, - sym_list_splat_pattern, - STATE(1748), 1, - sym_expression, - STATE(2125), 1, - sym_yield, - STATE(2142), 1, + STATE(1633), 1, + sym_pattern_list, + STATE(1636), 1, sym_pattern, - STATE(2397), 1, - sym__collection_elements, - STATE(2423), 1, - sym__patterns, - STATE(2489), 1, + STATE(1756), 1, + sym_expression, + STATE(2495), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - STATE(1451), 2, + STATE(660), 2, sym_attribute, sym_subscript, - STATE(2136), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2327), 2, + STATE(1642), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(672), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(680), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(814), 4, + ACTIONS(353), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1454), 7, + STATE(2291), 5, + sym_expression_list, + sym_assignment, + sym_augmented_assignment, + sym__right_hand_side, + sym_yield, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30793,7 +29327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 14, + STATE(1272), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30808,74 +29342,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [959] = 29, - ACTIONS(632), 1, - sym_identifier, - ACTIONS(640), 1, - anon_sym_LBRACK, - ACTIONS(650), 1, + [832] = 29, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(654), 1, - anon_sym_await, - ACTIONS(656), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(770), 1, + ACTIONS(762), 1, + sym_identifier, + ACTIONS(764), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(766), 1, anon_sym_STAR, - ACTIONS(776), 1, - anon_sym_STAR_STAR, - ACTIONS(778), 1, + ACTIONS(770), 1, + anon_sym_LBRACK, + ACTIONS(774), 1, anon_sym_not, - ACTIONS(780), 1, + ACTIONS(776), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(778), 1, anon_sym_yield, - ACTIONS(832), 1, - anon_sym_COMMA, - ACTIONS(834), 1, - anon_sym_RBRACE, - STATE(1037), 1, - sym_string, - STATE(1038), 1, + ACTIONS(780), 1, + anon_sym_await, + ACTIONS(790), 1, + anon_sym_RBRACK, + STATE(1008), 1, sym_primary_expression, - STATE(1338), 1, + STATE(1012), 1, + sym_string, + STATE(1400), 1, sym_list_splat_pattern, - STATE(1732), 1, + STATE(1674), 1, sym_expression, - STATE(1868), 1, - sym_pair, - STATE(2155), 1, - sym_dictionary_splat, - STATE(2398), 1, - sym__collection_elements, - STATE(2420), 1, + STATE(2086), 1, + sym_pattern, + STATE(2379), 1, + sym__patterns, + STATE(2387), 1, sym__named_expression_lhs, + STATE(2477), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + STATE(1399), 2, + sym_attribute, + sym_subscript, + STATE(2306), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2157), 3, + STATE(2082), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(638), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(652), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1278), 7, + ACTIONS(768), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30883,11 +29419,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1277), 16, + STATE(1403), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -30900,74 +29434,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1080] = 29, - ACTIONS(632), 1, - sym_identifier, - ACTIONS(640), 1, - anon_sym_LBRACK, - ACTIONS(650), 1, + [953] = 31, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(654), 1, - anon_sym_await, - ACTIONS(656), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(770), 1, + ACTIONS(792), 1, + sym_identifier, + ACTIONS(794), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(796), 1, + anon_sym_RPAREN, + ACTIONS(798), 1, anon_sym_STAR, - ACTIONS(776), 1, - anon_sym_STAR_STAR, - ACTIONS(778), 1, + ACTIONS(802), 1, + anon_sym_LBRACK, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(780), 1, + ACTIONS(806), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(808), 1, anon_sym_yield, - ACTIONS(836), 1, - anon_sym_COMMA, - ACTIONS(838), 1, - anon_sym_RBRACE, - STATE(1037), 1, - sym_string, - STATE(1038), 1, + ACTIONS(810), 1, + anon_sym_await, + STATE(1035), 1, sym_primary_expression, - STATE(1338), 1, + STATE(1036), 1, + sym_string, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1726), 1, + STATE(1688), 1, sym_expression, - STATE(1875), 1, - sym_pair, - STATE(2212), 1, - sym_dictionary_splat, - STATE(2353), 1, + STATE(2021), 1, + sym_pattern, + STATE(2068), 1, + sym_yield, + STATE(2092), 1, + sym_parenthesized_list_splat, + STATE(2095), 1, + sym_list_splat, + STATE(2382), 1, sym__collection_elements, - STATE(2420), 1, + STATE(2436), 1, sym__named_expression_lhs, + STATE(2498), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + STATE(1324), 2, + sym_attribute, + sym_subscript, + STATE(2275), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2157), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(638), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(652), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1278), 7, + ACTIONS(800), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30975,11 +29513,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1277), 16, + STATE(1316), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -30992,76 +29528,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1201] = 29, - ACTIONS(708), 1, + [1078] = 31, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(714), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(786), 1, + ACTIONS(792), 1, sym_identifier, - ACTIONS(788), 1, + ACTIONS(794), 1, anon_sym_LPAREN, - ACTIONS(790), 1, + ACTIONS(798), 1, anon_sym_STAR, - ACTIONS(794), 1, + ACTIONS(802), 1, anon_sym_LBRACK, - ACTIONS(798), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(800), 1, + ACTIONS(806), 1, anon_sym_lambda, - ACTIONS(802), 1, + ACTIONS(808), 1, anon_sym_yield, - ACTIONS(804), 1, + ACTIONS(810), 1, anon_sym_await, - ACTIONS(840), 1, - anon_sym_RBRACK, - STATE(1058), 1, - sym_string, - STATE(1063), 1, + ACTIONS(812), 1, + anon_sym_RPAREN, + STATE(1035), 1, sym_primary_expression, - STATE(1505), 1, + STATE(1036), 1, + sym_string, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1739), 1, + STATE(1682), 1, sym_expression, - STATE(2257), 1, + STATE(2021), 1, sym_pattern, - STATE(2359), 1, + STATE(2163), 1, + sym_yield, + STATE(2165), 1, + sym_list_splat, + STATE(2189), 1, + sym_parenthesized_list_splat, + STATE(2422), 1, sym__collection_elements, - STATE(2458), 1, + STATE(2426), 1, sym__patterns, - STATE(2526), 1, + STATE(2436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - STATE(1504), 2, + STATE(1324), 2, sym_attribute, sym_subscript, - STATE(2326), 2, + STATE(2275), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(702), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2258), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(710), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(792), 4, + ACTIONS(800), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1506), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31069,7 +29607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 14, + STATE(1316), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31084,77 +29622,77 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1322] = 30, - ACTIONS(678), 1, + [1203] = 30, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(806), 1, + ACTIONS(792), 1, sym_identifier, - ACTIONS(808), 1, + ACTIONS(794), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(798), 1, anon_sym_STAR, - ACTIONS(816), 1, + ACTIONS(802), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(820), 1, + ACTIONS(806), 1, anon_sym_lambda, - ACTIONS(822), 1, + ACTIONS(808), 1, anon_sym_yield, - ACTIONS(824), 1, + ACTIONS(810), 1, anon_sym_await, - ACTIONS(842), 1, + ACTIONS(814), 1, anon_sym_RPAREN, - STATE(1095), 1, - sym_string, - STATE(1101), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1453), 1, + STATE(1036), 1, + sym_string, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1748), 1, + STATE(1696), 1, sym_expression, - STATE(2125), 1, + STATE(2011), 1, sym_yield, - STATE(2142), 1, + STATE(2021), 1, sym_pattern, - STATE(2397), 1, + STATE(2436), 1, + sym__named_expression_lhs, + STATE(2496), 1, sym__collection_elements, - STATE(2423), 1, + STATE(2498), 1, sym__patterns, - STATE(2489), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - STATE(1451), 2, + STATE(1324), 2, sym_attribute, sym_subscript, - STATE(2136), 2, + STATE(2017), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2327), 2, + STATE(2275), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(672), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(680), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(814), 4, + ACTIONS(800), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1454), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31162,7 +29700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 14, + STATE(1316), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31177,74 +29715,74 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1445] = 29, - ACTIONS(632), 1, + [1326] = 27, + ACTIONS(9), 1, sym_identifier, - ACTIONS(640), 1, - anon_sym_LBRACK, - ACTIONS(650), 1, - anon_sym_LBRACE, - ACTIONS(654), 1, - anon_sym_await, - ACTIONS(656), 1, - sym_string_start, - ACTIONS(770), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(17), 1, anon_sym_STAR, - ACTIONS(776), 1, - anon_sym_STAR_STAR, - ACTIONS(778), 1, + ACTIONS(61), 1, + anon_sym_LBRACK, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(780), 1, + ACTIONS(67), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(69), 1, anon_sym_yield, - ACTIONS(844), 1, - anon_sym_COMMA, - ACTIONS(846), 1, - anon_sym_RBRACE, - STATE(1037), 1, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(77), 1, + anon_sym_await, + ACTIONS(79), 1, + sym_string_start, + STATE(658), 1, + sym_list_splat_pattern, + STATE(977), 1, sym_string, - STATE(1038), 1, + STATE(1048), 1, sym_primary_expression, - STATE(1338), 1, - sym_list_splat_pattern, - STATE(1730), 1, + STATE(1633), 1, + sym_pattern_list, + STATE(1636), 1, + sym_pattern, + STATE(1756), 1, sym_expression, - STATE(1857), 1, - sym_pair, - STATE(2245), 1, - sym_dictionary_splat, - STATE(2420), 1, + STATE(2495), 1, sym__named_expression_lhs, - STATE(2477), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + STATE(660), 2, + sym_attribute, + sym_subscript, + STATE(1642), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2157), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(638), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(652), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1278), 7, + ACTIONS(353), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(2307), 5, + sym_expression_list, + sym_assignment, + sym_augmented_assignment, + sym__right_hand_side, + sym_yield, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31252,11 +29790,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1277), 16, + STATE(1272), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -31269,76 +29805,74 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1566] = 29, - ACTIONS(708), 1, - anon_sym_LBRACE, - ACTIONS(714), 1, - sym_string_start, - ACTIONS(786), 1, + [1443] = 27, + ACTIONS(9), 1, sym_identifier, - ACTIONS(788), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(790), 1, + ACTIONS(17), 1, anon_sym_STAR, - ACTIONS(794), 1, + ACTIONS(61), 1, anon_sym_LBRACK, - ACTIONS(798), 1, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(800), 1, + ACTIONS(67), 1, anon_sym_lambda, - ACTIONS(802), 1, + ACTIONS(69), 1, anon_sym_yield, - ACTIONS(804), 1, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(77), 1, anon_sym_await, - ACTIONS(848), 1, - anon_sym_RBRACK, - STATE(1058), 1, + ACTIONS(79), 1, + sym_string_start, + STATE(658), 1, + sym_list_splat_pattern, + STATE(977), 1, sym_string, - STATE(1063), 1, + STATE(1048), 1, sym_primary_expression, - STATE(1505), 1, - sym_list_splat_pattern, - STATE(1743), 1, - sym_expression, - STATE(2257), 1, + STATE(1633), 1, + sym_pattern_list, + STATE(1636), 1, sym_pattern, - STATE(2481), 1, - sym__collection_elements, - STATE(2482), 1, - sym__patterns, - STATE(2526), 1, + STATE(1756), 1, + sym_expression, + STATE(2495), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - STATE(1504), 2, + STATE(660), 2, sym_attribute, sym_subscript, - STATE(2326), 2, + STATE(1642), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(702), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2258), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(710), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(792), 4, + ACTIONS(353), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1506), 7, + STATE(2305), 5, + sym_expression_list, + sym_assignment, + sym_augmented_assignment, + sym__right_hand_side, + sym_yield, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31346,7 +29880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 14, + STATE(1272), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31361,76 +29895,74 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1687] = 29, - ACTIONS(708), 1, + [1560] = 29, + ACTIONS(612), 1, + sym_identifier, + ACTIONS(620), 1, + anon_sym_LBRACK, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(714), 1, + ACTIONS(634), 1, + anon_sym_await, + ACTIONS(636), 1, sym_string_start, - ACTIONS(786), 1, - sym_identifier, - ACTIONS(788), 1, + ACTIONS(746), 1, anon_sym_LPAREN, - ACTIONS(790), 1, + ACTIONS(750), 1, anon_sym_STAR, - ACTIONS(794), 1, - anon_sym_LBRACK, - ACTIONS(798), 1, + ACTIONS(752), 1, + anon_sym_STAR_STAR, + ACTIONS(754), 1, anon_sym_not, - ACTIONS(800), 1, + ACTIONS(756), 1, anon_sym_lambda, - ACTIONS(802), 1, + ACTIONS(758), 1, anon_sym_yield, - ACTIONS(804), 1, - anon_sym_await, - ACTIONS(850), 1, - anon_sym_RBRACK, - STATE(1058), 1, + ACTIONS(816), 1, + anon_sym_COMMA, + ACTIONS(818), 1, + anon_sym_RBRACE, + STATE(975), 1, sym_string, - STATE(1063), 1, + STATE(976), 1, sym_primary_expression, - STATE(1505), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1758), 1, + STATE(1668), 1, sym_expression, - STATE(2257), 1, - sym_pattern, - STATE(2410), 1, + STATE(1837), 1, + sym_pair, + STATE(2124), 1, + sym_dictionary_splat, + STATE(2330), 1, sym__collection_elements, - STATE(2501), 1, - sym__patterns, - STATE(2526), 1, + STATE(2333), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - STATE(1504), 2, - sym_attribute, - sym_subscript, - STATE(2326), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(702), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2258), 3, + STATE(2058), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(710), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(792), 4, + ACTIONS(618), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1506), 7, + ACTIONS(632), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1262), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31438,9 +29970,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 14, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -31453,76 +29987,77 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1808] = 29, - ACTIONS(708), 1, + [1681] = 30, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(714), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(786), 1, + ACTIONS(792), 1, sym_identifier, - ACTIONS(788), 1, + ACTIONS(794), 1, anon_sym_LPAREN, - ACTIONS(790), 1, + ACTIONS(798), 1, anon_sym_STAR, - ACTIONS(794), 1, + ACTIONS(802), 1, anon_sym_LBRACK, - ACTIONS(798), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(800), 1, + ACTIONS(806), 1, anon_sym_lambda, - ACTIONS(802), 1, + ACTIONS(808), 1, anon_sym_yield, - ACTIONS(804), 1, + ACTIONS(810), 1, anon_sym_await, - ACTIONS(852), 1, - anon_sym_RBRACK, - STATE(1058), 1, - sym_string, - STATE(1063), 1, + ACTIONS(820), 1, + anon_sym_RPAREN, + STATE(1035), 1, sym_primary_expression, - STATE(1505), 1, + STATE(1036), 1, + sym_string, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1753), 1, + STATE(1696), 1, sym_expression, - STATE(2257), 1, + STATE(2011), 1, + sym_yield, + STATE(2021), 1, sym_pattern, - STATE(2399), 1, + STATE(2436), 1, + sym__named_expression_lhs, + STATE(2472), 1, sym__patterns, - STATE(2500), 1, + STATE(2496), 1, sym__collection_elements, - STATE(2526), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - STATE(1504), 2, + STATE(1324), 2, sym_attribute, sym_subscript, - STATE(2326), 2, + STATE(2017), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2275), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(702), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2258), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(710), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(792), 4, + ACTIONS(800), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1506), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31530,7 +30065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 14, + STATE(1316), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31545,74 +30080,74 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1929] = 29, - ACTIONS(632), 1, + [1804] = 29, + ACTIONS(612), 1, sym_identifier, - ACTIONS(640), 1, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(650), 1, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(634), 1, anon_sym_await, - ACTIONS(656), 1, + ACTIONS(636), 1, sym_string_start, - ACTIONS(770), 1, + ACTIONS(746), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(750), 1, anon_sym_STAR, - ACTIONS(776), 1, + ACTIONS(752), 1, anon_sym_STAR_STAR, - ACTIONS(778), 1, + ACTIONS(754), 1, anon_sym_not, - ACTIONS(780), 1, + ACTIONS(756), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(758), 1, anon_sym_yield, - ACTIONS(854), 1, + ACTIONS(822), 1, anon_sym_COMMA, - ACTIONS(856), 1, + ACTIONS(824), 1, anon_sym_RBRACE, - STATE(1037), 1, + STATE(975), 1, sym_string, - STATE(1038), 1, + STATE(976), 1, sym_primary_expression, - STATE(1338), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1733), 1, + STATE(1665), 1, sym_expression, - STATE(1886), 1, + STATE(1835), 1, sym_pair, - STATE(2095), 1, + STATE(2140), 1, sym_dictionary_splat, - STATE(2420), 1, + STATE(2333), 1, sym__named_expression_lhs, - STATE(2490), 1, + STATE(2388), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2157), 3, + STATE(2058), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(638), 4, + ACTIONS(618), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(652), 4, + ACTIONS(632), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1278), 7, + STATE(1262), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31620,7 +30155,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1277), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31637,78 +30172,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2050] = 31, - ACTIONS(678), 1, - anon_sym_LBRACE, + [1925] = 29, ACTIONS(684), 1, + anon_sym_LBRACE, + ACTIONS(690), 1, sym_string_start, - ACTIONS(806), 1, + ACTIONS(762), 1, sym_identifier, - ACTIONS(808), 1, + ACTIONS(764), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(766), 1, anon_sym_STAR, - ACTIONS(816), 1, + ACTIONS(770), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(774), 1, anon_sym_not, - ACTIONS(820), 1, + ACTIONS(776), 1, anon_sym_lambda, - ACTIONS(822), 1, + ACTIONS(778), 1, anon_sym_yield, - ACTIONS(824), 1, + ACTIONS(780), 1, anon_sym_await, - ACTIONS(858), 1, - anon_sym_RPAREN, - STATE(1095), 1, - sym_string, - STATE(1101), 1, + ACTIONS(826), 1, + anon_sym_RBRACK, + STATE(1008), 1, sym_primary_expression, - STATE(1453), 1, + STATE(1012), 1, + sym_string, + STATE(1400), 1, sym_list_splat_pattern, - STATE(1752), 1, + STATE(1683), 1, sym_expression, STATE(2086), 1, - sym_yield, - STATE(2109), 1, - sym_list_splat, - STATE(2110), 1, - sym_parenthesized_list_splat, - STATE(2142), 1, sym_pattern, - STATE(2381), 1, - sym__patterns, - STATE(2489), 1, + STATE(2387), 1, sym__named_expression_lhs, - STATE(2506), 1, + STATE(2408), 1, sym__collection_elements, + STATE(2410), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - STATE(1451), 2, + STATE(1399), 2, sym_attribute, sym_subscript, - STATE(2327), 2, + STATE(2306), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(672), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(680), 4, + STATE(2082), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(814), 4, + ACTIONS(768), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1454), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31716,7 +30249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 14, + STATE(1403), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31731,76 +30264,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2175] = 29, - ACTIONS(708), 1, + [2046] = 29, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(714), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(786), 1, + ACTIONS(762), 1, sym_identifier, - ACTIONS(788), 1, + ACTIONS(764), 1, anon_sym_LPAREN, - ACTIONS(790), 1, + ACTIONS(766), 1, anon_sym_STAR, - ACTIONS(794), 1, + ACTIONS(770), 1, anon_sym_LBRACK, - ACTIONS(798), 1, + ACTIONS(774), 1, anon_sym_not, - ACTIONS(800), 1, + ACTIONS(776), 1, anon_sym_lambda, - ACTIONS(802), 1, + ACTIONS(778), 1, anon_sym_yield, - ACTIONS(804), 1, + ACTIONS(780), 1, anon_sym_await, - ACTIONS(860), 1, + ACTIONS(828), 1, anon_sym_RBRACK, - STATE(1058), 1, - sym_string, - STATE(1063), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1505), 1, + STATE(1012), 1, + sym_string, + STATE(1400), 1, sym_list_splat_pattern, - STATE(1758), 1, + STATE(1686), 1, sym_expression, - STATE(2257), 1, + STATE(2086), 1, sym_pattern, - STATE(2409), 1, + STATE(2361), 1, sym__patterns, - STATE(2410), 1, - sym__collection_elements, - STATE(2526), 1, + STATE(2387), 1, sym__named_expression_lhs, + STATE(2448), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - STATE(1504), 2, + STATE(1399), 2, sym_attribute, sym_subscript, - STATE(2326), 2, + STATE(2306), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(702), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2258), 3, + STATE(2082), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(710), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(792), 4, + ACTIONS(768), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1506), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31808,7 +30341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 14, + STATE(1403), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31823,169 +30356,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2296] = 30, - ACTIONS(678), 1, - anon_sym_LBRACE, + [2167] = 29, ACTIONS(684), 1, - sym_string_start, - ACTIONS(806), 1, - sym_identifier, - ACTIONS(808), 1, - anon_sym_LPAREN, - ACTIONS(812), 1, - anon_sym_STAR, - ACTIONS(816), 1, - anon_sym_LBRACK, - ACTIONS(818), 1, - anon_sym_not, - ACTIONS(820), 1, - anon_sym_lambda, - ACTIONS(822), 1, - anon_sym_yield, - ACTIONS(824), 1, - anon_sym_await, - ACTIONS(862), 1, - anon_sym_RPAREN, - STATE(1095), 1, - sym_string, - STATE(1101), 1, - sym_primary_expression, - STATE(1453), 1, - sym_list_splat_pattern, - STATE(1745), 1, - sym_expression, - STATE(2142), 1, - sym_pattern, - STATE(2204), 1, - sym_yield, - STATE(2362), 1, - sym__collection_elements, - STATE(2423), 1, - sym__patterns, - STATE(2489), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(676), 2, - sym_ellipsis, - sym_float, - STATE(1451), 2, - sym_attribute, - sym_subscript, - STATE(2136), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2327), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(672), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(680), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(814), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1454), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1385), 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, - [2419] = 29, - ACTIONS(708), 1, anon_sym_LBRACE, - ACTIONS(714), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(786), 1, + ACTIONS(762), 1, sym_identifier, - ACTIONS(788), 1, + ACTIONS(764), 1, anon_sym_LPAREN, - ACTIONS(790), 1, + ACTIONS(766), 1, anon_sym_STAR, - ACTIONS(794), 1, + ACTIONS(770), 1, anon_sym_LBRACK, - ACTIONS(798), 1, + ACTIONS(774), 1, anon_sym_not, - ACTIONS(800), 1, + ACTIONS(776), 1, anon_sym_lambda, - ACTIONS(802), 1, + ACTIONS(778), 1, anon_sym_yield, - ACTIONS(804), 1, + ACTIONS(780), 1, anon_sym_await, - ACTIONS(864), 1, + ACTIONS(830), 1, anon_sym_RBRACK, - STATE(1058), 1, - sym_string, - STATE(1063), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1505), 1, + STATE(1012), 1, + sym_string, + STATE(1400), 1, sym_list_splat_pattern, - STATE(1758), 1, + STATE(1674), 1, sym_expression, - STATE(2257), 1, + STATE(2086), 1, sym_pattern, - STATE(2410), 1, + STATE(2387), 1, + sym__named_expression_lhs, + STATE(2477), 1, sym__collection_elements, - STATE(2458), 1, + STATE(2483), 1, sym__patterns, - STATE(2526), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - STATE(1504), 2, + STATE(1399), 2, sym_attribute, sym_subscript, - STATE(2326), 2, + STATE(2306), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(702), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2258), 3, + STATE(2082), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(710), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(792), 4, + ACTIONS(768), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1506), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31993,7 +30433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 14, + STATE(1403), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32008,74 +30448,74 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2540] = 29, - ACTIONS(632), 1, + [2288] = 29, + ACTIONS(612), 1, sym_identifier, - ACTIONS(640), 1, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(650), 1, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(634), 1, anon_sym_await, - ACTIONS(656), 1, + ACTIONS(636), 1, sym_string_start, - ACTIONS(770), 1, + ACTIONS(746), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(750), 1, anon_sym_STAR, - ACTIONS(776), 1, + ACTIONS(752), 1, anon_sym_STAR_STAR, - ACTIONS(778), 1, + ACTIONS(754), 1, anon_sym_not, - ACTIONS(780), 1, + ACTIONS(756), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(758), 1, anon_sym_yield, - ACTIONS(866), 1, + ACTIONS(832), 1, anon_sym_COMMA, - ACTIONS(868), 1, + ACTIONS(834), 1, anon_sym_RBRACE, - STATE(1037), 1, + STATE(975), 1, sym_string, - STATE(1038), 1, + STATE(976), 1, sym_primary_expression, - STATE(1338), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1731), 1, + STATE(1666), 1, sym_expression, - STATE(1899), 1, + STATE(1834), 1, sym_pair, - STATE(2139), 1, + STATE(2130), 1, sym_dictionary_splat, - STATE(2420), 1, - sym__named_expression_lhs, - STATE(2424), 1, + STATE(2323), 1, sym__collection_elements, + STATE(2333), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2157), 3, + STATE(2058), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(638), 4, + ACTIONS(618), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(652), 4, + ACTIONS(632), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1278), 7, + STATE(1262), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32083,7 +30523,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1277), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32100,77 +30540,77 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2661] = 30, - ACTIONS(678), 1, + [2409] = 30, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(806), 1, + ACTIONS(792), 1, sym_identifier, - ACTIONS(808), 1, + ACTIONS(794), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(798), 1, anon_sym_STAR, - ACTIONS(816), 1, + ACTIONS(802), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(820), 1, + ACTIONS(806), 1, anon_sym_lambda, - ACTIONS(822), 1, + ACTIONS(808), 1, anon_sym_yield, - ACTIONS(824), 1, + ACTIONS(810), 1, anon_sym_await, - ACTIONS(870), 1, + ACTIONS(836), 1, anon_sym_RPAREN, - STATE(1095), 1, - sym_string, - STATE(1101), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1453), 1, + STATE(1036), 1, + sym_string, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1737), 1, + STATE(1696), 1, sym_expression, - STATE(2142), 1, - sym_pattern, - STATE(2149), 1, + STATE(2011), 1, sym_yield, - STATE(2423), 1, + STATE(2021), 1, + sym_pattern, + STATE(2332), 1, sym__patterns, - STATE(2489), 1, + STATE(2436), 1, sym__named_expression_lhs, - STATE(2505), 1, + STATE(2496), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - STATE(1451), 2, + STATE(1324), 2, sym_attribute, sym_subscript, - STATE(2136), 2, + STATE(2017), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2327), 2, + STATE(2275), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(672), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(680), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(814), 4, + ACTIONS(800), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1454), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32178,7 +30618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 14, + STATE(1316), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32193,74 +30633,169 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2784] = 27, - ACTIONS(9), 1, + [2532] = 29, + ACTIONS(612), 1, sym_identifier, - ACTIONS(15), 1, - anon_sym_LPAREN, - ACTIONS(17), 1, - anon_sym_STAR, - ACTIONS(61), 1, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(63), 1, - anon_sym_not, - ACTIONS(67), 1, - anon_sym_lambda, - ACTIONS(69), 1, - anon_sym_yield, - ACTIONS(73), 1, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(634), 1, anon_sym_await, - ACTIONS(79), 1, + ACTIONS(636), 1, sym_string_start, - STATE(661), 1, - sym_list_splat_pattern, - STATE(1034), 1, + ACTIONS(746), 1, + anon_sym_LPAREN, + ACTIONS(750), 1, + anon_sym_STAR, + ACTIONS(752), 1, + anon_sym_STAR_STAR, + ACTIONS(754), 1, + anon_sym_not, + ACTIONS(756), 1, + anon_sym_lambda, + ACTIONS(758), 1, + anon_sym_yield, + ACTIONS(838), 1, + anon_sym_COMMA, + ACTIONS(840), 1, + anon_sym_RBRACE, + STATE(975), 1, sym_string, - STATE(1161), 1, + STATE(976), 1, sym_primary_expression, - STATE(1707), 1, - sym_pattern, - STATE(1714), 1, - sym_pattern_list, - STATE(1824), 1, + STATE(1238), 1, + sym_list_splat_pattern, + STATE(1664), 1, sym_expression, - STATE(2504), 1, + STATE(1794), 1, + sym_pair, + STATE(2111), 1, + sym_dictionary_splat, + STATE(2331), 1, + sym__collection_elements, + STATE(2333), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(628), 2, + sym_ellipsis, + sym_float, + ACTIONS(624), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(2058), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(618), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(632), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1262), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1261), 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, + [2653] = 30, + ACTIONS(658), 1, + anon_sym_LBRACE, + ACTIONS(664), 1, + sym_string_start, + ACTIONS(792), 1, + sym_identifier, + ACTIONS(794), 1, + anon_sym_LPAREN, + ACTIONS(798), 1, + anon_sym_STAR, + ACTIONS(802), 1, + anon_sym_LBRACK, + ACTIONS(804), 1, + anon_sym_not, + ACTIONS(806), 1, + anon_sym_lambda, + ACTIONS(808), 1, + anon_sym_yield, + ACTIONS(810), 1, + anon_sym_await, + ACTIONS(842), 1, + anon_sym_RPAREN, + STATE(1035), 1, + sym_primary_expression, + STATE(1036), 1, + sym_string, + STATE(1322), 1, + sym_list_splat_pattern, + STATE(1696), 1, + sym_expression, + STATE(2011), 1, + sym_yield, + STATE(2021), 1, + sym_pattern, + STATE(2436), 1, + sym__named_expression_lhs, + STATE(2472), 1, + sym__patterns, + STATE(2496), 1, + sym__collection_elements, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(656), 2, sym_ellipsis, sym_float, - STATE(666), 2, + STATE(1324), 2, sym_attribute, sym_subscript, - STATE(1693), 2, + STATE(2017), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2275), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(65), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(75), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(349), 4, + ACTIONS(800), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(2329), 5, - sym_expression_list, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, - sym_yield, - STATE(1329), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32268,7 +30803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 14, + STATE(1316), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32283,76 +30818,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2901] = 29, - ACTIONS(708), 1, + [2776] = 29, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(714), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(786), 1, + ACTIONS(762), 1, sym_identifier, - ACTIONS(788), 1, + ACTIONS(764), 1, anon_sym_LPAREN, - ACTIONS(790), 1, + ACTIONS(766), 1, anon_sym_STAR, - ACTIONS(794), 1, + ACTIONS(770), 1, anon_sym_LBRACK, - ACTIONS(798), 1, + ACTIONS(774), 1, anon_sym_not, - ACTIONS(800), 1, + ACTIONS(776), 1, anon_sym_lambda, - ACTIONS(802), 1, + ACTIONS(778), 1, anon_sym_yield, - ACTIONS(804), 1, + ACTIONS(780), 1, anon_sym_await, - ACTIONS(872), 1, + ACTIONS(844), 1, anon_sym_RBRACK, - STATE(1058), 1, - sym_string, - STATE(1063), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1505), 1, + STATE(1012), 1, + sym_string, + STATE(1400), 1, sym_list_splat_pattern, - STATE(1758), 1, + STATE(1674), 1, sym_expression, - STATE(2257), 1, + STATE(2086), 1, sym_pattern, - STATE(2399), 1, - sym__patterns, + STATE(2387), 1, + sym__named_expression_lhs, STATE(2410), 1, + sym__patterns, + STATE(2477), 1, sym__collection_elements, - STATE(2526), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - STATE(1504), 2, + STATE(1399), 2, sym_attribute, sym_subscript, - STATE(2326), 2, + STATE(2306), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(702), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2258), 3, + STATE(2082), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(710), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(792), 4, + ACTIONS(768), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1506), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32360,7 +30895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 14, + STATE(1403), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32375,74 +30910,74 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3022] = 29, - ACTIONS(632), 1, + [2897] = 29, + ACTIONS(612), 1, sym_identifier, - ACTIONS(640), 1, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(650), 1, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(634), 1, anon_sym_await, - ACTIONS(656), 1, + ACTIONS(636), 1, sym_string_start, - ACTIONS(770), 1, + ACTIONS(746), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(750), 1, anon_sym_STAR, - ACTIONS(776), 1, + ACTIONS(752), 1, anon_sym_STAR_STAR, - ACTIONS(778), 1, + ACTIONS(754), 1, anon_sym_not, - ACTIONS(780), 1, + ACTIONS(756), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(758), 1, anon_sym_yield, - ACTIONS(874), 1, + ACTIONS(846), 1, anon_sym_COMMA, - ACTIONS(876), 1, + ACTIONS(848), 1, anon_sym_RBRACE, - STATE(1037), 1, + STATE(975), 1, sym_string, - STATE(1038), 1, + STATE(976), 1, sym_primary_expression, - STATE(1338), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1728), 1, + STATE(1669), 1, sym_expression, - STATE(1862), 1, + STATE(1808), 1, sym_pair, - STATE(2219), 1, + STATE(2199), 1, sym_dictionary_splat, - STATE(2343), 1, - sym__collection_elements, - STATE(2420), 1, + STATE(2333), 1, sym__named_expression_lhs, + STATE(2481), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2157), 3, + STATE(2058), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(638), 4, + ACTIONS(618), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(652), 4, + ACTIONS(632), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1278), 7, + STATE(1262), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32450,7 +30985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1277), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32467,78 +31002,74 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3143] = 31, - ACTIONS(678), 1, + [3018] = 29, + ACTIONS(612), 1, + sym_identifier, + ACTIONS(620), 1, + anon_sym_LBRACK, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(634), 1, + anon_sym_await, + ACTIONS(636), 1, sym_string_start, - ACTIONS(806), 1, - sym_identifier, - ACTIONS(808), 1, + ACTIONS(746), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(750), 1, anon_sym_STAR, - ACTIONS(816), 1, - anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(752), 1, + anon_sym_STAR_STAR, + ACTIONS(754), 1, anon_sym_not, - ACTIONS(820), 1, + ACTIONS(756), 1, anon_sym_lambda, - ACTIONS(822), 1, + ACTIONS(758), 1, anon_sym_yield, - ACTIONS(824), 1, - anon_sym_await, - ACTIONS(878), 1, - anon_sym_RPAREN, - STATE(1095), 1, + ACTIONS(850), 1, + anon_sym_COMMA, + ACTIONS(852), 1, + anon_sym_RBRACE, + STATE(975), 1, sym_string, - STATE(1101), 1, + STATE(976), 1, sym_primary_expression, - STATE(1453), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1738), 1, + STATE(1670), 1, sym_expression, - STATE(2100), 1, - sym_yield, - STATE(2130), 1, - sym_parenthesized_list_splat, - STATE(2131), 1, - sym_list_splat, - STATE(2142), 1, - sym_pattern, - STATE(2484), 1, - sym__collection_elements, - STATE(2486), 1, - sym__patterns, - STATE(2489), 1, + STATE(1810), 1, + sym_pair, + STATE(2020), 1, + sym_dictionary_splat, + STATE(2333), 1, sym__named_expression_lhs, + STATE(2470), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - STATE(1451), 2, - sym_attribute, - sym_subscript, - STATE(2327), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(672), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(680), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(814), 4, + STATE(2058), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(618), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1454), 7, + ACTIONS(632), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1262), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32546,9 +31077,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 14, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -32561,74 +31094,77 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3268] = 27, - ACTIONS(9), 1, + [3139] = 30, + ACTIONS(658), 1, + anon_sym_LBRACE, + ACTIONS(664), 1, + sym_string_start, + ACTIONS(792), 1, sym_identifier, - ACTIONS(15), 1, + ACTIONS(794), 1, anon_sym_LPAREN, - ACTIONS(17), 1, + ACTIONS(798), 1, anon_sym_STAR, - ACTIONS(61), 1, + ACTIONS(802), 1, anon_sym_LBRACK, - ACTIONS(63), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(67), 1, + ACTIONS(806), 1, anon_sym_lambda, - ACTIONS(69), 1, + ACTIONS(808), 1, anon_sym_yield, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(77), 1, + ACTIONS(810), 1, anon_sym_await, - ACTIONS(79), 1, - sym_string_start, - STATE(661), 1, - sym_list_splat_pattern, - STATE(1034), 1, - sym_string, - STATE(1161), 1, + ACTIONS(854), 1, + anon_sym_RPAREN, + STATE(1035), 1, sym_primary_expression, - STATE(1707), 1, - sym_pattern, - STATE(1714), 1, - sym_pattern_list, - STATE(1824), 1, + STATE(1036), 1, + sym_string, + STATE(1322), 1, + sym_list_splat_pattern, + STATE(1696), 1, sym_expression, - STATE(2504), 1, + STATE(2011), 1, + sym_yield, + STATE(2021), 1, + sym_pattern, + STATE(2426), 1, + sym__patterns, + STATE(2436), 1, sym__named_expression_lhs, + STATE(2496), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - STATE(666), 2, + STATE(1324), 2, sym_attribute, sym_subscript, - STATE(1693), 2, + STATE(2017), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2275), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(65), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(75), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(349), 4, + ACTIONS(800), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(2281), 5, - sym_expression_list, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, - sym_yield, - STATE(1329), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32636,7 +31172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 14, + STATE(1316), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32651,77 +31187,77 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3385] = 30, - ACTIONS(678), 1, + [3262] = 30, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(806), 1, + ACTIONS(792), 1, sym_identifier, - ACTIONS(808), 1, + ACTIONS(794), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(798), 1, anon_sym_STAR, - ACTIONS(816), 1, + ACTIONS(802), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(820), 1, + ACTIONS(806), 1, anon_sym_lambda, - ACTIONS(822), 1, + ACTIONS(808), 1, anon_sym_yield, - ACTIONS(824), 1, + ACTIONS(810), 1, anon_sym_await, - ACTIONS(880), 1, + ACTIONS(856), 1, anon_sym_RPAREN, - STATE(1095), 1, - sym_string, - STATE(1101), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1453), 1, + STATE(1036), 1, + sym_string, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1748), 1, + STATE(1689), 1, sym_expression, - STATE(2125), 1, - sym_yield, - STATE(2142), 1, + STATE(2021), 1, sym_pattern, - STATE(2397), 1, + STATE(2179), 1, + sym_yield, + STATE(2436), 1, + sym__named_expression_lhs, + STATE(2447), 1, sym__collection_elements, - STATE(2486), 1, + STATE(2472), 1, sym__patterns, - STATE(2489), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - STATE(1451), 2, + STATE(1324), 2, sym_attribute, sym_subscript, - STATE(2136), 2, + STATE(2017), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2327), 2, + STATE(2275), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(672), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(680), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(814), 4, + ACTIONS(800), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1454), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32729,7 +31265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 14, + STATE(1316), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32744,74 +31280,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3508] = 29, - ACTIONS(632), 1, - sym_identifier, - ACTIONS(640), 1, - anon_sym_LBRACK, - ACTIONS(650), 1, + [3385] = 29, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(654), 1, - anon_sym_await, - ACTIONS(656), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(770), 1, + ACTIONS(762), 1, + sym_identifier, + ACTIONS(764), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(766), 1, anon_sym_STAR, - ACTIONS(776), 1, - anon_sym_STAR_STAR, - ACTIONS(778), 1, + ACTIONS(770), 1, + anon_sym_LBRACK, + ACTIONS(774), 1, anon_sym_not, - ACTIONS(780), 1, + ACTIONS(776), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(778), 1, anon_sym_yield, - ACTIONS(882), 1, - anon_sym_COMMA, - ACTIONS(884), 1, - anon_sym_RBRACE, - STATE(1037), 1, - sym_string, - STATE(1038), 1, + ACTIONS(780), 1, + anon_sym_await, + ACTIONS(858), 1, + anon_sym_RBRACK, + STATE(1008), 1, sym_primary_expression, - STATE(1338), 1, + STATE(1012), 1, + sym_string, + STATE(1400), 1, sym_list_splat_pattern, - STATE(1727), 1, + STATE(1674), 1, sym_expression, - STATE(1892), 1, - sym_pair, - STATE(2266), 1, - sym_dictionary_splat, - STATE(2420), 1, + STATE(2086), 1, + sym_pattern, + STATE(2361), 1, + sym__patterns, + STATE(2387), 1, sym__named_expression_lhs, - STATE(2529), 1, + STATE(2477), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + STATE(1399), 2, + sym_attribute, + sym_subscript, + STATE(2306), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2157), 3, + STATE(2082), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(638), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(652), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1278), 7, + ACTIONS(768), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32819,11 +31357,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1277), 16, + STATE(1403), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -32836,77 +31372,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3629] = 30, - ACTIONS(678), 1, - anon_sym_LBRACE, + [3506] = 29, ACTIONS(684), 1, + anon_sym_LBRACE, + ACTIONS(690), 1, sym_string_start, - ACTIONS(806), 1, + ACTIONS(762), 1, sym_identifier, - ACTIONS(808), 1, + ACTIONS(764), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(766), 1, anon_sym_STAR, - ACTIONS(816), 1, + ACTIONS(770), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(774), 1, anon_sym_not, - ACTIONS(820), 1, + ACTIONS(776), 1, anon_sym_lambda, - ACTIONS(822), 1, + ACTIONS(778), 1, anon_sym_yield, - ACTIONS(824), 1, + ACTIONS(780), 1, anon_sym_await, - ACTIONS(886), 1, - anon_sym_RPAREN, - STATE(1095), 1, - sym_string, - STATE(1101), 1, + ACTIONS(860), 1, + anon_sym_RBRACK, + STATE(1008), 1, sym_primary_expression, - STATE(1453), 1, + STATE(1012), 1, + sym_string, + STATE(1400), 1, sym_list_splat_pattern, - STATE(1748), 1, + STATE(1674), 1, sym_expression, - STATE(2125), 1, - sym_yield, - STATE(2142), 1, + STATE(2086), 1, sym_pattern, - STATE(2397), 1, - sym__collection_elements, - STATE(2489), 1, - sym__named_expression_lhs, - STATE(2509), 1, + STATE(2361), 1, sym__patterns, + STATE(2387), 1, + sym__named_expression_lhs, + STATE(2477), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - STATE(1451), 2, + STATE(1399), 2, sym_attribute, sym_subscript, - STATE(2136), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2327), 2, + STATE(2306), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(672), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(680), 4, + STATE(2082), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(814), 4, + ACTIONS(768), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1454), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32914,7 +31449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 14, + STATE(1403), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32929,76 +31464,77 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3752] = 29, - ACTIONS(708), 1, + [3627] = 30, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(714), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(786), 1, + ACTIONS(792), 1, sym_identifier, - ACTIONS(788), 1, + ACTIONS(794), 1, anon_sym_LPAREN, - ACTIONS(790), 1, + ACTIONS(798), 1, anon_sym_STAR, - ACTIONS(794), 1, + ACTIONS(802), 1, anon_sym_LBRACK, - ACTIONS(798), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(800), 1, + ACTIONS(806), 1, anon_sym_lambda, - ACTIONS(802), 1, + ACTIONS(808), 1, anon_sym_yield, - ACTIONS(804), 1, + ACTIONS(810), 1, anon_sym_await, - ACTIONS(888), 1, - anon_sym_RBRACK, - STATE(1058), 1, - sym_string, - STATE(1063), 1, + ACTIONS(862), 1, + anon_sym_RPAREN, + STATE(1035), 1, sym_primary_expression, - STATE(1505), 1, + STATE(1036), 1, + sym_string, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1758), 1, + STATE(1680), 1, sym_expression, - STATE(2257), 1, + STATE(2021), 1, sym_pattern, - STATE(2410), 1, + STATE(2025), 1, + sym_yield, + STATE(2436), 1, + sym__named_expression_lhs, + STATE(2464), 1, sym__collection_elements, - STATE(2458), 1, + STATE(2472), 1, sym__patterns, - STATE(2526), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - STATE(1504), 2, + STATE(1324), 2, sym_attribute, sym_subscript, - STATE(2326), 2, + STATE(2017), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2275), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(702), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2258), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(710), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(792), 4, + ACTIONS(800), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1506), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33006,7 +31542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 14, + STATE(1316), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -33021,57 +31557,150 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3873] = 21, - ACTIONS(334), 1, + [3750] = 30, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(890), 1, + ACTIONS(792), 1, sym_identifier, - ACTIONS(894), 1, + ACTIONS(794), 1, anon_sym_LPAREN, - ACTIONS(896), 1, + ACTIONS(798), 1, anon_sym_STAR, - ACTIONS(900), 1, + ACTIONS(802), 1, anon_sym_LBRACK, - ACTIONS(904), 1, - anon_sym_TILDE, - ACTIONS(906), 1, + ACTIONS(804), 1, + anon_sym_not, + ACTIONS(806), 1, + anon_sym_lambda, + ACTIONS(808), 1, + anon_sym_yield, + ACTIONS(810), 1, anon_sym_await, - STATE(1071), 1, + ACTIONS(864), 1, + anon_sym_RPAREN, + STATE(1035), 1, + sym_primary_expression, + STATE(1036), 1, sym_string, - STATE(1478), 1, + STATE(1322), 1, sym_list_splat_pattern, - STATE(1681), 1, + STATE(1696), 1, + sym_expression, + STATE(2011), 1, + sym_yield, + STATE(2021), 1, sym_pattern, - STATE(1682), 1, - sym_primary_expression, + STATE(2384), 1, + sym__patterns, + STATE(2436), 1, + sym__named_expression_lhs, + STATE(2496), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(902), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1477), 2, + STATE(1324), 2, sym_attribute, sym_subscript, - STATE(1671), 2, + STATE(2017), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2275), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(652), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(660), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(800), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1321), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1316), 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, + [3873] = 21, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(332), 1, + sym_string_start, + ACTIONS(866), 1, + sym_identifier, + ACTIONS(870), 1, + anon_sym_LPAREN, + ACTIONS(872), 1, + anon_sym_STAR, + ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, + anon_sym_TILDE, + ACTIONS(882), 1, + anon_sym_await, + STATE(996), 1, + sym_string, + STATE(1387), 1, + sym_list_splat_pattern, + STATE(1586), 1, + sym_pattern, + STATE(1592), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(324), 2, + sym_ellipsis, + sym_float, + ACTIONS(878), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1382), 2, + sym_attribute, + sym_subscript, + STATE(1611), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(898), 4, + ACTIONS(874), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1455), 14, + STATE(1426), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -33086,7 +31715,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(892), 17, + ACTIONS(868), 17, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -33105,56 +31734,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, [3977] = 21, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(890), 1, + ACTIONS(866), 1, sym_identifier, - ACTIONS(894), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(896), 1, + ACTIONS(872), 1, anon_sym_STAR, - ACTIONS(900), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(904), 1, + ACTIONS(880), 1, anon_sym_TILDE, - ACTIONS(906), 1, + ACTIONS(882), 1, anon_sym_await, - STATE(1071), 1, + STATE(996), 1, sym_string, - STATE(1478), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1681), 1, + STATE(1586), 1, sym_pattern, - STATE(1682), 1, + STATE(1592), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(902), 2, + ACTIONS(878), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1477), 2, + STATE(1382), 2, sym_attribute, sym_subscript, - STATE(1671), 2, + STATE(1611), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(898), 4, + ACTIONS(874), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1455), 14, + STATE(1426), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -33169,7 +31798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(908), 17, + ACTIONS(884), 17, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -33188,70 +31817,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, [4081] = 26, - ACTIONS(624), 1, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(630), 1, + ACTIONS(603), 1, sym_string_start, - ACTIONS(782), 1, + ACTIONS(758), 1, anon_sym_yield, - ACTIONS(910), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(912), 1, + ACTIONS(888), 1, anon_sym_LPAREN, - ACTIONS(914), 1, + ACTIONS(890), 1, anon_sym_STAR, - ACTIONS(918), 1, + ACTIONS(894), 1, anon_sym_LBRACK, - ACTIONS(920), 1, + ACTIONS(896), 1, anon_sym_not, - ACTIONS(922), 1, + ACTIONS(898), 1, anon_sym_lambda, - ACTIONS(924), 1, + ACTIONS(900), 1, anon_sym_await, - STATE(1032), 1, - sym_string, - STATE(1033), 1, + STATE(983), 1, sym_primary_expression, - STATE(1280), 1, + STATE(984), 1, + sym_string, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1776), 1, + STATE(1710), 1, sym_expression, - STATE(2317), 1, + STATE(2290), 1, sym_pattern, - STATE(2363), 1, + STATE(2438), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - STATE(1282), 2, + STATE(1266), 2, sym_attribute, sym_subscript, - STATE(1693), 2, + STATE(1642), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(618), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(626), 4, + ACTIONS(599), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(916), 4, + ACTIONS(892), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1989), 4, + STATE(1945), 4, sym_expression_list, sym_pattern_list, sym_yield, sym__f_expression, - STATE(1343), 7, + STATE(1195), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33259,7 +31888,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1341), 14, + STATE(1196), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -33275,70 +31904,70 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4194] = 26, - ACTIONS(624), 1, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(630), 1, + ACTIONS(603), 1, sym_string_start, - ACTIONS(782), 1, + ACTIONS(758), 1, anon_sym_yield, - ACTIONS(910), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(912), 1, + ACTIONS(888), 1, anon_sym_LPAREN, - ACTIONS(914), 1, + ACTIONS(890), 1, anon_sym_STAR, - ACTIONS(918), 1, + ACTIONS(894), 1, anon_sym_LBRACK, - ACTIONS(920), 1, + ACTIONS(896), 1, anon_sym_not, - ACTIONS(922), 1, + ACTIONS(898), 1, anon_sym_lambda, - ACTIONS(924), 1, + ACTIONS(900), 1, anon_sym_await, - STATE(1032), 1, - sym_string, - STATE(1033), 1, + STATE(983), 1, sym_primary_expression, - STATE(1280), 1, + STATE(984), 1, + sym_string, + STATE(1264), 1, sym_list_splat_pattern, - STATE(1776), 1, + STATE(1710), 1, sym_expression, - STATE(2317), 1, + STATE(2290), 1, sym_pattern, - STATE(2363), 1, + STATE(2438), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - STATE(1282), 2, + STATE(1266), 2, sym_attribute, sym_subscript, - STATE(1693), 2, + STATE(1642), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(618), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(626), 4, + ACTIONS(599), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(916), 4, + ACTIONS(892), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(2015), 4, + STATE(1952), 4, sym_expression_list, sym_pattern_list, sym_yield, sym__f_expression, - STATE(1343), 7, + STATE(1195), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33346,7 +31975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1341), 14, + STATE(1196), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -33361,80 +31990,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4307] = 26, - ACTIONS(666), 1, - anon_sym_LBRACK, - ACTIONS(678), 1, + [4307] = 21, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(818), 1, - anon_sym_not, - ACTIONS(820), 1, - anon_sym_lambda, - ACTIONS(926), 1, + ACTIONS(880), 1, + anon_sym_TILDE, + ACTIONS(902), 1, sym_identifier, - ACTIONS(928), 1, + ACTIONS(904), 1, anon_sym_LPAREN, - ACTIONS(930), 1, - anon_sym_RPAREN, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(934), 1, + ACTIONS(906), 1, anon_sym_STAR, - ACTIONS(938), 1, - anon_sym_STAR_STAR, - ACTIONS(940), 1, + ACTIONS(910), 1, + anon_sym_LBRACK, + ACTIONS(912), 1, anon_sym_await, - STATE(1095), 1, + STATE(996), 1, sym_string, - STATE(1101), 1, - sym_primary_expression, - STATE(1407), 1, + STATE(1559), 1, sym_list_splat_pattern, - STATE(1756), 1, - sym_expression, - STATE(2173), 1, - sym_parenthesized_list_splat, - STATE(2489), 1, - sym__named_expression_lhs, + STATE(1597), 1, + sym_primary_expression, + STATE(1630), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(878), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - STATE(2172), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(680), 4, + STATE(1556), 2, + sym_attribute, + sym_subscript, + STATE(1642), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(936), 4, + ACTIONS(908), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1454), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1385), 16, + STATE(1426), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -33447,68 +32055,85 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4419] = 26, - ACTIONS(724), 1, + ACTIONS(868), 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, + [4409] = 27, + ACTIONS(638), 1, + sym_identifier, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(662), 1, + anon_sym_await, + ACTIONS(664), 1, sym_string_start, - ACTIONS(938), 1, - anon_sym_STAR_STAR, - ACTIONS(942), 1, - sym_identifier, - ACTIONS(944), 1, - anon_sym_LPAREN, - ACTIONS(946), 1, - anon_sym_RPAREN, - ACTIONS(948), 1, - anon_sym_COMMA, - ACTIONS(950), 1, + ACTIONS(798), 1, anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(806), 1, anon_sym_lambda, - ACTIONS(958), 1, - anon_sym_await, - STATE(1152), 1, + ACTIONS(808), 1, + anon_sym_yield, + ACTIONS(914), 1, + anon_sym_LPAREN, + ACTIONS(916), 1, + anon_sym_RPAREN, + STATE(1035), 1, sym_primary_expression, - STATE(1157), 1, + STATE(1036), 1, sym_string, - STATE(1516), 1, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1863), 1, + STATE(1694), 1, sym_expression, - STATE(2071), 1, - sym_parenthesized_list_splat, - STATE(2406), 1, + STATE(2011), 1, + sym_yield, + STATE(2193), 1, + sym_with_item, + STATE(2436), 1, sym__named_expression_lhs, + STATE(2496), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + STATE(2017), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2065), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(736), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(952), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + ACTIONS(660), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33516,7 +32141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33533,59 +32158,80 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4531] = 21, - ACTIONS(334), 1, + [4523] = 26, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(904), 1, - anon_sym_TILDE, - ACTIONS(960), 1, - sym_identifier, - ACTIONS(962), 1, + ACTIONS(804), 1, + anon_sym_not, + ACTIONS(806), 1, + anon_sym_lambda, + ACTIONS(914), 1, anon_sym_LPAREN, - ACTIONS(964), 1, + ACTIONS(918), 1, + sym_identifier, + ACTIONS(920), 1, + anon_sym_RPAREN, + ACTIONS(922), 1, + anon_sym_COMMA, + ACTIONS(924), 1, anon_sym_STAR, - ACTIONS(968), 1, - anon_sym_LBRACK, - ACTIONS(970), 1, + ACTIONS(928), 1, + anon_sym_STAR_STAR, + ACTIONS(930), 1, anon_sym_await, - STATE(1071), 1, + STATE(1035), 1, + sym_primary_expression, + STATE(1036), 1, sym_string, - STATE(1618), 1, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1664), 1, - sym_primary_expression, - STATE(1717), 1, - sym_pattern, + STATE(1673), 1, + sym_expression, + STATE(2090), 1, + sym_parenthesized_list_splat, + STATE(2436), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(902), 2, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, - STATE(1615), 2, - sym_attribute, - sym_subscript, - STATE(1693), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(336), 4, + anon_sym_TILDE, + STATE(2089), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(966), 4, + ACTIONS(926), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1455), 14, + STATE(1321), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -33598,84 +32244,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(892), 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, - [4633] = 26, - ACTIONS(666), 1, + [4635] = 26, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(818), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(820), 1, + ACTIONS(806), 1, anon_sym_lambda, - ACTIONS(926), 1, - sym_identifier, - ACTIONS(928), 1, + ACTIONS(914), 1, anon_sym_LPAREN, - ACTIONS(934), 1, + ACTIONS(918), 1, + sym_identifier, + ACTIONS(924), 1, anon_sym_STAR, - ACTIONS(938), 1, + ACTIONS(928), 1, anon_sym_STAR_STAR, - ACTIONS(940), 1, + ACTIONS(930), 1, anon_sym_await, - ACTIONS(972), 1, + ACTIONS(932), 1, anon_sym_RPAREN, - ACTIONS(974), 1, + ACTIONS(934), 1, anon_sym_COMMA, - STATE(1095), 1, - sym_string, - STATE(1101), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1036), 1, + sym_string, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1751), 1, + STATE(1676), 1, sym_expression, - STATE(2238), 1, + STATE(2132), 1, sym_parenthesized_list_splat, - STATE(2489), 1, + STATE(2436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2235), 3, + STATE(2135), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(680), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(936), 4, + ACTIONS(926), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1454), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33683,7 +32313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33700,68 +32330,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4745] = 26, - ACTIONS(666), 1, + [4747] = 26, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(818), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(820), 1, + ACTIONS(806), 1, anon_sym_lambda, - ACTIONS(926), 1, - sym_identifier, - ACTIONS(928), 1, + ACTIONS(914), 1, anon_sym_LPAREN, - ACTIONS(934), 1, + ACTIONS(918), 1, + sym_identifier, + ACTIONS(924), 1, anon_sym_STAR, - ACTIONS(938), 1, + ACTIONS(928), 1, anon_sym_STAR_STAR, - ACTIONS(940), 1, + ACTIONS(930), 1, anon_sym_await, - ACTIONS(976), 1, + ACTIONS(936), 1, anon_sym_RPAREN, - ACTIONS(978), 1, + ACTIONS(938), 1, anon_sym_COMMA, - STATE(1095), 1, - sym_string, - STATE(1101), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1036), 1, + sym_string, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1746), 1, + STATE(1679), 1, sym_expression, - STATE(2230), 1, + STATE(2098), 1, sym_parenthesized_list_splat, - STATE(2489), 1, + STATE(2436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2229), 3, + STATE(2100), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(680), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(936), 4, + ACTIONS(926), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1454), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33769,7 +32399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33786,68 +32416,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4857] = 26, - ACTIONS(666), 1, + [4859] = 24, + ACTIONS(579), 1, + sym_identifier, + ACTIONS(581), 1, + anon_sym_LPAREN, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(601), 1, + anon_sym_await, + ACTIONS(603), 1, sym_string_start, - ACTIONS(818), 1, + ACTIONS(890), 1, + anon_sym_STAR, + ACTIONS(896), 1, anon_sym_not, - ACTIONS(820), 1, + ACTIONS(898), 1, anon_sym_lambda, - ACTIONS(926), 1, - sym_identifier, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(934), 1, - anon_sym_STAR, - ACTIONS(938), 1, - anon_sym_STAR_STAR, ACTIONS(940), 1, - anon_sym_await, - ACTIONS(980), 1, - anon_sym_RPAREN, - ACTIONS(982), 1, - anon_sym_COMMA, - STATE(1095), 1, - sym_string, - STATE(1101), 1, + anon_sym_from, + STATE(983), 1, sym_primary_expression, - STATE(1407), 1, + STATE(984), 1, + sym_string, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1735), 1, + STATE(1704), 1, sym_expression, - STATE(2261), 1, - sym_parenthesized_list_splat, - STATE(2489), 1, + STATE(1957), 1, + sym_expression_list, + STATE(2438), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2260), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(680), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(936), 4, + ACTIONS(585), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1454), 7, + ACTIONS(599), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(942), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1195), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33855,7 +32483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33872,68 +32500,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4969] = 26, - ACTIONS(666), 1, + [4967] = 26, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(818), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(820), 1, + ACTIONS(806), 1, anon_sym_lambda, - ACTIONS(926), 1, - sym_identifier, - ACTIONS(928), 1, + ACTIONS(914), 1, anon_sym_LPAREN, - ACTIONS(934), 1, + ACTIONS(918), 1, + sym_identifier, + ACTIONS(924), 1, anon_sym_STAR, - ACTIONS(938), 1, + ACTIONS(928), 1, anon_sym_STAR_STAR, - ACTIONS(940), 1, + ACTIONS(930), 1, anon_sym_await, - ACTIONS(984), 1, + ACTIONS(944), 1, anon_sym_RPAREN, - ACTIONS(986), 1, + ACTIONS(946), 1, anon_sym_COMMA, - STATE(1095), 1, - sym_string, - STATE(1101), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1036), 1, + sym_string, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1672), 1, sym_expression, - STATE(2113), 1, + STATE(2145), 1, sym_parenthesized_list_splat, - STATE(2489), 1, + STATE(2436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2112), 3, + STATE(2173), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(680), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(936), 4, + ACTIONS(926), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1454), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33941,7 +32569,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33958,68 +32586,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5081] = 26, - ACTIONS(666), 1, + [5079] = 26, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(818), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(820), 1, + ACTIONS(806), 1, anon_sym_lambda, - ACTIONS(926), 1, - sym_identifier, - ACTIONS(928), 1, + ACTIONS(914), 1, anon_sym_LPAREN, - ACTIONS(934), 1, + ACTIONS(918), 1, + sym_identifier, + ACTIONS(924), 1, anon_sym_STAR, - ACTIONS(938), 1, + ACTIONS(928), 1, anon_sym_STAR_STAR, - ACTIONS(940), 1, + ACTIONS(930), 1, anon_sym_await, - ACTIONS(988), 1, + ACTIONS(948), 1, anon_sym_RPAREN, - ACTIONS(990), 1, + ACTIONS(950), 1, anon_sym_COMMA, - STATE(1095), 1, - sym_string, - STATE(1101), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1036), 1, + sym_string, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1754), 1, + STATE(1675), 1, sym_expression, - STATE(2211), 1, + STATE(2148), 1, sym_parenthesized_list_splat, - STATE(2489), 1, + STATE(2436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2214), 3, + STATE(2147), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(680), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(936), 4, + ACTIONS(926), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1454), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34027,7 +32655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34044,68 +32672,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5193] = 26, - ACTIONS(666), 1, + [5191] = 26, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(818), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(820), 1, + ACTIONS(806), 1, anon_sym_lambda, - ACTIONS(926), 1, - sym_identifier, - ACTIONS(928), 1, + ACTIONS(914), 1, anon_sym_LPAREN, - ACTIONS(934), 1, + ACTIONS(918), 1, + sym_identifier, + ACTIONS(924), 1, anon_sym_STAR, - ACTIONS(938), 1, + ACTIONS(928), 1, anon_sym_STAR_STAR, - ACTIONS(940), 1, + ACTIONS(930), 1, anon_sym_await, - ACTIONS(992), 1, + ACTIONS(952), 1, anon_sym_RPAREN, - ACTIONS(994), 1, + ACTIONS(954), 1, anon_sym_COMMA, - STATE(1095), 1, - sym_string, - STATE(1101), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1036), 1, + sym_string, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1736), 1, + STATE(1681), 1, sym_expression, - STATE(2147), 1, + STATE(2039), 1, sym_parenthesized_list_splat, - STATE(2489), 1, + STATE(2436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2145), 3, + STATE(2038), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(680), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(936), 4, + ACTIONS(926), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1454), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34113,7 +32741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34130,69 +32758,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5305] = 27, - ACTIONS(658), 1, - sym_identifier, - ACTIONS(666), 1, + [5303] = 26, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(682), 1, - anon_sym_await, - ACTIONS(684), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(812), 1, + ACTIONS(928), 1, + anon_sym_STAR_STAR, + ACTIONS(952), 1, + anon_sym_RPAREN, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(956), 1, + sym_identifier, + ACTIONS(958), 1, + anon_sym_LPAREN, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(818), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(820), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(822), 1, - anon_sym_yield, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(996), 1, - anon_sym_RPAREN, - STATE(1095), 1, + ACTIONS(968), 1, + anon_sym_await, + STATE(1062), 1, sym_string, - STATE(1101), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1792), 1, sym_expression, - STATE(2125), 1, - sym_yield, - STATE(2228), 1, - sym_with_item, - STATE(2397), 1, - sym__collection_elements, - STATE(2489), 1, + STATE(2039), 1, + sym_parenthesized_list_splat, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - STATE(2136), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(672), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(680), 4, + STATE(2038), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + ACTIONS(962), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34200,7 +32827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34217,57 +32844,57 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5419] = 21, - ACTIONS(334), 1, + [5415] = 21, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(904), 1, + ACTIONS(880), 1, anon_sym_TILDE, - ACTIONS(960), 1, + ACTIONS(902), 1, sym_identifier, - ACTIONS(962), 1, + ACTIONS(904), 1, anon_sym_LPAREN, - ACTIONS(964), 1, + ACTIONS(906), 1, anon_sym_STAR, - ACTIONS(968), 1, + ACTIONS(910), 1, anon_sym_LBRACK, - ACTIONS(970), 1, + ACTIONS(912), 1, anon_sym_await, - STATE(1071), 1, + STATE(996), 1, sym_string, - STATE(1618), 1, + STATE(1559), 1, sym_list_splat_pattern, - STATE(1664), 1, + STATE(1597), 1, sym_primary_expression, - STATE(1717), 1, + STATE(1630), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(902), 2, + ACTIONS(878), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1615), 2, + STATE(1556), 2, sym_attribute, sym_subscript, - STATE(1693), 2, + STATE(1642), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(966), 4, + ACTIONS(908), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1455), 14, + STATE(1426), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -34282,7 +32909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(908), 15, + ACTIONS(884), 15, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, @@ -34298,66 +32925,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [5521] = 24, - ACTIONS(606), 1, - sym_identifier, - ACTIONS(608), 1, - anon_sym_LPAREN, - ACTIONS(614), 1, + [5517] = 26, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(628), 1, - anon_sym_await, - ACTIONS(630), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(914), 1, - anon_sym_STAR, - ACTIONS(920), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(922), 1, + ACTIONS(806), 1, anon_sym_lambda, - ACTIONS(998), 1, - anon_sym_from, - STATE(1032), 1, - sym_string, - STATE(1033), 1, + ACTIONS(914), 1, + anon_sym_LPAREN, + ACTIONS(918), 1, + sym_identifier, + ACTIONS(924), 1, + anon_sym_STAR, + ACTIONS(928), 1, + anon_sym_STAR_STAR, + ACTIONS(930), 1, + anon_sym_await, + ACTIONS(970), 1, + anon_sym_RPAREN, + ACTIONS(972), 1, + anon_sym_COMMA, + STATE(1035), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1036), 1, + sym_string, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1768), 1, + STATE(1687), 1, sym_expression, - STATE(1975), 1, - sym_expression_list, - STATE(2363), 1, + STATE(2183), 1, + sym_parenthesized_list_splat, + STATE(2436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(618), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(612), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(626), 4, + STATE(2184), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1000), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1343), 7, + ACTIONS(926), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34365,7 +32994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1341), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34383,67 +33012,67 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [5629] = 26, - ACTIONS(666), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(818), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(820), 1, + ACTIONS(806), 1, anon_sym_lambda, - ACTIONS(926), 1, - sym_identifier, - ACTIONS(928), 1, + ACTIONS(914), 1, anon_sym_LPAREN, - ACTIONS(934), 1, + ACTIONS(918), 1, + sym_identifier, + ACTIONS(924), 1, anon_sym_STAR, - ACTIONS(938), 1, + ACTIONS(928), 1, anon_sym_STAR_STAR, - ACTIONS(940), 1, + ACTIONS(930), 1, anon_sym_await, - ACTIONS(946), 1, + ACTIONS(974), 1, anon_sym_RPAREN, - ACTIONS(948), 1, + ACTIONS(976), 1, anon_sym_COMMA, - STATE(1095), 1, - sym_string, - STATE(1101), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1036), 1, + sym_string, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1734), 1, + STATE(1693), 1, sym_expression, - STATE(2071), 1, + STATE(2205), 1, sym_parenthesized_list_splat, - STATE(2489), 1, + STATE(2436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2065), 3, + STATE(2204), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(680), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(936), 4, + ACTIONS(926), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1454), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34451,7 +33080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34469,65 +33098,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [5741] = 25, - ACTIONS(690), 1, + ACTIONS(666), 1, sym_identifier, - ACTIONS(698), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(708), 1, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(712), 1, + ACTIONS(688), 1, anon_sym_await, - ACTIONS(714), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(790), 1, + ACTIONS(766), 1, anon_sym_STAR, - ACTIONS(798), 1, + ACTIONS(774), 1, anon_sym_not, - ACTIONS(800), 1, + ACTIONS(776), 1, anon_sym_lambda, - ACTIONS(802), 1, + ACTIONS(778), 1, anon_sym_yield, - ACTIONS(1002), 1, + ACTIONS(978), 1, anon_sym_LPAREN, - ACTIONS(1004), 1, + ACTIONS(980), 1, anon_sym_RBRACK, - STATE(1058), 1, - sym_string, - STATE(1063), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1397), 1, + STATE(1012), 1, + sym_string, + STATE(1381), 1, sym_list_splat_pattern, - STATE(1750), 1, + STATE(1691), 1, sym_expression, - STATE(2461), 1, + STATE(2327), 1, sym__collection_elements, - STATE(2526), 1, + STATE(2387), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2258), 3, + STATE(2082), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(696), 4, + ACTIONS(672), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(710), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1506), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34535,7 +33164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34553,65 +33182,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [5850] = 25, - ACTIONS(724), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(938), 1, + ACTIONS(928), 1, anon_sym_STAR_STAR, - ACTIONS(942), 1, + ACTIONS(956), 1, sym_identifier, - ACTIONS(944), 1, + ACTIONS(958), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(958), 1, + ACTIONS(968), 1, anon_sym_await, - ACTIONS(1006), 1, + ACTIONS(982), 1, anon_sym_RPAREN, - STATE(1152), 1, - sym_primary_expression, - STATE(1157), 1, + STATE(1062), 1, sym_string, - STATE(1516), 1, + STATE(1083), 1, + sym_primary_expression, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1907), 1, + STATE(1902), 1, sym_expression, - STATE(2271), 1, + STATE(2280), 1, sym_parenthesized_list_splat, - STATE(2406), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2274), 3, + STATE(2285), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(952), 4, + ACTIONS(962), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34619,7 +33248,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34637,65 +33266,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [5959] = 25, - ACTIONS(724), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(938), 1, + ACTIONS(928), 1, anon_sym_STAR_STAR, - ACTIONS(942), 1, + ACTIONS(956), 1, sym_identifier, - ACTIONS(944), 1, + ACTIONS(958), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(958), 1, + ACTIONS(968), 1, anon_sym_await, - ACTIONS(1008), 1, + ACTIONS(984), 1, anon_sym_RPAREN, - STATE(1152), 1, - sym_primary_expression, - STATE(1157), 1, + STATE(1062), 1, sym_string, - STATE(1516), 1, + STATE(1083), 1, + sym_primary_expression, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1907), 1, + STATE(1902), 1, sym_expression, - STATE(2271), 1, + STATE(2280), 1, sym_parenthesized_list_splat, - STATE(2406), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2274), 3, + STATE(2285), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(952), 4, + ACTIONS(962), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34703,7 +33332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34720,66 +33349,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6068] = 25, - ACTIONS(724), 1, + [6068] = 27, + ACTIONS(638), 1, + sym_identifier, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(662), 1, + anon_sym_await, + ACTIONS(664), 1, sym_string_start, - ACTIONS(938), 1, - anon_sym_STAR_STAR, - ACTIONS(942), 1, - sym_identifier, - ACTIONS(944), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(798), 1, anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(806), 1, anon_sym_lambda, - ACTIONS(958), 1, - anon_sym_await, - ACTIONS(1010), 1, + ACTIONS(808), 1, + anon_sym_yield, + ACTIONS(914), 1, + anon_sym_LPAREN, + ACTIONS(986), 1, anon_sym_RPAREN, - STATE(1152), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1157), 1, + STATE(1036), 1, sym_string, - STATE(1516), 1, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1907), 1, + STATE(1685), 1, sym_expression, - STATE(2271), 1, + STATE(2165), 1, + sym_list_splat, + STATE(2189), 1, sym_parenthesized_list_splat, - STATE(2406), 1, + STATE(2201), 1, + sym_yield, + STATE(2436), 1, sym__named_expression_lhs, + STATE(2492), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2274), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(736), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(952), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + ACTIONS(660), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34787,7 +33418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34804,66 +33435,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6177] = 25, - ACTIONS(690), 1, + [6181] = 25, + ACTIONS(666), 1, sym_identifier, - ACTIONS(698), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(708), 1, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(712), 1, + ACTIONS(688), 1, anon_sym_await, - ACTIONS(714), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(790), 1, + ACTIONS(766), 1, anon_sym_STAR, - ACTIONS(798), 1, + ACTIONS(774), 1, anon_sym_not, - ACTIONS(800), 1, + ACTIONS(776), 1, anon_sym_lambda, - ACTIONS(802), 1, + ACTIONS(778), 1, anon_sym_yield, - ACTIONS(1002), 1, + ACTIONS(978), 1, anon_sym_LPAREN, - ACTIONS(1012), 1, + ACTIONS(988), 1, anon_sym_RBRACK, - STATE(1058), 1, - sym_string, - STATE(1063), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1397), 1, + STATE(1012), 1, + sym_string, + STATE(1381), 1, sym_list_splat_pattern, - STATE(1744), 1, + STATE(1690), 1, sym_expression, - STATE(2526), 1, + STATE(2387), 1, sym__named_expression_lhs, - STATE(2544), 1, + STATE(2394), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2258), 3, + STATE(2082), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(696), 4, + ACTIONS(672), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(710), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1506), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34871,7 +33502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34888,67 +33519,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6286] = 26, - ACTIONS(658), 1, - sym_identifier, + [6290] = 25, ACTIONS(666), 1, + sym_identifier, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(688), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(812), 1, + ACTIONS(766), 1, anon_sym_STAR, - ACTIONS(818), 1, + ACTIONS(774), 1, anon_sym_not, - ACTIONS(820), 1, + ACTIONS(776), 1, anon_sym_lambda, - ACTIONS(822), 1, + ACTIONS(778), 1, anon_sym_yield, - ACTIONS(928), 1, + ACTIONS(978), 1, anon_sym_LPAREN, - ACTIONS(1014), 1, - anon_sym_RPAREN, - STATE(1095), 1, - sym_string, - STATE(1101), 1, + ACTIONS(990), 1, + anon_sym_RBRACK, + STATE(1008), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1012), 1, + sym_string, + STATE(1381), 1, sym_list_splat_pattern, - STATE(1738), 1, + STATE(1684), 1, sym_expression, - STATE(2100), 1, - sym_yield, - STATE(2484), 1, - sym__collection_elements, - STATE(2489), 1, + STATE(2387), 1, sym__named_expression_lhs, + STATE(2489), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - STATE(2136), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(672), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, + STATE(2082), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(672), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(680), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34956,7 +33586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34973,66 +33603,67 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6397] = 25, - ACTIONS(690), 1, + [6399] = 26, + ACTIONS(638), 1, sym_identifier, - ACTIONS(698), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(708), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(712), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(714), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(790), 1, - anon_sym_STAR, ACTIONS(798), 1, + anon_sym_STAR, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(800), 1, + ACTIONS(806), 1, anon_sym_lambda, - ACTIONS(802), 1, + ACTIONS(808), 1, anon_sym_yield, - ACTIONS(1002), 1, + ACTIONS(914), 1, anon_sym_LPAREN, - ACTIONS(1016), 1, - anon_sym_RBRACK, - STATE(1058), 1, - sym_string, - STATE(1063), 1, + ACTIONS(992), 1, + anon_sym_RPAREN, + STATE(1035), 1, sym_primary_expression, - STATE(1397), 1, + STATE(1036), 1, + sym_string, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1753), 1, + STATE(1689), 1, sym_expression, - STATE(2500), 1, - sym__collection_elements, - STATE(2526), 1, + STATE(2179), 1, + sym_yield, + STATE(2436), 1, sym__named_expression_lhs, + STATE(2447), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + STATE(2017), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2258), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(696), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(710), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1506), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35040,7 +33671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35057,66 +33688,67 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6506] = 25, - ACTIONS(724), 1, + [6510] = 26, + ACTIONS(638), 1, + sym_identifier, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(662), 1, + anon_sym_await, + ACTIONS(664), 1, sym_string_start, - ACTIONS(938), 1, - anon_sym_STAR_STAR, - ACTIONS(942), 1, - sym_identifier, - ACTIONS(944), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(798), 1, anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(806), 1, anon_sym_lambda, - ACTIONS(958), 1, - anon_sym_await, - ACTIONS(1018), 1, + ACTIONS(808), 1, + anon_sym_yield, + ACTIONS(914), 1, + anon_sym_LPAREN, + ACTIONS(994), 1, anon_sym_RPAREN, - STATE(1152), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1157), 1, + STATE(1036), 1, sym_string, - STATE(1516), 1, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1907), 1, + STATE(1682), 1, sym_expression, - STATE(2271), 1, - sym_parenthesized_list_splat, - STATE(2406), 1, + STATE(2163), 1, + sym_yield, + STATE(2422), 1, + sym__collection_elements, + STATE(2436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + STATE(2017), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2274), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(736), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(952), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + ACTIONS(660), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35124,7 +33756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35141,67 +33773,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6615] = 26, - ACTIONS(658), 1, - sym_identifier, - ACTIONS(666), 1, + [6621] = 25, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(682), 1, - anon_sym_await, - ACTIONS(684), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(812), 1, + ACTIONS(928), 1, + anon_sym_STAR_STAR, + ACTIONS(956), 1, + sym_identifier, + ACTIONS(958), 1, + anon_sym_LPAREN, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(818), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(820), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(822), 1, - anon_sym_yield, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(1020), 1, + ACTIONS(968), 1, + anon_sym_await, + ACTIONS(996), 1, anon_sym_RPAREN, - STATE(1095), 1, + STATE(1062), 1, sym_string, - STATE(1101), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1752), 1, + STATE(1902), 1, sym_expression, - STATE(2086), 1, - sym_yield, - STATE(2489), 1, + STATE(2280), 1, + sym_parenthesized_list_splat, + STATE(2494), 1, sym__named_expression_lhs, - STATE(2506), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - STATE(2136), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(672), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(680), 4, + STATE(2285), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + ACTIONS(962), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35209,7 +33840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35226,66 +33857,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6726] = 25, - ACTIONS(724), 1, + [6730] = 25, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(938), 1, + ACTIONS(928), 1, anon_sym_STAR_STAR, - ACTIONS(942), 1, + ACTIONS(956), 1, sym_identifier, - ACTIONS(944), 1, + ACTIONS(958), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(958), 1, + ACTIONS(968), 1, anon_sym_await, - ACTIONS(1022), 1, + ACTIONS(998), 1, anon_sym_RPAREN, - STATE(1152), 1, - sym_primary_expression, - STATE(1157), 1, + STATE(1062), 1, sym_string, - STATE(1516), 1, + STATE(1083), 1, + sym_primary_expression, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1907), 1, + STATE(1902), 1, sym_expression, - STATE(2271), 1, + STATE(2280), 1, sym_parenthesized_list_splat, - STATE(2406), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2274), 3, + STATE(2285), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(952), 4, + ACTIONS(962), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35293,7 +33924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35310,66 +33941,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6835] = 25, - ACTIONS(724), 1, + [6839] = 25, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(938), 1, + ACTIONS(928), 1, anon_sym_STAR_STAR, - ACTIONS(942), 1, + ACTIONS(956), 1, sym_identifier, - ACTIONS(944), 1, + ACTIONS(958), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(958), 1, + ACTIONS(968), 1, anon_sym_await, - ACTIONS(1024), 1, + ACTIONS(1000), 1, anon_sym_RPAREN, - STATE(1152), 1, - sym_primary_expression, - STATE(1157), 1, + STATE(1062), 1, sym_string, - STATE(1516), 1, + STATE(1083), 1, + sym_primary_expression, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1907), 1, + STATE(1902), 1, sym_expression, - STATE(2271), 1, + STATE(2280), 1, sym_parenthesized_list_splat, - STATE(2406), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2274), 3, + STATE(2285), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(952), 4, + ACTIONS(962), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35377,7 +34008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35394,68 +34025,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6944] = 27, - ACTIONS(658), 1, - sym_identifier, - ACTIONS(666), 1, + [6948] = 25, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(682), 1, - anon_sym_await, - ACTIONS(684), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(812), 1, + ACTIONS(928), 1, + anon_sym_STAR_STAR, + ACTIONS(956), 1, + sym_identifier, + ACTIONS(958), 1, + anon_sym_LPAREN, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(818), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(820), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(822), 1, - anon_sym_yield, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(1026), 1, + ACTIONS(968), 1, + anon_sym_await, + ACTIONS(1002), 1, anon_sym_RPAREN, - STATE(1095), 1, + STATE(1062), 1, sym_string, - STATE(1101), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1741), 1, + STATE(1902), 1, sym_expression, - STATE(2076), 1, - sym_list_splat, - STATE(2114), 1, + STATE(2280), 1, sym_parenthesized_list_splat, - STATE(2146), 1, - sym_yield, - STATE(2413), 1, - sym__collection_elements, - STATE(2489), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(680), 4, + STATE(2285), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + ACTIONS(962), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35463,7 +34092,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35481,65 +34110,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [7057] = 25, - ACTIONS(724), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(938), 1, + ACTIONS(928), 1, anon_sym_STAR_STAR, - ACTIONS(942), 1, + ACTIONS(956), 1, sym_identifier, - ACTIONS(944), 1, + ACTIONS(958), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(958), 1, + ACTIONS(968), 1, anon_sym_await, - ACTIONS(1028), 1, + ACTIONS(1004), 1, anon_sym_RPAREN, - STATE(1152), 1, - sym_primary_expression, - STATE(1157), 1, + STATE(1062), 1, sym_string, - STATE(1516), 1, + STATE(1083), 1, + sym_primary_expression, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1907), 1, + STATE(1902), 1, sym_expression, - STATE(2271), 1, + STATE(2280), 1, sym_parenthesized_list_splat, - STATE(2406), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2274), 3, + STATE(2285), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(952), 4, + ACTIONS(962), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35547,7 +34176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35564,66 +34193,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7166] = 25, - ACTIONS(724), 1, + [7166] = 27, + ACTIONS(638), 1, + sym_identifier, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(662), 1, + anon_sym_await, + ACTIONS(664), 1, sym_string_start, - ACTIONS(938), 1, - anon_sym_STAR_STAR, - ACTIONS(942), 1, - sym_identifier, - ACTIONS(944), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(798), 1, anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(806), 1, anon_sym_lambda, - ACTIONS(958), 1, - anon_sym_await, - ACTIONS(1030), 1, + ACTIONS(808), 1, + anon_sym_yield, + ACTIONS(914), 1, + anon_sym_LPAREN, + ACTIONS(994), 1, anon_sym_RPAREN, - STATE(1152), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1157), 1, + STATE(1036), 1, sym_string, - STATE(1516), 1, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1907), 1, + STATE(1682), 1, sym_expression, - STATE(2271), 1, + STATE(2163), 1, + sym_yield, + STATE(2165), 1, + sym_list_splat, + STATE(2189), 1, sym_parenthesized_list_splat, - STATE(2406), 1, + STATE(2422), 1, + sym__collection_elements, + STATE(2436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2274), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(736), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(952), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + ACTIONS(660), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35631,7 +34262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35648,66 +34279,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7275] = 25, - ACTIONS(724), 1, + [7279] = 25, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(938), 1, + ACTIONS(928), 1, anon_sym_STAR_STAR, - ACTIONS(942), 1, + ACTIONS(956), 1, sym_identifier, - ACTIONS(944), 1, + ACTIONS(958), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(958), 1, + ACTIONS(968), 1, anon_sym_await, - ACTIONS(1032), 1, + ACTIONS(1006), 1, anon_sym_RPAREN, - STATE(1152), 1, - sym_primary_expression, - STATE(1157), 1, + STATE(1062), 1, sym_string, - STATE(1516), 1, + STATE(1083), 1, + sym_primary_expression, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1907), 1, + STATE(1902), 1, sym_expression, - STATE(2271), 1, + STATE(2280), 1, sym_parenthesized_list_splat, - STATE(2406), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2274), 3, + STATE(2285), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(952), 4, + ACTIONS(962), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35715,7 +34346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35732,66 +34363,67 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7384] = 25, - ACTIONS(724), 1, + [7388] = 26, + ACTIONS(638), 1, + sym_identifier, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(662), 1, + anon_sym_await, + ACTIONS(664), 1, sym_string_start, - ACTIONS(938), 1, - anon_sym_STAR_STAR, - ACTIONS(942), 1, - sym_identifier, - ACTIONS(944), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(798), 1, anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(806), 1, anon_sym_lambda, - ACTIONS(958), 1, - anon_sym_await, - ACTIONS(1034), 1, + ACTIONS(808), 1, + anon_sym_yield, + ACTIONS(914), 1, + anon_sym_LPAREN, + ACTIONS(916), 1, anon_sym_RPAREN, - STATE(1152), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1157), 1, + STATE(1036), 1, sym_string, - STATE(1516), 1, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1907), 1, + STATE(1696), 1, sym_expression, - STATE(2271), 1, - sym_parenthesized_list_splat, - STATE(2406), 1, + STATE(2011), 1, + sym_yield, + STATE(2436), 1, sym__named_expression_lhs, + STATE(2496), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + STATE(2017), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2274), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(736), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(952), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + ACTIONS(660), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35799,7 +34431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35816,66 +34448,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7493] = 25, - ACTIONS(724), 1, + [7499] = 25, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(938), 1, + ACTIONS(928), 1, anon_sym_STAR_STAR, - ACTIONS(942), 1, + ACTIONS(956), 1, sym_identifier, - ACTIONS(944), 1, + ACTIONS(958), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(958), 1, + ACTIONS(968), 1, anon_sym_await, - ACTIONS(1036), 1, + ACTIONS(1008), 1, anon_sym_RPAREN, - STATE(1152), 1, - sym_primary_expression, - STATE(1157), 1, + STATE(1062), 1, sym_string, - STATE(1516), 1, + STATE(1083), 1, + sym_primary_expression, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1907), 1, + STATE(1902), 1, sym_expression, - STATE(2271), 1, + STATE(2280), 1, sym_parenthesized_list_splat, - STATE(2406), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2274), 3, + STATE(2285), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(952), 4, + ACTIONS(962), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35883,7 +34515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35900,66 +34532,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7602] = 25, - ACTIONS(724), 1, - anon_sym_LBRACK, - ACTIONS(734), 1, + [7608] = 27, + ACTIONS(638), 1, + sym_identifier, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(662), 1, + anon_sym_await, + ACTIONS(664), 1, sym_string_start, - ACTIONS(938), 1, - anon_sym_STAR_STAR, - ACTIONS(942), 1, - sym_identifier, - ACTIONS(944), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(798), 1, anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(806), 1, anon_sym_lambda, - ACTIONS(958), 1, - anon_sym_await, - ACTIONS(1038), 1, + ACTIONS(808), 1, + anon_sym_yield, + ACTIONS(914), 1, + anon_sym_LPAREN, + ACTIONS(1010), 1, anon_sym_RPAREN, - STATE(1152), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1157), 1, + STATE(1036), 1, sym_string, - STATE(1516), 1, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1907), 1, + STATE(1678), 1, sym_expression, - STATE(2271), 1, + STATE(2028), 1, + sym_list_splat, + STATE(2029), 1, sym_parenthesized_list_splat, - STATE(2406), 1, + STATE(2121), 1, + sym_yield, + STATE(2329), 1, + sym__collection_elements, + STATE(2436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2274), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(736), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(952), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + ACTIONS(660), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35967,7 +34601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35984,68 +34618,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7711] = 27, - ACTIONS(658), 1, - sym_identifier, + [7721] = 25, ACTIONS(666), 1, + sym_identifier, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(688), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(812), 1, + ACTIONS(766), 1, anon_sym_STAR, - ACTIONS(818), 1, + ACTIONS(774), 1, anon_sym_not, - ACTIONS(820), 1, + ACTIONS(776), 1, anon_sym_lambda, - ACTIONS(822), 1, + ACTIONS(778), 1, anon_sym_yield, - ACTIONS(928), 1, + ACTIONS(978), 1, anon_sym_LPAREN, - ACTIONS(1040), 1, - anon_sym_RPAREN, - STATE(1095), 1, - sym_string, - STATE(1101), 1, + ACTIONS(1012), 1, + anon_sym_RBRACK, + STATE(1008), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1012), 1, + sym_string, + STATE(1381), 1, sym_list_splat_pattern, - STATE(1755), 1, + STATE(1674), 1, sym_expression, - STATE(2109), 1, - sym_list_splat, - STATE(2110), 1, - sym_parenthesized_list_splat, - STATE(2224), 1, - sym_yield, - STATE(2439), 1, - sym__collection_elements, - STATE(2489), 1, + STATE(2387), 1, sym__named_expression_lhs, + STATE(2477), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, + STATE(2082), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(672), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(680), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36053,7 +34685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36070,66 +34702,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7824] = 25, - ACTIONS(690), 1, - sym_identifier, - ACTIONS(698), 1, + [7830] = 25, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(708), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(712), 1, - anon_sym_await, - ACTIONS(714), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(790), 1, + ACTIONS(928), 1, + anon_sym_STAR_STAR, + ACTIONS(956), 1, + sym_identifier, + ACTIONS(958), 1, + anon_sym_LPAREN, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(798), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(800), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(802), 1, - anon_sym_yield, - ACTIONS(1002), 1, - anon_sym_LPAREN, - ACTIONS(1042), 1, - anon_sym_RBRACK, - STATE(1058), 1, + ACTIONS(968), 1, + anon_sym_await, + ACTIONS(1014), 1, + anon_sym_RPAREN, + STATE(1062), 1, sym_string, - STATE(1063), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1397), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1743), 1, + STATE(1902), 1, sym_expression, - STATE(2481), 1, - sym__collection_elements, - STATE(2526), 1, + STATE(2280), 1, + sym_parenthesized_list_splat, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2258), 3, + STATE(2285), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(696), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(710), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1506), 7, + ACTIONS(962), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36137,7 +34769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36154,66 +34786,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7933] = 25, - ACTIONS(724), 1, + [7939] = 25, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(938), 1, + ACTIONS(928), 1, anon_sym_STAR_STAR, - ACTIONS(942), 1, + ACTIONS(956), 1, sym_identifier, - ACTIONS(944), 1, + ACTIONS(958), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(958), 1, + ACTIONS(968), 1, anon_sym_await, - ACTIONS(1044), 1, + ACTIONS(1016), 1, anon_sym_RPAREN, - STATE(1152), 1, - sym_primary_expression, - STATE(1157), 1, + STATE(1062), 1, sym_string, - STATE(1516), 1, + STATE(1083), 1, + sym_primary_expression, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1907), 1, + STATE(1902), 1, sym_expression, - STATE(2271), 1, + STATE(2280), 1, sym_parenthesized_list_splat, - STATE(2406), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2274), 3, + STATE(2285), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(952), 4, + ACTIONS(962), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36221,7 +34853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36238,66 +34870,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8042] = 25, - ACTIONS(724), 1, + [8048] = 25, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(938), 1, + ACTIONS(928), 1, anon_sym_STAR_STAR, - ACTIONS(942), 1, + ACTIONS(956), 1, sym_identifier, - ACTIONS(944), 1, + ACTIONS(958), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(958), 1, + ACTIONS(968), 1, anon_sym_await, - ACTIONS(1046), 1, + ACTIONS(1018), 1, anon_sym_RPAREN, - STATE(1152), 1, - sym_primary_expression, - STATE(1157), 1, + STATE(1062), 1, sym_string, - STATE(1516), 1, + STATE(1083), 1, + sym_primary_expression, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1907), 1, + STATE(1902), 1, sym_expression, - STATE(2271), 1, + STATE(2280), 1, sym_parenthesized_list_splat, - STATE(2406), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2274), 3, + STATE(2285), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(952), 4, + ACTIONS(962), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36305,7 +34937,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36322,67 +34954,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8151] = 26, - ACTIONS(658), 1, - sym_identifier, - ACTIONS(666), 1, + [8157] = 25, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(682), 1, - anon_sym_await, - ACTIONS(684), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(812), 1, + ACTIONS(928), 1, + anon_sym_STAR_STAR, + ACTIONS(956), 1, + sym_identifier, + ACTIONS(958), 1, + anon_sym_LPAREN, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(818), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(820), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(822), 1, - anon_sym_yield, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(1048), 1, + ACTIONS(968), 1, + anon_sym_await, + ACTIONS(1020), 1, anon_sym_RPAREN, - STATE(1095), 1, + STATE(1062), 1, sym_string, - STATE(1101), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1745), 1, + STATE(1902), 1, sym_expression, - STATE(2204), 1, - sym_yield, - STATE(2362), 1, - sym__collection_elements, - STATE(2489), 1, + STATE(2280), 1, + sym_parenthesized_list_splat, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - STATE(2136), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(672), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(680), 4, + STATE(2285), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + ACTIONS(962), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36390,7 +35021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36407,67 +35038,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8262] = 26, - ACTIONS(658), 1, - sym_identifier, - ACTIONS(666), 1, + [8266] = 25, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(682), 1, - anon_sym_await, - ACTIONS(684), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(812), 1, + ACTIONS(928), 1, + anon_sym_STAR_STAR, + ACTIONS(956), 1, + sym_identifier, + ACTIONS(958), 1, + anon_sym_LPAREN, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(818), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(820), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(822), 1, - anon_sym_yield, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(1040), 1, + ACTIONS(968), 1, + anon_sym_await, + ACTIONS(1022), 1, anon_sym_RPAREN, - STATE(1095), 1, + STATE(1062), 1, sym_string, - STATE(1101), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1755), 1, + STATE(1902), 1, sym_expression, - STATE(2224), 1, - sym_yield, - STATE(2439), 1, - sym__collection_elements, - STATE(2489), 1, + STATE(2280), 1, + sym_parenthesized_list_splat, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - STATE(2136), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(672), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(680), 4, + STATE(2285), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + ACTIONS(962), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36475,7 +35105,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36492,66 +35122,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8373] = 25, - ACTIONS(690), 1, - sym_identifier, - ACTIONS(698), 1, + [8375] = 25, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(708), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(712), 1, - anon_sym_await, - ACTIONS(714), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(790), 1, + ACTIONS(928), 1, + anon_sym_STAR_STAR, + ACTIONS(956), 1, + sym_identifier, + ACTIONS(958), 1, + anon_sym_LPAREN, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(798), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(800), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(802), 1, - anon_sym_yield, - ACTIONS(1002), 1, - anon_sym_LPAREN, - ACTIONS(1050), 1, - anon_sym_RBRACK, - STATE(1058), 1, + ACTIONS(968), 1, + anon_sym_await, + ACTIONS(1024), 1, + anon_sym_RPAREN, + STATE(1062), 1, sym_string, - STATE(1063), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1397), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1740), 1, + STATE(1902), 1, sym_expression, - STATE(2338), 1, - sym__collection_elements, - STATE(2526), 1, + STATE(2280), 1, + sym_parenthesized_list_splat, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2258), 3, + STATE(2285), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(696), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(710), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1506), 7, + ACTIONS(962), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36559,7 +35189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36576,66 +35206,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8482] = 25, - ACTIONS(724), 1, + [8484] = 25, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(938), 1, + ACTIONS(928), 1, anon_sym_STAR_STAR, - ACTIONS(942), 1, + ACTIONS(956), 1, sym_identifier, - ACTIONS(944), 1, + ACTIONS(958), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(958), 1, + ACTIONS(968), 1, anon_sym_await, - ACTIONS(1052), 1, + ACTIONS(1026), 1, anon_sym_RPAREN, - STATE(1152), 1, - sym_primary_expression, - STATE(1157), 1, + STATE(1062), 1, sym_string, - STATE(1516), 1, + STATE(1083), 1, + sym_primary_expression, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1907), 1, + STATE(1902), 1, sym_expression, - STATE(2271), 1, + STATE(2280), 1, sym_parenthesized_list_splat, - STATE(2406), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2274), 3, + STATE(2285), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(952), 4, + ACTIONS(962), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36643,7 +35273,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36660,68 +35290,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8591] = 27, - ACTIONS(658), 1, - sym_identifier, - ACTIONS(666), 1, + [8593] = 25, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(682), 1, - anon_sym_await, - ACTIONS(684), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(812), 1, + ACTIONS(928), 1, + anon_sym_STAR_STAR, + ACTIONS(956), 1, + sym_identifier, + ACTIONS(958), 1, + anon_sym_LPAREN, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(818), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(820), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(822), 1, - anon_sym_yield, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(1048), 1, + ACTIONS(968), 1, + anon_sym_await, + ACTIONS(1028), 1, anon_sym_RPAREN, - STATE(1095), 1, + STATE(1062), 1, sym_string, - STATE(1101), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1745), 1, + STATE(1902), 1, sym_expression, - STATE(2076), 1, - sym_list_splat, - STATE(2114), 1, + STATE(2280), 1, sym_parenthesized_list_splat, - STATE(2204), 1, - sym_yield, - STATE(2362), 1, - sym__collection_elements, - STATE(2489), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(680), 4, + STATE(2285), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + ACTIONS(962), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36729,7 +35357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36746,68 +35374,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8704] = 27, - ACTIONS(658), 1, + [8702] = 27, + ACTIONS(638), 1, sym_identifier, - ACTIONS(666), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(812), 1, + ACTIONS(798), 1, anon_sym_STAR, - ACTIONS(818), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(820), 1, + ACTIONS(806), 1, anon_sym_lambda, - ACTIONS(822), 1, + ACTIONS(808), 1, anon_sym_yield, - ACTIONS(928), 1, + ACTIONS(914), 1, anon_sym_LPAREN, - ACTIONS(1020), 1, + ACTIONS(992), 1, anon_sym_RPAREN, - STATE(1095), 1, - sym_string, - STATE(1101), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1036), 1, + sym_string, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1752), 1, + STATE(1689), 1, sym_expression, - STATE(2086), 1, - sym_yield, - STATE(2109), 1, + STATE(2028), 1, sym_list_splat, - STATE(2110), 1, + STATE(2029), 1, sym_parenthesized_list_splat, - STATE(2489), 1, + STATE(2179), 1, + sym_yield, + STATE(2436), 1, sym__named_expression_lhs, - STATE(2506), 1, + STATE(2447), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(680), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36815,7 +35443,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36832,66 +35460,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8817] = 25, - ACTIONS(690), 1, - sym_identifier, - ACTIONS(698), 1, + [8815] = 25, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(708), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(712), 1, - anon_sym_await, - ACTIONS(714), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(790), 1, + ACTIONS(928), 1, + anon_sym_STAR_STAR, + ACTIONS(956), 1, + sym_identifier, + ACTIONS(958), 1, + anon_sym_LPAREN, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(798), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(800), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(802), 1, - anon_sym_yield, - ACTIONS(1002), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_RBRACK, - STATE(1058), 1, + ACTIONS(968), 1, + anon_sym_await, + ACTIONS(1030), 1, + anon_sym_RPAREN, + STATE(1062), 1, sym_string, - STATE(1063), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1397), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1747), 1, + STATE(1902), 1, sym_expression, - STATE(2408), 1, - sym__collection_elements, - STATE(2526), 1, + STATE(2280), 1, + sym_parenthesized_list_splat, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2258), 3, + STATE(2285), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(696), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(710), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1506), 7, + ACTIONS(962), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36899,7 +35527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36916,67 +35544,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8926] = 26, - ACTIONS(658), 1, - sym_identifier, - ACTIONS(666), 1, + [8924] = 25, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(682), 1, - anon_sym_await, - ACTIONS(684), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(812), 1, + ACTIONS(928), 1, + anon_sym_STAR_STAR, + ACTIONS(956), 1, + sym_identifier, + ACTIONS(958), 1, + anon_sym_LPAREN, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(818), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(820), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(822), 1, - anon_sym_yield, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(1056), 1, + ACTIONS(968), 1, + anon_sym_await, + ACTIONS(1032), 1, anon_sym_RPAREN, - STATE(1095), 1, + STATE(1062), 1, sym_string, - STATE(1101), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1742), 1, + STATE(1902), 1, sym_expression, - STATE(2259), 1, - sym_yield, - STATE(2427), 1, - sym__collection_elements, - STATE(2489), 1, + STATE(2280), 1, + sym_parenthesized_list_splat, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - STATE(2136), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(672), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(680), 4, + STATE(2285), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + ACTIONS(962), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36984,7 +35611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37001,66 +35628,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9037] = 25, - ACTIONS(724), 1, + [9033] = 25, + ACTIONS(666), 1, + sym_identifier, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(688), 1, + anon_sym_await, + ACTIONS(690), 1, sym_string_start, - ACTIONS(938), 1, - anon_sym_STAR_STAR, - ACTIONS(942), 1, - sym_identifier, - ACTIONS(944), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(766), 1, anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(774), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(776), 1, anon_sym_lambda, - ACTIONS(958), 1, - anon_sym_await, - ACTIONS(1058), 1, - anon_sym_RPAREN, - STATE(1152), 1, + ACTIONS(778), 1, + anon_sym_yield, + ACTIONS(978), 1, + anon_sym_LPAREN, + ACTIONS(1034), 1, + anon_sym_RBRACK, + STATE(1008), 1, sym_primary_expression, - STATE(1157), 1, + STATE(1012), 1, sym_string, - STATE(1516), 1, + STATE(1381), 1, sym_list_splat_pattern, - STATE(1907), 1, + STATE(1677), 1, sym_expression, - STATE(2271), 1, - sym_parenthesized_list_splat, - STATE(2406), 1, + STATE(2373), 1, + sym__collection_elements, + STATE(2387), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2274), 3, + STATE(2082), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(736), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(952), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(672), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + ACTIONS(686), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37068,7 +35695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37085,66 +35712,67 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9146] = 25, - ACTIONS(724), 1, + [9142] = 26, + ACTIONS(638), 1, + sym_identifier, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(662), 1, + anon_sym_await, + ACTIONS(664), 1, sym_string_start, - ACTIONS(938), 1, - anon_sym_STAR_STAR, - ACTIONS(942), 1, - sym_identifier, - ACTIONS(944), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(798), 1, anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(806), 1, anon_sym_lambda, - ACTIONS(958), 1, - anon_sym_await, - ACTIONS(1060), 1, + ACTIONS(808), 1, + anon_sym_yield, + ACTIONS(914), 1, + anon_sym_LPAREN, + ACTIONS(1036), 1, anon_sym_RPAREN, - STATE(1152), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1157), 1, + STATE(1036), 1, sym_string, - STATE(1516), 1, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1907), 1, + STATE(1688), 1, sym_expression, - STATE(2271), 1, - sym_parenthesized_list_splat, - STATE(2406), 1, + STATE(2068), 1, + sym_yield, + STATE(2382), 1, + sym__collection_elements, + STATE(2436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + STATE(2017), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2274), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(736), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(952), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + ACTIONS(660), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37152,7 +35780,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37169,66 +35797,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9255] = 25, - ACTIONS(724), 1, + [9253] = 25, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(938), 1, + ACTIONS(928), 1, anon_sym_STAR_STAR, - ACTIONS(942), 1, + ACTIONS(956), 1, sym_identifier, - ACTIONS(944), 1, + ACTIONS(958), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(958), 1, + ACTIONS(968), 1, anon_sym_await, - ACTIONS(1062), 1, + ACTIONS(1038), 1, anon_sym_RPAREN, - STATE(1152), 1, - sym_primary_expression, - STATE(1157), 1, + STATE(1062), 1, sym_string, - STATE(1516), 1, + STATE(1083), 1, + sym_primary_expression, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1907), 1, + STATE(1902), 1, sym_expression, - STATE(2271), 1, + STATE(2280), 1, sym_parenthesized_list_splat, - STATE(2406), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2274), 3, + STATE(2285), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(952), 4, + ACTIONS(962), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37236,7 +35864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37253,66 +35881,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9364] = 25, - ACTIONS(724), 1, + [9362] = 25, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(938), 1, + ACTIONS(928), 1, anon_sym_STAR_STAR, - ACTIONS(942), 1, + ACTIONS(956), 1, sym_identifier, - ACTIONS(944), 1, + ACTIONS(958), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(958), 1, + ACTIONS(968), 1, anon_sym_await, - ACTIONS(1064), 1, + ACTIONS(1040), 1, anon_sym_RPAREN, - STATE(1152), 1, - sym_primary_expression, - STATE(1157), 1, + STATE(1062), 1, sym_string, - STATE(1516), 1, + STATE(1083), 1, + sym_primary_expression, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1907), 1, + STATE(1902), 1, sym_expression, - STATE(2271), 1, + STATE(2280), 1, sym_parenthesized_list_splat, - STATE(2406), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2274), 3, + STATE(2285), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(952), 4, + ACTIONS(962), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37320,7 +35948,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37337,66 +35965,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9473] = 25, - ACTIONS(724), 1, + [9471] = 25, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(938), 1, + ACTIONS(928), 1, anon_sym_STAR_STAR, - ACTIONS(942), 1, + ACTIONS(956), 1, sym_identifier, - ACTIONS(944), 1, + ACTIONS(958), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(958), 1, + ACTIONS(968), 1, anon_sym_await, - ACTIONS(1066), 1, + ACTIONS(1042), 1, anon_sym_RPAREN, - STATE(1152), 1, - sym_primary_expression, - STATE(1157), 1, + STATE(1062), 1, sym_string, - STATE(1516), 1, + STATE(1083), 1, + sym_primary_expression, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1907), 1, + STATE(1902), 1, sym_expression, - STATE(2271), 1, + STATE(2280), 1, sym_parenthesized_list_splat, - STATE(2406), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2274), 3, + STATE(2285), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(952), 4, + ACTIONS(962), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37404,7 +36032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37421,66 +36049,67 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9582] = 25, - ACTIONS(724), 1, + [9580] = 26, + ACTIONS(638), 1, + sym_identifier, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(662), 1, + anon_sym_await, + ACTIONS(664), 1, sym_string_start, - ACTIONS(938), 1, - anon_sym_STAR_STAR, - ACTIONS(942), 1, - sym_identifier, - ACTIONS(944), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(798), 1, anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(806), 1, anon_sym_lambda, - ACTIONS(958), 1, - anon_sym_await, - ACTIONS(1068), 1, + ACTIONS(808), 1, + anon_sym_yield, + ACTIONS(914), 1, + anon_sym_LPAREN, + ACTIONS(1010), 1, anon_sym_RPAREN, - STATE(1152), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1157), 1, + STATE(1036), 1, sym_string, - STATE(1516), 1, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1907), 1, + STATE(1678), 1, sym_expression, - STATE(2271), 1, - sym_parenthesized_list_splat, - STATE(2406), 1, + STATE(2121), 1, + sym_yield, + STATE(2329), 1, + sym__collection_elements, + STATE(2436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + STATE(2017), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2274), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(736), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(952), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + ACTIONS(660), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37488,7 +36117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37506,65 +36135,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [9691] = 25, - ACTIONS(724), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(938), 1, + ACTIONS(928), 1, anon_sym_STAR_STAR, - ACTIONS(942), 1, + ACTIONS(956), 1, sym_identifier, - ACTIONS(944), 1, + ACTIONS(958), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(958), 1, + ACTIONS(968), 1, anon_sym_await, - ACTIONS(1070), 1, + ACTIONS(1044), 1, anon_sym_RPAREN, - STATE(1152), 1, - sym_primary_expression, - STATE(1157), 1, + STATE(1062), 1, sym_string, - STATE(1516), 1, + STATE(1083), 1, + sym_primary_expression, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1907), 1, + STATE(1902), 1, sym_expression, - STATE(2271), 1, + STATE(2280), 1, sym_parenthesized_list_splat, - STATE(2406), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2274), 3, + STATE(2285), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(952), 4, + ACTIONS(962), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37572,7 +36201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37590,65 +36219,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [9800] = 25, - ACTIONS(724), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(938), 1, + ACTIONS(928), 1, anon_sym_STAR_STAR, - ACTIONS(942), 1, + ACTIONS(956), 1, sym_identifier, - ACTIONS(944), 1, + ACTIONS(958), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(958), 1, + ACTIONS(968), 1, anon_sym_await, - ACTIONS(1072), 1, + ACTIONS(1046), 1, anon_sym_RPAREN, - STATE(1152), 1, - sym_primary_expression, - STATE(1157), 1, + STATE(1062), 1, sym_string, - STATE(1516), 1, + STATE(1083), 1, + sym_primary_expression, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1907), 1, + STATE(1902), 1, sym_expression, - STATE(2271), 1, + STATE(2280), 1, sym_parenthesized_list_splat, - STATE(2406), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2274), 3, + STATE(2285), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(952), 4, + ACTIONS(962), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37656,7 +36285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37674,65 +36303,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [9909] = 25, - ACTIONS(724), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(938), 1, + ACTIONS(928), 1, anon_sym_STAR_STAR, - ACTIONS(942), 1, + ACTIONS(956), 1, sym_identifier, - ACTIONS(944), 1, + ACTIONS(958), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(958), 1, + ACTIONS(968), 1, anon_sym_await, - ACTIONS(1074), 1, + ACTIONS(1048), 1, anon_sym_RPAREN, - STATE(1152), 1, - sym_primary_expression, - STATE(1157), 1, + STATE(1062), 1, sym_string, - STATE(1516), 1, + STATE(1083), 1, + sym_primary_expression, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1907), 1, + STATE(1902), 1, sym_expression, - STATE(2271), 1, + STATE(2280), 1, sym_parenthesized_list_splat, - STATE(2406), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2274), 3, + STATE(2285), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(952), 4, + ACTIONS(962), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37740,7 +36369,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37757,66 +36386,67 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10018] = 25, - ACTIONS(724), 1, + [10018] = 26, + ACTIONS(638), 1, + sym_identifier, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(662), 1, + anon_sym_await, + ACTIONS(664), 1, sym_string_start, - ACTIONS(938), 1, - anon_sym_STAR_STAR, - ACTIONS(942), 1, - sym_identifier, - ACTIONS(944), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(798), 1, anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(806), 1, anon_sym_lambda, - ACTIONS(958), 1, - anon_sym_await, - ACTIONS(1076), 1, + ACTIONS(808), 1, + anon_sym_yield, + ACTIONS(914), 1, + anon_sym_LPAREN, + ACTIONS(986), 1, anon_sym_RPAREN, - STATE(1152), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1157), 1, + STATE(1036), 1, sym_string, - STATE(1516), 1, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1907), 1, + STATE(1685), 1, sym_expression, - STATE(2271), 1, - sym_parenthesized_list_splat, - STATE(2406), 1, + STATE(2201), 1, + sym_yield, + STATE(2436), 1, sym__named_expression_lhs, + STATE(2492), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + STATE(2017), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2274), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(736), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(952), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + ACTIONS(660), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37824,7 +36454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37841,67 +36471,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10127] = 26, - ACTIONS(658), 1, - sym_identifier, - ACTIONS(666), 1, + [10129] = 25, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(682), 1, - anon_sym_await, - ACTIONS(684), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(812), 1, + ACTIONS(928), 1, + anon_sym_STAR_STAR, + ACTIONS(956), 1, + sym_identifier, + ACTIONS(958), 1, + anon_sym_LPAREN, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(818), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(820), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(822), 1, - anon_sym_yield, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(1026), 1, + ACTIONS(968), 1, + anon_sym_await, + ACTIONS(1050), 1, anon_sym_RPAREN, - STATE(1095), 1, + STATE(1062), 1, sym_string, - STATE(1101), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1741), 1, + STATE(1902), 1, sym_expression, - STATE(2146), 1, - sym_yield, - STATE(2413), 1, - sym__collection_elements, - STATE(2489), 1, + STATE(2280), 1, + sym_parenthesized_list_splat, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - STATE(2136), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(672), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(680), 4, + STATE(2285), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + ACTIONS(962), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37909,7 +36538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37927,65 +36556,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [10238] = 25, - ACTIONS(690), 1, - sym_identifier, - ACTIONS(698), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(708), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(712), 1, - anon_sym_await, - ACTIONS(714), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(790), 1, + ACTIONS(928), 1, + anon_sym_STAR_STAR, + ACTIONS(956), 1, + sym_identifier, + ACTIONS(958), 1, + anon_sym_LPAREN, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(798), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(800), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(802), 1, - anon_sym_yield, - ACTIONS(1002), 1, - anon_sym_LPAREN, - ACTIONS(1078), 1, - anon_sym_RBRACK, - STATE(1058), 1, + ACTIONS(968), 1, + anon_sym_await, + ACTIONS(1052), 1, + anon_sym_RPAREN, + STATE(1062), 1, sym_string, - STATE(1063), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1397), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1739), 1, + STATE(1902), 1, sym_expression, - STATE(2359), 1, - sym__collection_elements, - STATE(2526), 1, + STATE(2280), 1, + sym_parenthesized_list_splat, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2258), 3, + STATE(2285), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(696), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(710), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1506), 7, + ACTIONS(962), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37993,7 +36622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38010,67 +36639,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10347] = 26, - ACTIONS(658), 1, - sym_identifier, - ACTIONS(666), 1, + [10347] = 25, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(682), 1, - anon_sym_await, - ACTIONS(684), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(812), 1, + ACTIONS(928), 1, + anon_sym_STAR_STAR, + ACTIONS(956), 1, + sym_identifier, + ACTIONS(958), 1, + anon_sym_LPAREN, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(818), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(820), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(822), 1, - anon_sym_yield, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(996), 1, + ACTIONS(968), 1, + anon_sym_await, + ACTIONS(1054), 1, anon_sym_RPAREN, - STATE(1095), 1, + STATE(1062), 1, sym_string, - STATE(1101), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1748), 1, + STATE(1902), 1, sym_expression, - STATE(2125), 1, - sym_yield, - STATE(2397), 1, - sym__collection_elements, - STATE(2489), 1, + STATE(2280), 1, + sym_parenthesized_list_splat, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - STATE(2136), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(672), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(680), 4, + STATE(2285), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + ACTIONS(962), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38078,7 +36706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38095,66 +36723,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10458] = 25, - ACTIONS(690), 1, - sym_identifier, - ACTIONS(698), 1, + [10456] = 25, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(708), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(712), 1, - anon_sym_await, - ACTIONS(714), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(790), 1, + ACTIONS(928), 1, + anon_sym_STAR_STAR, + ACTIONS(956), 1, + sym_identifier, + ACTIONS(958), 1, + anon_sym_LPAREN, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(798), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(800), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(802), 1, - anon_sym_yield, - ACTIONS(1002), 1, - anon_sym_LPAREN, - ACTIONS(1080), 1, - anon_sym_RBRACK, - STATE(1058), 1, + ACTIONS(968), 1, + anon_sym_await, + ACTIONS(1056), 1, + anon_sym_RPAREN, + STATE(1062), 1, sym_string, - STATE(1063), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1397), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1758), 1, + STATE(1902), 1, sym_expression, - STATE(2410), 1, - sym__collection_elements, - STATE(2526), 1, + STATE(2280), 1, + sym_parenthesized_list_splat, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2258), 3, + STATE(2285), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(696), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(710), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1506), 7, + ACTIONS(962), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38162,7 +36790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38179,66 +36807,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10567] = 25, - ACTIONS(724), 1, + [10565] = 27, + ACTIONS(638), 1, + sym_identifier, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(662), 1, + anon_sym_await, + ACTIONS(664), 1, sym_string_start, - ACTIONS(938), 1, - anon_sym_STAR_STAR, - ACTIONS(942), 1, - sym_identifier, - ACTIONS(944), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(798), 1, anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(806), 1, anon_sym_lambda, - ACTIONS(958), 1, - anon_sym_await, - ACTIONS(1082), 1, + ACTIONS(808), 1, + anon_sym_yield, + ACTIONS(914), 1, + anon_sym_LPAREN, + ACTIONS(1036), 1, anon_sym_RPAREN, - STATE(1152), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1157), 1, + STATE(1036), 1, sym_string, - STATE(1516), 1, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1907), 1, + STATE(1688), 1, sym_expression, - STATE(2271), 1, + STATE(2068), 1, + sym_yield, + STATE(2092), 1, sym_parenthesized_list_splat, - STATE(2406), 1, + STATE(2095), 1, + sym_list_splat, + STATE(2382), 1, + sym__collection_elements, + STATE(2436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2274), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(736), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(952), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + ACTIONS(660), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38246,7 +36876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38263,66 +36893,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10676] = 25, - ACTIONS(724), 1, + [10678] = 25, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(938), 1, + ACTIONS(928), 1, anon_sym_STAR_STAR, - ACTIONS(942), 1, + ACTIONS(956), 1, sym_identifier, - ACTIONS(944), 1, + ACTIONS(958), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(958), 1, + ACTIONS(968), 1, anon_sym_await, - ACTIONS(1084), 1, + ACTIONS(1058), 1, anon_sym_RPAREN, - STATE(1152), 1, - sym_primary_expression, - STATE(1157), 1, + STATE(1062), 1, sym_string, - STATE(1516), 1, + STATE(1083), 1, + sym_primary_expression, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1907), 1, + STATE(1902), 1, sym_expression, - STATE(2271), 1, + STATE(2280), 1, sym_parenthesized_list_splat, - STATE(2406), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2274), 3, + STATE(2285), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(952), 4, + ACTIONS(962), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38330,7 +36960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38347,68 +36977,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10785] = 27, - ACTIONS(658), 1, - sym_identifier, - ACTIONS(666), 1, + [10787] = 25, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(682), 1, - anon_sym_await, - ACTIONS(684), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(812), 1, + ACTIONS(928), 1, + anon_sym_STAR_STAR, + ACTIONS(956), 1, + sym_identifier, + ACTIONS(958), 1, + anon_sym_LPAREN, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(818), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(820), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(822), 1, - anon_sym_yield, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(1014), 1, + ACTIONS(968), 1, + anon_sym_await, + ACTIONS(1060), 1, anon_sym_RPAREN, - STATE(1095), 1, + STATE(1062), 1, sym_string, - STATE(1101), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1738), 1, + STATE(1902), 1, sym_expression, - STATE(2100), 1, - sym_yield, - STATE(2130), 1, + STATE(2280), 1, sym_parenthesized_list_splat, - STATE(2131), 1, - sym_list_splat, - STATE(2484), 1, - sym__collection_elements, - STATE(2489), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(680), 4, + STATE(2285), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + ACTIONS(962), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38416,7 +37044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38433,68 +37061,67 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10898] = 27, - ACTIONS(658), 1, + [10896] = 26, + ACTIONS(638), 1, sym_identifier, - ACTIONS(666), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(812), 1, + ACTIONS(798), 1, anon_sym_STAR, - ACTIONS(818), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(820), 1, + ACTIONS(806), 1, anon_sym_lambda, - ACTIONS(822), 1, + ACTIONS(808), 1, anon_sym_yield, - ACTIONS(928), 1, + ACTIONS(914), 1, anon_sym_LPAREN, - ACTIONS(1056), 1, + ACTIONS(1062), 1, anon_sym_RPAREN, - STATE(1095), 1, - sym_string, - STATE(1101), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1036), 1, + sym_string, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1742), 1, + STATE(1680), 1, sym_expression, - STATE(2130), 1, - sym_parenthesized_list_splat, - STATE(2131), 1, - sym_list_splat, - STATE(2259), 1, + STATE(2025), 1, sym_yield, - STATE(2427), 1, - sym__collection_elements, - STATE(2489), 1, + STATE(2436), 1, sym__named_expression_lhs, + STATE(2464), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + STATE(2017), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(680), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38502,7 +37129,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38519,66 +37146,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11011] = 25, - ACTIONS(724), 1, + [11007] = 25, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(938), 1, + ACTIONS(928), 1, anon_sym_STAR_STAR, - ACTIONS(942), 1, + ACTIONS(956), 1, sym_identifier, - ACTIONS(944), 1, + ACTIONS(958), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(958), 1, + ACTIONS(968), 1, anon_sym_await, - ACTIONS(1086), 1, + ACTIONS(1064), 1, anon_sym_RPAREN, - STATE(1152), 1, - sym_primary_expression, - STATE(1157), 1, + STATE(1062), 1, sym_string, - STATE(1516), 1, + STATE(1083), 1, + sym_primary_expression, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1907), 1, + STATE(1902), 1, sym_expression, - STATE(2271), 1, + STATE(2280), 1, sym_parenthesized_list_splat, - STATE(2406), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2274), 3, + STATE(2285), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(952), 4, + ACTIONS(962), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38586,7 +37213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38603,66 +37230,67 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11120] = 25, - ACTIONS(724), 1, + [11116] = 26, + ACTIONS(638), 1, + sym_identifier, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(662), 1, + anon_sym_await, + ACTIONS(664), 1, sym_string_start, - ACTIONS(938), 1, - anon_sym_STAR_STAR, - ACTIONS(942), 1, - sym_identifier, - ACTIONS(944), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(798), 1, anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(806), 1, anon_sym_lambda, - ACTIONS(958), 1, - anon_sym_await, - ACTIONS(1088), 1, + ACTIONS(808), 1, + anon_sym_yield, + ACTIONS(914), 1, + anon_sym_LPAREN, + ACTIONS(1066), 1, anon_sym_RPAREN, - STATE(1152), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1157), 1, + STATE(1036), 1, sym_string, - STATE(1516), 1, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1907), 1, + STATE(1692), 1, sym_expression, - STATE(2271), 1, - sym_parenthesized_list_splat, - STATE(2406), 1, + STATE(2143), 1, + sym_yield, + STATE(2399), 1, + sym__collection_elements, + STATE(2436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + STATE(2017), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2274), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(736), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(952), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + ACTIONS(660), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38670,7 +37298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38687,66 +37315,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11229] = 25, - ACTIONS(724), 1, + [11227] = 25, + ACTIONS(666), 1, + sym_identifier, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(688), 1, + anon_sym_await, + ACTIONS(690), 1, sym_string_start, - ACTIONS(938), 1, - anon_sym_STAR_STAR, - ACTIONS(942), 1, - sym_identifier, - ACTIONS(944), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(766), 1, anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(774), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(776), 1, anon_sym_lambda, - ACTIONS(958), 1, - anon_sym_await, - ACTIONS(1090), 1, - anon_sym_RPAREN, - STATE(1152), 1, + ACTIONS(778), 1, + anon_sym_yield, + ACTIONS(978), 1, + anon_sym_LPAREN, + ACTIONS(1068), 1, + anon_sym_RBRACK, + STATE(1008), 1, sym_primary_expression, - STATE(1157), 1, + STATE(1012), 1, sym_string, - STATE(1516), 1, + STATE(1381), 1, sym_list_splat_pattern, - STATE(1907), 1, + STATE(1683), 1, sym_expression, - STATE(2271), 1, - sym_parenthesized_list_splat, - STATE(2406), 1, + STATE(2387), 1, sym__named_expression_lhs, + STATE(2408), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2274), 3, + STATE(2082), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(736), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(952), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(672), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + ACTIONS(686), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38754,7 +37382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38771,66 +37399,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11338] = 25, - ACTIONS(724), 1, + [11336] = 27, + ACTIONS(638), 1, + sym_identifier, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(662), 1, + anon_sym_await, + ACTIONS(664), 1, sym_string_start, - ACTIONS(938), 1, - anon_sym_STAR_STAR, - ACTIONS(942), 1, - sym_identifier, - ACTIONS(944), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(798), 1, anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(806), 1, anon_sym_lambda, - ACTIONS(958), 1, - anon_sym_await, - ACTIONS(1092), 1, + ACTIONS(808), 1, + anon_sym_yield, + ACTIONS(914), 1, + anon_sym_LPAREN, + ACTIONS(1066), 1, anon_sym_RPAREN, - STATE(1152), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1157), 1, + STATE(1036), 1, sym_string, - STATE(1516), 1, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1907), 1, + STATE(1692), 1, sym_expression, - STATE(2271), 1, + STATE(2092), 1, sym_parenthesized_list_splat, - STATE(2406), 1, + STATE(2095), 1, + sym_list_splat, + STATE(2143), 1, + sym_yield, + STATE(2399), 1, + sym__collection_elements, + STATE(2436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2274), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(736), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(952), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + ACTIONS(660), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38838,7 +37468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38855,67 +37485,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11447] = 26, - ACTIONS(658), 1, - sym_identifier, + [11449] = 25, ACTIONS(666), 1, + sym_identifier, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(688), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(812), 1, + ACTIONS(766), 1, anon_sym_STAR, - ACTIONS(818), 1, + ACTIONS(774), 1, anon_sym_not, - ACTIONS(820), 1, + ACTIONS(776), 1, anon_sym_lambda, - ACTIONS(822), 1, + ACTIONS(778), 1, anon_sym_yield, - ACTIONS(928), 1, + ACTIONS(978), 1, anon_sym_LPAREN, - ACTIONS(1094), 1, - anon_sym_RPAREN, - STATE(1095), 1, - sym_string, - STATE(1101), 1, + ACTIONS(1070), 1, + anon_sym_RBRACK, + STATE(1008), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1012), 1, + sym_string, + STATE(1381), 1, sym_list_splat_pattern, - STATE(1737), 1, + STATE(1695), 1, sym_expression, - STATE(2149), 1, - sym_yield, - STATE(2489), 1, - sym__named_expression_lhs, - STATE(2505), 1, + STATE(2350), 1, sym__collection_elements, + STATE(2387), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - STATE(2136), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(672), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, + STATE(2082), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(672), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(680), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38923,7 +37552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38941,65 +37570,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [11558] = 25, - ACTIONS(724), 1, + ACTIONS(666), 1, + sym_identifier, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(688), 1, + anon_sym_await, + ACTIONS(690), 1, sym_string_start, - ACTIONS(938), 1, - anon_sym_STAR_STAR, - ACTIONS(942), 1, - sym_identifier, - ACTIONS(944), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(766), 1, anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(774), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(776), 1, anon_sym_lambda, - ACTIONS(958), 1, - anon_sym_await, - ACTIONS(1096), 1, - anon_sym_RPAREN, - STATE(1152), 1, + ACTIONS(778), 1, + anon_sym_yield, + ACTIONS(978), 1, + anon_sym_LPAREN, + ACTIONS(1072), 1, + anon_sym_RBRACK, + STATE(1008), 1, sym_primary_expression, - STATE(1157), 1, + STATE(1012), 1, sym_string, - STATE(1516), 1, + STATE(1381), 1, sym_list_splat_pattern, - STATE(1907), 1, + STATE(1686), 1, sym_expression, - STATE(2271), 1, - sym_parenthesized_list_splat, - STATE(2406), 1, + STATE(2387), 1, sym__named_expression_lhs, + STATE(2448), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2274), 3, + STATE(2082), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(736), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(952), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(672), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + ACTIONS(686), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39007,7 +37636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39025,63 +37654,63 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [11667] = 24, - ACTIONS(690), 1, + ACTIONS(579), 1, sym_identifier, - ACTIONS(692), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(708), 1, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(712), 1, + ACTIONS(601), 1, anon_sym_await, - ACTIONS(714), 1, + ACTIONS(603), 1, sym_string_start, - ACTIONS(798), 1, + ACTIONS(758), 1, + anon_sym_yield, + ACTIONS(896), 1, anon_sym_not, - ACTIONS(1098), 1, - anon_sym_STAR, - ACTIONS(1102), 1, - anon_sym_RBRACK, - ACTIONS(1104), 1, + ACTIONS(898), 1, anon_sym_lambda, - STATE(1058), 1, - sym_string, - STATE(1063), 1, + ACTIONS(1074), 1, + anon_sym_LPAREN, + ACTIONS(1076), 1, + anon_sym_STAR, + ACTIONS(1078), 1, + anon_sym_RBRACE, + STATE(983), 1, sym_primary_expression, - STATE(1397), 1, + STATE(984), 1, + sym_string, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1817), 1, + STATE(1889), 1, sym_expression, - STATE(2526), 1, + STATE(2438), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - STATE(2025), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(696), 3, - anon_sym_print, - anon_sym_match, - anon_sym_exec, - ACTIONS(702), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1100), 3, - anon_sym_if, + STATE(2256), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(585), 4, + anon_sym_print, + anon_sym_match, anon_sym_async, - anon_sym_for, - ACTIONS(710), 4, + anon_sym_exec, + ACTIONS(599), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1506), 7, + STATE(1195), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39089,7 +37718,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39107,63 +37736,63 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [11773] = 24, - ACTIONS(658), 1, - sym_identifier, - ACTIONS(660), 1, - anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(682), 1, - anon_sym_await, - ACTIONS(684), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(818), 1, - anon_sym_not, - ACTIONS(1106), 1, - anon_sym_RPAREN, - ACTIONS(1108), 1, + ACTIONS(928), 1, + anon_sym_STAR_STAR, + ACTIONS(956), 1, + sym_identifier, + ACTIONS(958), 1, + anon_sym_LPAREN, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(1112), 1, + ACTIONS(964), 1, + anon_sym_not, + ACTIONS(966), 1, anon_sym_lambda, - STATE(1095), 1, + ACTIONS(968), 1, + anon_sym_await, + STATE(1062), 1, sym_string, - STATE(1101), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1834), 1, + STATE(1902), 1, sym_expression, - STATE(2489), 1, + STATE(2280), 1, + sym_parenthesized_list_splat, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - STATE(1992), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(664), 3, - anon_sym_print, - anon_sym_match, - anon_sym_exec, - ACTIONS(672), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1110), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, - ACTIONS(680), 4, + STATE(2285), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + ACTIONS(962), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39171,7 +37800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39188,64 +37817,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11879] = 24, - ACTIONS(716), 1, + [11879] = 22, + ACTIONS(579), 1, sym_identifier, - ACTIONS(724), 1, + ACTIONS(581), 1, + anon_sym_LPAREN, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(738), 1, + ACTIONS(601), 1, anon_sym_await, - ACTIONS(740), 1, + ACTIONS(603), 1, sym_string_start, - ACTIONS(822), 1, - anon_sym_yield, - ACTIONS(944), 1, - anon_sym_LPAREN, - ACTIONS(954), 1, + ACTIONS(890), 1, + anon_sym_STAR, + ACTIONS(896), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(898), 1, anon_sym_lambda, - ACTIONS(1114), 1, - anon_sym_RPAREN, - ACTIONS(1116), 1, - anon_sym_STAR, - STATE(1152), 1, + STATE(983), 1, sym_primary_expression, - STATE(1157), 1, + STATE(984), 1, sym_string, - STATE(1516), 1, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1927), 1, + STATE(1738), 1, sym_expression, - STATE(2406), 1, + STATE(2438), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2311), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(722), 4, + ACTIONS(585), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 4, + ACTIONS(599), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1606), 7, + ACTIONS(1080), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1195), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39253,7 +37880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39270,64 +37897,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11985] = 24, - ACTIONS(690), 1, + [11981] = 24, + ACTIONS(638), 1, sym_identifier, - ACTIONS(692), 1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(708), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(712), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(714), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(798), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(1098), 1, + ACTIONS(1082), 1, + anon_sym_RPAREN, + ACTIONS(1084), 1, anon_sym_STAR, - ACTIONS(1104), 1, + ACTIONS(1088), 1, anon_sym_lambda, - ACTIONS(1120), 1, - anon_sym_RBRACK, - STATE(1058), 1, - sym_string, - STATE(1063), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1397), 1, + STATE(1036), 1, + sym_string, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1817), 1, + STATE(1747), 1, sym_expression, - STATE(2526), 1, + STATE(2436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - STATE(2025), 2, + STATE(1962), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(696), 3, + ACTIONS(644), 3, anon_sym_print, anon_sym_match, anon_sym_exec, - ACTIONS(702), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1118), 3, + ACTIONS(1086), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(710), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1506), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39335,7 +37962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39352,64 +37979,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12091] = 24, - ACTIONS(742), 1, + [12087] = 24, + ACTIONS(612), 1, sym_identifier, - ACTIONS(750), 1, + ACTIONS(614), 1, + anon_sym_LPAREN, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(634), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(636), 1, sym_string_start, - ACTIONS(802), 1, - anon_sym_yield, - ACTIONS(1114), 1, - anon_sym_RBRACK, - ACTIONS(1122), 1, - anon_sym_LPAREN, - ACTIONS(1124), 1, - anon_sym_STAR, - ACTIONS(1126), 1, + ACTIONS(754), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(1082), 1, + anon_sym_RBRACE, + ACTIONS(1090), 1, + anon_sym_STAR, + ACTIONS(1092), 1, anon_sym_lambda, - STATE(1132), 1, + STATE(975), 1, sym_string, - STATE(1153), 1, + STATE(976), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1962), 1, + STATE(1786), 1, sym_expression, - STATE(2376), 1, + STATE(2333), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + STATE(1948), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(618), 3, + anon_sym_print, + anon_sym_match, + anon_sym_exec, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2321), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(748), 4, - anon_sym_print, - anon_sym_match, + ACTIONS(1086), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - ACTIONS(762), 4, + anon_sym_for, + ACTIONS(632), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1262), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39417,7 +38044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39434,62 +38061,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12197] = 22, - ACTIONS(606), 1, + [12193] = 24, + ACTIONS(692), 1, sym_identifier, - ACTIONS(608), 1, - anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(628), 1, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(630), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(914), 1, - anon_sym_STAR, - ACTIONS(920), 1, + ACTIONS(808), 1, + anon_sym_yield, + ACTIONS(958), 1, + anon_sym_LPAREN, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(922), 1, + ACTIONS(966), 1, anon_sym_lambda, - STATE(1032), 1, + ACTIONS(1078), 1, + anon_sym_RPAREN, + ACTIONS(1094), 1, + anon_sym_STAR, + STATE(1062), 1, sym_string, - STATE(1033), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1788), 1, + STATE(1842), 1, sym_expression, - STATE(2363), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(618), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(612), 4, + STATE(2279), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(698), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(626), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1130), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1343), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39497,7 +38126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1341), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39515,63 +38144,63 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [12299] = 24, - ACTIONS(606), 1, + ACTIONS(612), 1, sym_identifier, ACTIONS(614), 1, + anon_sym_LPAREN, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(628), 1, + ACTIONS(634), 1, anon_sym_await, - ACTIONS(630), 1, + ACTIONS(636), 1, sym_string_start, - ACTIONS(782), 1, - anon_sym_yield, - ACTIONS(920), 1, + ACTIONS(754), 1, anon_sym_not, - ACTIONS(922), 1, + ACTIONS(1090), 1, + anon_sym_STAR, + ACTIONS(1092), 1, anon_sym_lambda, - ACTIONS(1114), 1, + ACTIONS(1098), 1, anon_sym_RBRACE, - ACTIONS(1132), 1, - anon_sym_LPAREN, - ACTIONS(1134), 1, - anon_sym_STAR, - STATE(1032), 1, + STATE(975), 1, sym_string, - STATE(1033), 1, + STATE(976), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1939), 1, + STATE(1786), 1, sym_expression, - STATE(2363), 1, + STATE(2333), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, + STATE(1948), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, ACTIONS(618), 3, + anon_sym_print, + anon_sym_match, + anon_sym_exec, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2283), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(612), 4, - anon_sym_print, - anon_sym_match, + ACTIONS(1096), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - ACTIONS(626), 4, + anon_sym_for, + ACTIONS(632), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1343), 7, + STATE(1262), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39579,7 +38208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1341), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39597,63 +38226,63 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [12405] = 24, - ACTIONS(658), 1, + ACTIONS(612), 1, sym_identifier, - ACTIONS(660), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(634), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(636), 1, sym_string_start, - ACTIONS(818), 1, + ACTIONS(754), 1, anon_sym_not, - ACTIONS(1108), 1, + ACTIONS(1090), 1, anon_sym_STAR, - ACTIONS(1112), 1, + ACTIONS(1092), 1, anon_sym_lambda, - ACTIONS(1120), 1, - anon_sym_RPAREN, - STATE(1095), 1, + ACTIONS(1102), 1, + anon_sym_RBRACE, + STATE(975), 1, sym_string, - STATE(1101), 1, + STATE(976), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1834), 1, + STATE(1786), 1, sym_expression, - STATE(2489), 1, + STATE(2333), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - STATE(1992), 2, + STATE(1948), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(664), 3, + ACTIONS(618), 3, anon_sym_print, anon_sym_match, anon_sym_exec, - ACTIONS(672), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1118), 3, + ACTIONS(1100), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(680), 4, + ACTIONS(632), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + STATE(1262), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39661,7 +38290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39679,63 +38308,63 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [12511] = 24, - ACTIONS(742), 1, + ACTIONS(718), 1, sym_identifier, - ACTIONS(750), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(802), 1, + ACTIONS(778), 1, anon_sym_yield, - ACTIONS(1122), 1, + ACTIONS(1104), 1, anon_sym_LPAREN, - ACTIONS(1124), 1, + ACTIONS(1106), 1, anon_sym_STAR, - ACTIONS(1126), 1, + ACTIONS(1108), 1, + anon_sym_RBRACK, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1136), 1, - anon_sym_RBRACK, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1962), 1, + STATE(1866), 1, sym_expression, - STATE(2376), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2321), 3, + STATE(2242), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(748), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39743,7 +38372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39761,63 +38390,63 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [12617] = 24, - ACTIONS(606), 1, + ACTIONS(666), 1, sym_identifier, - ACTIONS(614), 1, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(628), 1, + ACTIONS(688), 1, anon_sym_await, - ACTIONS(630), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(782), 1, - anon_sym_yield, - ACTIONS(920), 1, + ACTIONS(774), 1, anon_sym_not, - ACTIONS(922), 1, - anon_sym_lambda, - ACTIONS(1132), 1, - anon_sym_LPAREN, - ACTIONS(1134), 1, + ACTIONS(1098), 1, + anon_sym_RBRACK, + ACTIONS(1114), 1, anon_sym_STAR, - ACTIONS(1136), 1, - anon_sym_RBRACE, - STATE(1032), 1, - sym_string, - STATE(1033), 1, + ACTIONS(1116), 1, + anon_sym_lambda, + STATE(1008), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1012), 1, + sym_string, + STATE(1381), 1, sym_list_splat_pattern, - STATE(1939), 1, + STATE(1781), 1, sym_expression, - STATE(2363), 1, + STATE(2387), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - ACTIONS(618), 3, + STATE(1920), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(672), 3, + anon_sym_print, + anon_sym_match, + anon_sym_exec, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2283), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(612), 4, - anon_sym_print, - anon_sym_match, + ACTIONS(1096), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - ACTIONS(626), 4, + anon_sym_for, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1343), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39825,7 +38454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1341), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39843,63 +38472,63 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [12723] = 24, - ACTIONS(632), 1, + ACTIONS(638), 1, sym_identifier, - ACTIONS(634), 1, - anon_sym_LPAREN, ACTIONS(640), 1, + anon_sym_LPAREN, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(650), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(656), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(778), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(1102), 1, - anon_sym_RBRACE, - ACTIONS(1138), 1, + ACTIONS(1084), 1, anon_sym_STAR, - ACTIONS(1140), 1, + ACTIONS(1088), 1, anon_sym_lambda, - STATE(1037), 1, - sym_string, - STATE(1038), 1, + ACTIONS(1118), 1, + anon_sym_RPAREN, + STATE(1035), 1, sym_primary_expression, - STATE(1338), 1, + STATE(1036), 1, + sym_string, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1810), 1, + STATE(1747), 1, sym_expression, - STATE(2420), 1, + STATE(2436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - STATE(2017), 2, + STATE(1962), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(638), 3, + ACTIONS(644), 3, anon_sym_print, anon_sym_match, anon_sym_exec, - ACTIONS(644), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1100), 3, + ACTIONS(1120), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(652), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1278), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39907,7 +38536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1277), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39925,63 +38554,63 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [12829] = 24, - ACTIONS(716), 1, + ACTIONS(638), 1, sym_identifier, - ACTIONS(724), 1, + ACTIONS(640), 1, + anon_sym_LPAREN, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(738), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(740), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(822), 1, - anon_sym_yield, - ACTIONS(944), 1, - anon_sym_LPAREN, - ACTIONS(954), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(956), 1, - anon_sym_lambda, - ACTIONS(1116), 1, + ACTIONS(1084), 1, anon_sym_STAR, - ACTIONS(1136), 1, + ACTIONS(1088), 1, + anon_sym_lambda, + ACTIONS(1098), 1, anon_sym_RPAREN, - STATE(1152), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1157), 1, + STATE(1036), 1, sym_string, - STATE(1516), 1, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1927), 1, + STATE(1747), 1, sym_expression, - STATE(2406), 1, + STATE(2436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + STATE(1962), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(644), 3, + anon_sym_print, + anon_sym_match, + anon_sym_exec, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2311), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(722), 4, - anon_sym_print, - anon_sym_match, + ACTIONS(1096), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - ACTIONS(736), 4, + anon_sym_for, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1606), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39989,7 +38618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40007,63 +38636,63 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [12935] = 24, - ACTIONS(632), 1, + ACTIONS(666), 1, sym_identifier, - ACTIONS(634), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(640), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(650), 1, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(688), 1, anon_sym_await, - ACTIONS(656), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(778), 1, + ACTIONS(774), 1, anon_sym_not, - ACTIONS(1138), 1, + ACTIONS(1082), 1, + anon_sym_RBRACK, + ACTIONS(1114), 1, anon_sym_STAR, - ACTIONS(1140), 1, + ACTIONS(1116), 1, anon_sym_lambda, - ACTIONS(1144), 1, - anon_sym_RBRACE, - STATE(1037), 1, - sym_string, - STATE(1038), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1338), 1, + STATE(1012), 1, + sym_string, + STATE(1381), 1, sym_list_splat_pattern, - STATE(1810), 1, + STATE(1781), 1, sym_expression, - STATE(2420), 1, + STATE(2387), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - STATE(2017), 2, + STATE(1920), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(638), 3, + ACTIONS(672), 3, anon_sym_print, anon_sym_match, anon_sym_exec, - ACTIONS(644), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1142), 3, + ACTIONS(1086), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(652), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1278), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40071,7 +38700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1277), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40089,63 +38718,63 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [13041] = 24, - ACTIONS(632), 1, + ACTIONS(666), 1, sym_identifier, - ACTIONS(634), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(640), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(650), 1, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(688), 1, anon_sym_await, - ACTIONS(656), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(778), 1, + ACTIONS(774), 1, anon_sym_not, - ACTIONS(1106), 1, - anon_sym_RBRACE, - ACTIONS(1138), 1, + ACTIONS(1114), 1, anon_sym_STAR, - ACTIONS(1140), 1, + ACTIONS(1116), 1, anon_sym_lambda, - STATE(1037), 1, - sym_string, - STATE(1038), 1, + ACTIONS(1118), 1, + anon_sym_RBRACK, + STATE(1008), 1, sym_primary_expression, - STATE(1338), 1, + STATE(1012), 1, + sym_string, + STATE(1381), 1, sym_list_splat_pattern, - STATE(1810), 1, + STATE(1781), 1, sym_expression, - STATE(2420), 1, + STATE(2387), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - STATE(2017), 2, + STATE(1920), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(638), 3, + ACTIONS(672), 3, anon_sym_print, anon_sym_match, anon_sym_exec, - ACTIONS(644), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1110), 3, + ACTIONS(1120), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(652), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1278), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40153,7 +38782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1277), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40170,64 +38799,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13147] = 24, - ACTIONS(632), 1, + [13147] = 22, + ACTIONS(579), 1, sym_identifier, - ACTIONS(634), 1, + ACTIONS(581), 1, anon_sym_LPAREN, - ACTIONS(640), 1, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(650), 1, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(601), 1, anon_sym_await, - ACTIONS(656), 1, + ACTIONS(603), 1, sym_string_start, - ACTIONS(778), 1, - anon_sym_not, - ACTIONS(1120), 1, - anon_sym_RBRACE, - ACTIONS(1138), 1, + ACTIONS(890), 1, anon_sym_STAR, - ACTIONS(1140), 1, + ACTIONS(896), 1, + anon_sym_not, + ACTIONS(898), 1, anon_sym_lambda, - STATE(1037), 1, - sym_string, - STATE(1038), 1, + STATE(983), 1, sym_primary_expression, - STATE(1338), 1, + STATE(984), 1, + sym_string, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1810), 1, + STATE(1738), 1, sym_expression, - STATE(2420), 1, + STATE(2438), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - STATE(2017), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(638), 3, - anon_sym_print, - anon_sym_match, - anon_sym_exec, - ACTIONS(644), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1118), 3, - anon_sym_if, + ACTIONS(585), 4, + anon_sym_print, + anon_sym_match, anon_sym_async, - anon_sym_for, - ACTIONS(652), 4, + anon_sym_exec, + ACTIONS(599), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1278), 7, + ACTIONS(1122), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1195), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40235,7 +38862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1277), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40252,64 +38879,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13253] = 24, - ACTIONS(690), 1, + [13249] = 24, + ACTIONS(666), 1, sym_identifier, - ACTIONS(692), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(708), 1, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(712), 1, + ACTIONS(688), 1, anon_sym_await, - ACTIONS(714), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(798), 1, + ACTIONS(774), 1, anon_sym_not, - ACTIONS(1098), 1, + ACTIONS(1102), 1, + anon_sym_RBRACK, + ACTIONS(1114), 1, anon_sym_STAR, - ACTIONS(1104), 1, + ACTIONS(1116), 1, anon_sym_lambda, - ACTIONS(1144), 1, - anon_sym_RBRACK, - STATE(1058), 1, - sym_string, - STATE(1063), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1397), 1, + STATE(1012), 1, + sym_string, + STATE(1381), 1, sym_list_splat_pattern, - STATE(1817), 1, + STATE(1781), 1, sym_expression, - STATE(2526), 1, + STATE(2387), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - STATE(2025), 2, + STATE(1920), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(696), 3, + ACTIONS(672), 3, anon_sym_print, anon_sym_match, anon_sym_exec, - ACTIONS(702), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1142), 3, + ACTIONS(1100), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(710), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1506), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40317,7 +38944,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40334,64 +38961,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13359] = 24, - ACTIONS(658), 1, + [13355] = 24, + ACTIONS(638), 1, sym_identifier, - ACTIONS(660), 1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(818), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(1108), 1, + ACTIONS(1084), 1, anon_sym_STAR, - ACTIONS(1112), 1, + ACTIONS(1088), 1, anon_sym_lambda, - ACTIONS(1144), 1, + ACTIONS(1102), 1, anon_sym_RPAREN, - STATE(1095), 1, - sym_string, - STATE(1101), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1036), 1, + sym_string, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1834), 1, + STATE(1747), 1, sym_expression, - STATE(2489), 1, + STATE(2436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - STATE(1992), 2, + STATE(1962), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(664), 3, + ACTIONS(644), 3, anon_sym_print, anon_sym_match, anon_sym_exec, - ACTIONS(672), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1142), 3, + ACTIONS(1100), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(680), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40399,7 +39026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40416,64 +39043,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13465] = 24, - ACTIONS(724), 1, + [13461] = 24, + ACTIONS(692), 1, + sym_identifier, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(714), 1, + anon_sym_await, + ACTIONS(716), 1, sym_string_start, - ACTIONS(938), 1, - anon_sym_STAR_STAR, - ACTIONS(942), 1, - sym_identifier, - ACTIONS(944), 1, + ACTIONS(808), 1, + anon_sym_yield, + ACTIONS(958), 1, anon_sym_LPAREN, - ACTIONS(950), 1, - anon_sym_STAR, - ACTIONS(954), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(958), 1, - anon_sym_await, - STATE(1152), 1, - sym_primary_expression, - STATE(1157), 1, + ACTIONS(1094), 1, + anon_sym_STAR, + ACTIONS(1108), 1, + anon_sym_RPAREN, + STATE(1062), 1, sym_string, - STATE(1516), 1, + STATE(1083), 1, + sym_primary_expression, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1907), 1, + STATE(1842), 1, sym_expression, - STATE(2271), 1, - sym_parenthesized_list_splat, - STATE(2406), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2274), 3, + STATE(2279), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(736), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(952), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(698), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + ACTIONS(712), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40481,7 +39108,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40498,64 +39125,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13571] = 24, - ACTIONS(658), 1, + [13567] = 24, + ACTIONS(718), 1, sym_identifier, - ACTIONS(660), 1, - anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(818), 1, - anon_sym_not, - ACTIONS(1102), 1, - anon_sym_RPAREN, - ACTIONS(1108), 1, + ACTIONS(778), 1, + anon_sym_yield, + ACTIONS(1078), 1, + anon_sym_RBRACK, + ACTIONS(1104), 1, + anon_sym_LPAREN, + ACTIONS(1106), 1, anon_sym_STAR, + ACTIONS(1110), 1, + anon_sym_not, ACTIONS(1112), 1, anon_sym_lambda, - STATE(1095), 1, - sym_string, - STATE(1101), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1834), 1, + STATE(1866), 1, sym_expression, - STATE(2489), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - STATE(1992), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(664), 3, - anon_sym_print, - anon_sym_match, - anon_sym_exec, - ACTIONS(672), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1100), 3, - anon_sym_if, + STATE(2242), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(724), 4, + anon_sym_print, + anon_sym_match, anon_sym_async, - anon_sym_for, - ACTIONS(680), 4, + anon_sym_exec, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40563,7 +39190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40580,62 +39207,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13677] = 22, - ACTIONS(606), 1, + [13673] = 24, + ACTIONS(612), 1, sym_identifier, - ACTIONS(608), 1, - anon_sym_LPAREN, ACTIONS(614), 1, + anon_sym_LPAREN, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(628), 1, + ACTIONS(634), 1, anon_sym_await, - ACTIONS(630), 1, + ACTIONS(636), 1, sym_string_start, - ACTIONS(914), 1, - anon_sym_STAR, - ACTIONS(920), 1, + ACTIONS(754), 1, anon_sym_not, - ACTIONS(922), 1, + ACTIONS(1090), 1, + anon_sym_STAR, + ACTIONS(1092), 1, anon_sym_lambda, - STATE(1032), 1, + ACTIONS(1118), 1, + anon_sym_RBRACE, + STATE(975), 1, sym_string, - STATE(1033), 1, + STATE(976), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1788), 1, + STATE(1786), 1, sym_expression, - STATE(2363), 1, + STATE(2333), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, + STATE(1948), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, ACTIONS(618), 3, + anon_sym_print, + anon_sym_match, + anon_sym_exec, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(612), 4, - anon_sym_print, - anon_sym_match, + ACTIONS(1120), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - ACTIONS(626), 4, + anon_sym_for, + ACTIONS(632), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1146), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1343), 7, + STATE(1262), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40643,7 +39272,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1341), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40661,63 +39290,63 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [13779] = 24, - ACTIONS(690), 1, + ACTIONS(579), 1, sym_identifier, - ACTIONS(692), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(708), 1, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(712), 1, + ACTIONS(601), 1, anon_sym_await, - ACTIONS(714), 1, + ACTIONS(603), 1, sym_string_start, - ACTIONS(798), 1, + ACTIONS(758), 1, + anon_sym_yield, + ACTIONS(896), 1, anon_sym_not, - ACTIONS(1098), 1, - anon_sym_STAR, - ACTIONS(1104), 1, + ACTIONS(898), 1, anon_sym_lambda, - ACTIONS(1106), 1, - anon_sym_RBRACK, - STATE(1058), 1, - sym_string, - STATE(1063), 1, + ACTIONS(1074), 1, + anon_sym_LPAREN, + ACTIONS(1076), 1, + anon_sym_STAR, + ACTIONS(1108), 1, + anon_sym_RBRACE, + STATE(983), 1, sym_primary_expression, - STATE(1397), 1, + STATE(984), 1, + sym_string, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1817), 1, + STATE(1889), 1, sym_expression, - STATE(2526), 1, + STATE(2438), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - STATE(2025), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(696), 3, - anon_sym_print, - anon_sym_match, - anon_sym_exec, - ACTIONS(702), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1110), 3, - anon_sym_if, + STATE(2256), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(585), 4, + anon_sym_print, + anon_sym_match, anon_sym_async, - anon_sym_for, - ACTIONS(710), 4, + anon_sym_exec, + ACTIONS(599), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1506), 7, + STATE(1195), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40725,7 +39354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40743,62 +39372,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [13885] = 24, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_STAR, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(776), 1, + ACTIONS(752), 1, anon_sym_STAR_STAR, - ACTIONS(1148), 1, + ACTIONS(1124), 1, anon_sym_RBRACE, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(2000), 1, + STATE(1953), 1, sym_expression, - STATE(2379), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - STATE(2333), 2, + STATE(2252), 2, sym_dictionary_splat, sym_pair, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40806,7 +39435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40824,62 +39453,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [13990] = 24, - ACTIONS(314), 1, + ACTIONS(718), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(318), 1, - anon_sym_STAR, - ACTIONS(322), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(324), 1, - anon_sym_not, - ACTIONS(330), 1, - anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(776), 1, - anon_sym_STAR_STAR, - ACTIONS(1150), 1, - anon_sym_RBRACE, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + ACTIONS(1110), 1, + anon_sym_not, + ACTIONS(1112), 1, + anon_sym_lambda, + ACTIONS(1126), 1, + anon_sym_from, + ACTIONS(1128), 1, + anon_sym_STAR, + STATE(1082), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(2000), 1, + STATE(1798), 1, sym_expression, - STATE(2379), 1, + STATE(2289), 1, + sym_expression_list, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - STATE(2333), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(328), 3, + ACTIONS(942), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40887,7 +39516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40904,62 +39533,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14095] = 23, - ACTIONS(716), 1, + [14095] = 24, + ACTIONS(306), 1, sym_identifier, - ACTIONS(724), 1, + ACTIONS(308), 1, + anon_sym_LPAREN, + ACTIONS(310), 1, + anon_sym_STAR, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(316), 1, + anon_sym_not, + ACTIONS(322), 1, + anon_sym_lambda, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(738), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(740), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(822), 1, - anon_sym_yield, - ACTIONS(944), 1, - anon_sym_LPAREN, - ACTIONS(954), 1, - anon_sym_not, - ACTIONS(956), 1, - anon_sym_lambda, - ACTIONS(1116), 1, - anon_sym_STAR, - STATE(1152), 1, + ACTIONS(752), 1, + anon_sym_STAR_STAR, + ACTIONS(1130), 1, + anon_sym_RBRACE, + STATE(994), 1, sym_primary_expression, - STATE(1157), 1, + STATE(996), 1, sym_string, - STATE(1516), 1, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1927), 1, + STATE(1953), 1, sym_expression, - STATE(2406), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + STATE(2252), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2311), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(722), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1606), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40967,7 +39597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40984,63 +39614,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14198] = 24, - ACTIONS(314), 1, + [14200] = 24, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_STAR, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(776), 1, + ACTIONS(752), 1, anon_sym_STAR_STAR, - ACTIONS(1152), 1, + ACTIONS(1132), 1, anon_sym_RBRACE, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(2000), 1, + STATE(1953), 1, sym_expression, - STATE(2379), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - STATE(2333), 2, + STATE(2252), 2, sym_dictionary_splat, sym_pair, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41048,7 +39678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41065,63 +39695,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14303] = 24, - ACTIONS(314), 1, + [14305] = 23, + ACTIONS(718), 1, sym_identifier, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(318), 1, - anon_sym_STAR, - ACTIONS(322), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(324), 1, - anon_sym_not, - ACTIONS(330), 1, - anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(776), 1, - anon_sym_STAR_STAR, - ACTIONS(1154), 1, - anon_sym_RBRACE, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + ACTIONS(778), 1, + anon_sym_yield, + ACTIONS(1104), 1, + anon_sym_LPAREN, + ACTIONS(1106), 1, + anon_sym_STAR, + ACTIONS(1110), 1, + anon_sym_not, + ACTIONS(1112), 1, + anon_sym_lambda, + STATE(1082), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(2000), 1, + STATE(1866), 1, sym_expression, - STATE(2379), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - STATE(2333), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(328), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + STATE(2242), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41129,7 +39758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41147,62 +39776,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [14408] = 24, - ACTIONS(63), 1, + ACTIONS(306), 1, + sym_identifier, + ACTIONS(308), 1, + anon_sym_LPAREN, + ACTIONS(310), 1, + anon_sym_STAR, + ACTIONS(314), 1, + anon_sym_LBRACK, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(67), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(266), 1, - sym_identifier, - ACTIONS(300), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(302), 1, - anon_sym_LPAREN, - ACTIONS(306), 1, - anon_sym_LBRACK, - ACTIONS(1158), 1, - anon_sym_from, - ACTIONS(1160), 1, - anon_sym_STAR, - STATE(1034), 1, - sym_string, - STATE(1036), 1, + ACTIONS(332), 1, + sym_string_start, + ACTIONS(752), 1, + anon_sym_STAR_STAR, + ACTIONS(1134), 1, + anon_sym_RBRACE, + STATE(994), 1, sym_primary_expression, - STATE(1172), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1787), 1, + STATE(1953), 1, sym_expression, - STATE(2180), 1, - sym_expression_list, - STATE(2504), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(1156), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + STATE(2252), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(75), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(281), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1329), 7, + ACTIONS(328), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41210,7 +39839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41228,62 +39857,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [14513] = 24, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_STAR, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(776), 1, + ACTIONS(752), 1, anon_sym_STAR_STAR, - ACTIONS(1162), 1, + ACTIONS(1136), 1, anon_sym_RBRACE, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(2000), 1, + STATE(1953), 1, sym_expression, - STATE(2379), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - STATE(2333), 2, + STATE(2252), 2, sym_dictionary_splat, sym_pair, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41291,7 +39920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41308,63 +39937,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14618] = 24, - ACTIONS(314), 1, + [14618] = 23, + ACTIONS(579), 1, sym_identifier, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(318), 1, - anon_sym_STAR, - ACTIONS(322), 1, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(324), 1, - anon_sym_not, - ACTIONS(330), 1, - anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(601), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(603), 1, sym_string_start, - ACTIONS(776), 1, - anon_sym_STAR_STAR, - ACTIONS(1164), 1, - anon_sym_RBRACE, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + ACTIONS(758), 1, + anon_sym_yield, + ACTIONS(896), 1, + anon_sym_not, + ACTIONS(898), 1, + anon_sym_lambda, + ACTIONS(1074), 1, + anon_sym_LPAREN, + ACTIONS(1076), 1, + anon_sym_STAR, + STATE(983), 1, sym_primary_expression, - STATE(1366), 1, + STATE(984), 1, + sym_string, + STATE(1164), 1, sym_list_splat_pattern, - STATE(2000), 1, + STATE(1889), 1, sym_expression, - STATE(2379), 1, + STATE(2438), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - STATE(2333), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(328), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + STATE(2256), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(585), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(599), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1195), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41372,7 +40000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41389,63 +40017,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14723] = 24, - ACTIONS(716), 1, + [14721] = 23, + ACTIONS(692), 1, sym_identifier, - ACTIONS(718), 1, - anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(738), 1, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(740), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(954), 1, + ACTIONS(808), 1, + anon_sym_yield, + ACTIONS(958), 1, + anon_sym_LPAREN, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(1166), 1, - anon_sym_from, - ACTIONS(1168), 1, + ACTIONS(1094), 1, anon_sym_STAR, - STATE(1152), 1, - sym_primary_expression, - STATE(1157), 1, + STATE(1062), 1, sym_string, - STATE(1516), 1, + STATE(1083), 1, + sym_primary_expression, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1879), 1, + STATE(1842), 1, sym_expression, - STATE(2302), 1, - sym_expression_list, - STATE(2406), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(1000), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(728), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(722), 4, + STATE(2279), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(698), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1606), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41453,7 +40080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41470,63 +40097,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14828] = 24, - ACTIONS(742), 1, + [14824] = 24, + ACTIONS(306), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(310), 1, + anon_sym_STAR, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(316), 1, + anon_sym_not, + ACTIONS(322), 1, + anon_sym_lambda, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1126), 1, - anon_sym_not, - ACTIONS(1128), 1, - anon_sym_lambda, - ACTIONS(1170), 1, - anon_sym_from, - ACTIONS(1172), 1, - anon_sym_STAR, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + ACTIONS(752), 1, + anon_sym_STAR_STAR, + ACTIONS(1138), 1, + anon_sym_RBRACE, + STATE(994), 1, sym_primary_expression, - STATE(1598), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1873), 1, + STATE(1953), 1, sym_expression, - STATE(2289), 1, - sym_expression_list, - STATE(2376), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(1000), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(754), 3, + STATE(2252), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41534,7 +40161,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41551,63 +40178,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14933] = 24, - ACTIONS(63), 1, + [14929] = 24, + ACTIONS(306), 1, + sym_identifier, + ACTIONS(308), 1, + anon_sym_LPAREN, + ACTIONS(310), 1, + anon_sym_STAR, + ACTIONS(314), 1, + anon_sym_LBRACK, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(67), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(266), 1, - sym_identifier, - ACTIONS(300), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(302), 1, - anon_sym_LPAREN, - ACTIONS(306), 1, - anon_sym_LBRACK, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1174), 1, - anon_sym_from, - STATE(1034), 1, - sym_string, - STATE(1036), 1, + ACTIONS(332), 1, + sym_string_start, + ACTIONS(752), 1, + anon_sym_STAR_STAR, + ACTIONS(1140), 1, + anon_sym_RBRACE, + STATE(994), 1, sym_primary_expression, - STATE(1172), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1823), 1, + STATE(1953), 1, sym_expression, - STATE(2293), 1, - sym_expression_list, - STATE(2504), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(1000), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + STATE(2252), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(75), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(281), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1329), 7, + ACTIONS(328), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41615,7 +40242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41632,62 +40259,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15038] = 23, - ACTIONS(606), 1, + [15034] = 24, + ACTIONS(306), 1, sym_identifier, - ACTIONS(614), 1, - anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(308), 1, + anon_sym_LPAREN, + ACTIONS(310), 1, + anon_sym_STAR, + ACTIONS(314), 1, + anon_sym_LBRACK, + ACTIONS(316), 1, + anon_sym_not, + ACTIONS(322), 1, + anon_sym_lambda, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(628), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(630), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(782), 1, - anon_sym_yield, - ACTIONS(920), 1, - anon_sym_not, - ACTIONS(922), 1, - anon_sym_lambda, - ACTIONS(1132), 1, - anon_sym_LPAREN, - ACTIONS(1134), 1, - anon_sym_STAR, - STATE(1032), 1, - sym_string, - STATE(1033), 1, + ACTIONS(752), 1, + anon_sym_STAR_STAR, + ACTIONS(1142), 1, + anon_sym_RBRACE, + STATE(994), 1, sym_primary_expression, - STATE(1236), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1939), 1, + STATE(1953), 1, sym_expression, - STATE(2363), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(618), 3, + STATE(2252), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2283), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(612), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(626), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1343), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41695,7 +40323,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1341), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41712,63 +40340,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15141] = 24, - ACTIONS(314), 1, - sym_identifier, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(318), 1, - anon_sym_STAR, - ACTIONS(322), 1, - anon_sym_LBRACK, - ACTIONS(324), 1, + [15139] = 24, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(67), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(338), 1, - anon_sym_await, - ACTIONS(340), 1, + ACTIONS(79), 1, sym_string_start, - ACTIONS(776), 1, - anon_sym_STAR_STAR, - ACTIONS(1176), 1, - anon_sym_RBRACE, - STATE(1071), 1, + ACTIONS(270), 1, + sym_identifier, + ACTIONS(304), 1, + anon_sym_await, + ACTIONS(334), 1, + anon_sym_LPAREN, + ACTIONS(338), 1, + anon_sym_LBRACK, + ACTIONS(1146), 1, + anon_sym_from, + ACTIONS(1148), 1, + anon_sym_STAR, + STATE(977), 1, sym_string, - STATE(1079), 1, + STATE(982), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1295), 1, sym_list_splat_pattern, - STATE(2000), 1, + STATE(1721), 1, sym_expression, - STATE(2379), 1, + STATE(2034), 1, + sym_expression_list, + STATE(2495), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - STATE(2333), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(328), 3, + ACTIONS(1144), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + ACTIONS(285), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41776,7 +40404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41793,63 +40421,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15246] = 24, - ACTIONS(314), 1, + [15244] = 24, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_STAR, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(776), 1, + ACTIONS(752), 1, anon_sym_STAR_STAR, - ACTIONS(1178), 1, + ACTIONS(1150), 1, anon_sym_RBRACE, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(2000), 1, + STATE(1953), 1, sym_expression, - STATE(2379), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - STATE(2333), 2, + STATE(2252), 2, sym_dictionary_splat, sym_pair, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41857,7 +40485,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41874,62 +40502,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15351] = 23, - ACTIONS(742), 1, + [15349] = 24, + ACTIONS(692), 1, sym_identifier, - ACTIONS(750), 1, + ACTIONS(694), 1, + anon_sym_LPAREN, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(802), 1, - anon_sym_yield, - ACTIONS(1122), 1, - anon_sym_LPAREN, - ACTIONS(1124), 1, - anon_sym_STAR, - ACTIONS(1126), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(966), 1, anon_sym_lambda, - STATE(1132), 1, + ACTIONS(1152), 1, + anon_sym_from, + ACTIONS(1154), 1, + anon_sym_STAR, + STATE(1062), 1, sym_string, - STATE(1153), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1962), 1, + STATE(1799), 1, sym_expression, - STATE(2376), 1, + STATE(2271), 1, + sym_expression_list, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(942), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(2321), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(748), 4, + ACTIONS(698), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41937,7 +40566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41955,62 +40584,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [15454] = 24, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_STAR, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(776), 1, + ACTIONS(752), 1, anon_sym_STAR_STAR, - ACTIONS(1180), 1, + ACTIONS(1156), 1, anon_sym_RBRACE, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(2000), 1, + STATE(1953), 1, sym_expression, - STATE(2379), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - STATE(2333), 2, + STATE(2252), 2, sym_dictionary_splat, sym_pair, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42018,7 +40647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42036,62 +40665,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [15559] = 24, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_STAR, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(776), 1, + ACTIONS(752), 1, anon_sym_STAR_STAR, - ACTIONS(1182), 1, + ACTIONS(1158), 1, anon_sym_RBRACE, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(2000), 1, + STATE(1953), 1, sym_expression, - STATE(2379), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - STATE(2333), 2, + STATE(2252), 2, sym_dictionary_splat, sym_pair, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42099,7 +40728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42117,62 +40746,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [15664] = 24, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_STAR, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(776), 1, + ACTIONS(752), 1, anon_sym_STAR_STAR, - ACTIONS(1184), 1, + ACTIONS(1160), 1, anon_sym_RBRACE, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(2000), 1, + STATE(1953), 1, sym_expression, - STATE(2379), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - STATE(2333), 2, + STATE(2252), 2, sym_dictionary_splat, sym_pair, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42180,7 +40809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42198,62 +40827,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [15769] = 24, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_STAR, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(776), 1, + ACTIONS(752), 1, anon_sym_STAR_STAR, - ACTIONS(1186), 1, + ACTIONS(1162), 1, anon_sym_RBRACE, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(2000), 1, + STATE(1953), 1, sym_expression, - STATE(2379), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - STATE(2333), 2, + STATE(2252), 2, sym_dictionary_splat, sym_pair, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42261,7 +40890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42279,62 +40908,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [15874] = 24, - ACTIONS(314), 1, - sym_identifier, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(318), 1, - anon_sym_STAR, - ACTIONS(322), 1, - anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(67), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(338), 1, - anon_sym_await, - ACTIONS(340), 1, + ACTIONS(79), 1, sym_string_start, - ACTIONS(776), 1, - anon_sym_STAR_STAR, - ACTIONS(1188), 1, - anon_sym_RBRACE, - STATE(1071), 1, + ACTIONS(270), 1, + sym_identifier, + ACTIONS(304), 1, + anon_sym_await, + ACTIONS(334), 1, + anon_sym_LPAREN, + ACTIONS(338), 1, + anon_sym_LBRACK, + ACTIONS(1148), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + anon_sym_from, + STATE(977), 1, sym_string, - STATE(1079), 1, + STATE(982), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1295), 1, sym_list_splat_pattern, - STATE(2000), 1, + STATE(1783), 1, sym_expression, - STATE(2379), 1, + STATE(2220), 1, + sym_expression_list, + STATE(2495), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - STATE(2333), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(328), 3, + ACTIONS(942), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + ACTIONS(285), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42342,7 +40971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42360,62 +40989,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [15979] = 24, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_STAR, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(776), 1, + ACTIONS(752), 1, anon_sym_STAR_STAR, - ACTIONS(1190), 1, + ACTIONS(1166), 1, anon_sym_RBRACE, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(2000), 1, + STATE(1953), 1, sym_expression, - STATE(2379), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - STATE(2333), 2, + STATE(2252), 2, sym_dictionary_splat, sym_pair, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42423,7 +41052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42441,62 +41070,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [16084] = 24, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_STAR, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(776), 1, + ACTIONS(752), 1, anon_sym_STAR_STAR, - ACTIONS(1192), 1, + ACTIONS(1168), 1, anon_sym_RBRACE, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(2000), 1, + STATE(1953), 1, sym_expression, - STATE(2379), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - STATE(2333), 2, + STATE(2252), 2, sym_dictionary_splat, sym_pair, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42504,7 +41133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42522,62 +41151,62 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [16189] = 24, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(318), 1, + ACTIONS(310), 1, anon_sym_STAR, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(776), 1, + ACTIONS(752), 1, anon_sym_STAR_STAR, - ACTIONS(1194), 1, + ACTIONS(1170), 1, anon_sym_RBRACE, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(2000), 1, + STATE(1953), 1, sym_expression, - STATE(2379), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - STATE(2333), 2, + STATE(2252), 2, sym_dictionary_splat, sym_pair, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42585,7 +41214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42602,62 +41231,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16294] = 24, - ACTIONS(742), 1, + [16294] = 23, + ACTIONS(63), 1, + anon_sym_not, + ACTIONS(67), 1, + anon_sym_lambda, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(270), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(304), 1, + anon_sym_await, + ACTIONS(334), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(338), 1, anon_sym_LBRACK, - ACTIONS(760), 1, - anon_sym_LBRACE, - ACTIONS(764), 1, - anon_sym_await, - ACTIONS(766), 1, - sym_string_start, - ACTIONS(1126), 1, - anon_sym_not, - ACTIONS(1128), 1, - anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1148), 1, anon_sym_STAR, - ACTIONS(1196), 1, - anon_sym_COLON, - ACTIONS(1198), 1, - anon_sym_RBRACK, - STATE(1132), 1, + STATE(977), 1, sym_string, - STATE(1153), 1, + STATE(982), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1295), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1750), 1, sym_expression, - STATE(2273), 1, - sym_slice, - STATE(2376), 1, + STATE(2257), 1, + sym_expression_list, + STATE(2495), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(1172), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + ACTIONS(285), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42665,7 +41293,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42682,62 +41310,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16398] = 24, - ACTIONS(742), 1, + [16396] = 23, + ACTIONS(63), 1, + anon_sym_not, + ACTIONS(67), 1, + anon_sym_lambda, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(270), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(304), 1, + anon_sym_await, + ACTIONS(334), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(338), 1, anon_sym_LBRACK, - ACTIONS(760), 1, - anon_sym_LBRACE, - ACTIONS(764), 1, - anon_sym_await, - ACTIONS(766), 1, - sym_string_start, - ACTIONS(1126), 1, - anon_sym_not, - ACTIONS(1128), 1, - anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1148), 1, anon_sym_STAR, - ACTIONS(1196), 1, - anon_sym_COLON, - ACTIONS(1200), 1, - anon_sym_RBRACK, - STATE(1132), 1, + ACTIONS(1174), 1, + anon_sym_from, + STATE(977), 1, sym_string, - STATE(1153), 1, + STATE(982), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1295), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1748), 1, sym_expression, - STATE(2273), 1, - sym_slice, - STATE(2376), 1, + STATE(2495), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(1122), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + ACTIONS(285), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42745,7 +41372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42762,62 +41389,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16502] = 24, - ACTIONS(742), 1, + [16498] = 24, + ACTIONS(718), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1196), 1, + ACTIONS(1176), 1, anon_sym_COLON, - ACTIONS(1202), 1, + ACTIONS(1178), 1, anon_sym_RBRACK, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1822), 1, sym_expression, STATE(2273), 1, sym_slice, - STATE(2376), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42825,7 +41452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42842,62 +41469,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16606] = 24, - ACTIONS(314), 1, + [16602] = 24, + ACTIONS(718), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(324), 1, - anon_sym_not, - ACTIONS(330), 1, - anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1110), 1, + anon_sym_not, + ACTIONS(1112), 1, + anon_sym_lambda, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1206), 1, - anon_sym_if, - ACTIONS(1208), 1, + ACTIONS(1176), 1, anon_sym_COLON, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + ACTIONS(1180), 1, + anon_sym_RBRACK, + STATE(1082), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1918), 1, + STATE(1822), 1, sym_expression, - STATE(2379), 1, + STATE(2273), 1, + sym_slice, + STATE(2352), 1, sym__named_expression_lhs, - STATE(2527), 1, - sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42905,7 +41532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42922,62 +41549,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16710] = 24, - ACTIONS(742), 1, + [16706] = 24, + ACTIONS(718), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1196), 1, + ACTIONS(1176), 1, anon_sym_COLON, - ACTIONS(1210), 1, + ACTIONS(1182), 1, anon_sym_RBRACK, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1822), 1, sym_expression, STATE(2273), 1, sym_slice, - STATE(2376), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42985,7 +41612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43002,62 +41629,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16814] = 24, - ACTIONS(742), 1, + [16810] = 23, + ACTIONS(718), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1196), 1, + ACTIONS(1186), 1, anon_sym_COLON, - ACTIONS(1212), 1, - anon_sym_RBRACK, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1825), 1, sym_expression, - STATE(2273), 1, - sym_slice, - STATE(2376), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(1184), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43065,7 +41691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43082,62 +41708,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16918] = 24, - ACTIONS(742), 1, + [16912] = 24, + ACTIONS(718), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1196), 1, + ACTIONS(1176), 1, anon_sym_COLON, - ACTIONS(1214), 1, + ACTIONS(1188), 1, anon_sym_RBRACK, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1822), 1, sym_expression, STATE(2273), 1, sym_slice, - STATE(2376), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43145,7 +41771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43162,62 +41788,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17022] = 24, - ACTIONS(314), 1, + [17016] = 24, + ACTIONS(718), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(324), 1, - anon_sym_not, - ACTIONS(330), 1, - anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1110), 1, + anon_sym_not, + ACTIONS(1112), 1, + anon_sym_lambda, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1206), 1, - anon_sym_if, - ACTIONS(1216), 1, + ACTIONS(1176), 1, anon_sym_COLON, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + ACTIONS(1190), 1, + anon_sym_RBRACK, + STATE(1082), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1918), 1, + STATE(1822), 1, sym_expression, - STATE(2372), 1, - sym_if_clause, - STATE(2379), 1, + STATE(2273), 1, + sym_slice, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43225,7 +41851,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43242,62 +41868,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17126] = 24, - ACTIONS(742), 1, + [17120] = 24, + ACTIONS(718), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1196), 1, + ACTIONS(1176), 1, anon_sym_COLON, - ACTIONS(1218), 1, + ACTIONS(1192), 1, anon_sym_RBRACK, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1822), 1, sym_expression, STATE(2273), 1, sym_slice, - STATE(2376), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43305,7 +41931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43322,62 +41948,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17230] = 24, - ACTIONS(742), 1, + [17224] = 23, + ACTIONS(718), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1128), 1, anon_sym_STAR, ACTIONS(1196), 1, anon_sym_COLON, - ACTIONS(1220), 1, - anon_sym_RBRACK, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1797), 1, sym_expression, - STATE(2273), 1, - sym_slice, - STATE(2376), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(1194), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43385,7 +42010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43402,62 +42027,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17334] = 24, - ACTIONS(742), 1, + [17326] = 23, + ACTIONS(63), 1, + anon_sym_not, + ACTIONS(67), 1, + anon_sym_lambda, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(270), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(304), 1, + anon_sym_await, + ACTIONS(334), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(338), 1, anon_sym_LBRACK, - ACTIONS(760), 1, - anon_sym_LBRACE, - ACTIONS(764), 1, - anon_sym_await, - ACTIONS(766), 1, - sym_string_start, - ACTIONS(1126), 1, - anon_sym_not, - ACTIONS(1128), 1, - anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1148), 1, anon_sym_STAR, - ACTIONS(1196), 1, - anon_sym_COLON, - ACTIONS(1222), 1, - anon_sym_RBRACK, - STATE(1132), 1, + ACTIONS(1198), 1, + anon_sym_from, + STATE(977), 1, sym_string, - STATE(1153), 1, + STATE(982), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1295), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1748), 1, sym_expression, - STATE(2273), 1, - sym_slice, - STATE(2376), 1, + STATE(2495), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(1080), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + ACTIONS(285), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43465,7 +42089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43482,62 +42106,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17438] = 24, - ACTIONS(314), 1, + [17428] = 24, + ACTIONS(718), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(324), 1, - anon_sym_not, - ACTIONS(330), 1, - anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1110), 1, + anon_sym_not, + ACTIONS(1112), 1, + anon_sym_lambda, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1206), 1, - anon_sym_if, - ACTIONS(1224), 1, + ACTIONS(1176), 1, anon_sym_COLON, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + ACTIONS(1200), 1, + anon_sym_RBRACK, + STATE(1082), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1918), 1, + STATE(1822), 1, sym_expression, - STATE(2379), 1, + STATE(2273), 1, + sym_slice, + STATE(2352), 1, sym__named_expression_lhs, - STATE(2457), 1, - sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43545,7 +42169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43562,62 +42186,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17542] = 24, - ACTIONS(742), 1, + [17532] = 24, + ACTIONS(306), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(316), 1, + anon_sym_not, + ACTIONS(322), 1, + anon_sym_lambda, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1126), 1, - anon_sym_not, - ACTIONS(1128), 1, - anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1196), 1, + ACTIONS(1204), 1, + anon_sym_if, + ACTIONS(1206), 1, anon_sym_COLON, - ACTIONS(1226), 1, - anon_sym_RBRACK, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + STATE(994), 1, sym_primary_expression, - STATE(1598), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1860), 1, sym_expression, - STATE(2273), 1, - sym_slice, - STATE(2376), 1, + STATE(2482), 1, + sym_if_clause, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43625,7 +42249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43642,62 +42266,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17646] = 24, - ACTIONS(742), 1, + [17636] = 23, + ACTIONS(306), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(310), 1, + anon_sym_STAR, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(316), 1, + anon_sym_not, + ACTIONS(322), 1, + anon_sym_lambda, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1126), 1, - anon_sym_not, - ACTIONS(1128), 1, - anon_sym_lambda, - ACTIONS(1172), 1, - anon_sym_STAR, - ACTIONS(1196), 1, - anon_sym_COLON, - ACTIONS(1228), 1, - anon_sym_RBRACK, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + ACTIONS(752), 1, + anon_sym_STAR_STAR, + STATE(994), 1, sym_primary_expression, - STATE(1598), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1953), 1, sym_expression, - STATE(2273), 1, - sym_slice, - STATE(2376), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + STATE(2252), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43705,7 +42328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43722,62 +42345,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17750] = 24, - ACTIONS(742), 1, + [17738] = 24, + ACTIONS(718), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1196), 1, + ACTIONS(1176), 1, anon_sym_COLON, - ACTIONS(1230), 1, + ACTIONS(1208), 1, anon_sym_RBRACK, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1822), 1, sym_expression, STATE(2273), 1, sym_slice, - STATE(2376), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43785,7 +42408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43802,62 +42425,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17854] = 24, - ACTIONS(314), 1, + [17842] = 24, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1206), 1, + ACTIONS(1204), 1, anon_sym_if, - ACTIONS(1232), 1, + ACTIONS(1210), 1, anon_sym_COLON, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1918), 1, + STATE(1860), 1, sym_expression, - STATE(2379), 1, - sym__named_expression_lhs, - STATE(2453), 1, + STATE(2463), 1, sym_if_clause, + STATE(2513), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43865,7 +42488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43882,62 +42505,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17958] = 24, - ACTIONS(742), 1, + [17946] = 24, + ACTIONS(718), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1196), 1, + ACTIONS(1176), 1, anon_sym_COLON, - ACTIONS(1234), 1, + ACTIONS(1212), 1, anon_sym_RBRACK, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1822), 1, sym_expression, STATE(2273), 1, sym_slice, - STATE(2376), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43945,7 +42568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43962,62 +42585,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18062] = 24, - ACTIONS(742), 1, + [18050] = 24, + ACTIONS(718), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1196), 1, + ACTIONS(1176), 1, anon_sym_COLON, - ACTIONS(1236), 1, + ACTIONS(1214), 1, anon_sym_RBRACK, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1822), 1, sym_expression, STATE(2273), 1, sym_slice, - STATE(2376), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44025,7 +42648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44042,62 +42665,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18166] = 24, - ACTIONS(742), 1, + [18154] = 24, + ACTIONS(718), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1196), 1, + ACTIONS(1176), 1, anon_sym_COLON, - ACTIONS(1238), 1, + ACTIONS(1216), 1, anon_sym_RBRACK, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1822), 1, sym_expression, STATE(2273), 1, sym_slice, - STATE(2376), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44105,7 +42728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44122,141 +42745,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18270] = 24, - ACTIONS(742), 1, + [18258] = 24, + ACTIONS(718), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1196), 1, + ACTIONS(1176), 1, anon_sym_COLON, - ACTIONS(1240), 1, + ACTIONS(1218), 1, anon_sym_RBRACK, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1822), 1, sym_expression, STATE(2273), 1, sym_slice, - STATE(2376), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1581), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1580), 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, - [18374] = 23, - ACTIONS(63), 1, - anon_sym_not, - ACTIONS(67), 1, - anon_sym_lambda, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(266), 1, - sym_identifier, - ACTIONS(300), 1, - anon_sym_await, - ACTIONS(302), 1, - anon_sym_LPAREN, - ACTIONS(306), 1, - anon_sym_LBRACK, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1242), 1, - anon_sym_from, - STATE(1034), 1, - sym_string, - STATE(1036), 1, - sym_primary_expression, - STATE(1172), 1, - sym_list_splat_pattern, - STATE(1816), 1, - sym_expression, - STATE(2504), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(71), 2, - sym_ellipsis, - sym_float, - ACTIONS(1146), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(75), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(281), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1329), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44264,7 +42808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44281,62 +42825,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18476] = 24, - ACTIONS(742), 1, + [18362] = 24, + ACTIONS(718), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1196), 1, + ACTIONS(1176), 1, anon_sym_COLON, - ACTIONS(1244), 1, + ACTIONS(1220), 1, anon_sym_RBRACK, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1822), 1, sym_expression, STATE(2273), 1, sym_slice, - STATE(2376), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44344,7 +42888,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44361,62 +42905,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18580] = 24, - ACTIONS(742), 1, + [18466] = 24, + ACTIONS(718), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1196), 1, + ACTIONS(1176), 1, anon_sym_COLON, - ACTIONS(1246), 1, + ACTIONS(1222), 1, anon_sym_RBRACK, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1822), 1, sym_expression, STATE(2273), 1, sym_slice, - STATE(2376), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44424,7 +42968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44441,61 +42985,142 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18684] = 23, - ACTIONS(314), 1, + [18570] = 24, + ACTIONS(718), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(318), 1, - anon_sym_STAR, - ACTIONS(322), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(736), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + anon_sym_await, + ACTIONS(742), 1, + sym_string_start, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(1128), 1, + anon_sym_STAR, + ACTIONS(1176), 1, + anon_sym_COLON, + ACTIONS(1224), 1, + anon_sym_RBRACK, + STATE(1082), 1, + sym_primary_expression, + STATE(1099), 1, + sym_string, + STATE(1480), 1, + sym_list_splat_pattern, + STATE(1822), 1, + sym_expression, + STATE(2273), 1, + sym_slice, + STATE(2352), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(734), 2, + sym_ellipsis, + sym_float, + ACTIONS(730), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(724), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(738), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1530), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1531), 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, + [18674] = 24, + ACTIONS(718), 1, + sym_identifier, + ACTIONS(720), 1, + anon_sym_LPAREN, + ACTIONS(726), 1, + anon_sym_LBRACK, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(776), 1, - anon_sym_STAR_STAR, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + ACTIONS(1110), 1, + anon_sym_not, + ACTIONS(1112), 1, + anon_sym_lambda, + ACTIONS(1128), 1, + anon_sym_STAR, + ACTIONS(1176), 1, + anon_sym_COLON, + ACTIONS(1226), 1, + anon_sym_RBRACK, + STATE(1082), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(2000), 1, + STATE(1822), 1, sym_expression, - STATE(2379), 1, + STATE(2273), 1, + sym_slice, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - STATE(2333), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(328), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44503,7 +43128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44520,62 +43145,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18786] = 24, - ACTIONS(742), 1, + [18778] = 24, + ACTIONS(718), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1196), 1, + ACTIONS(1176), 1, anon_sym_COLON, - ACTIONS(1248), 1, + ACTIONS(1228), 1, anon_sym_RBRACK, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1822), 1, sym_expression, STATE(2273), 1, sym_slice, - STATE(2376), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44583,7 +43208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44600,62 +43225,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18890] = 24, - ACTIONS(742), 1, + [18882] = 24, + ACTIONS(718), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1196), 1, + ACTIONS(1176), 1, anon_sym_COLON, - ACTIONS(1250), 1, + ACTIONS(1230), 1, anon_sym_RBRACK, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1822), 1, sym_expression, STATE(2273), 1, sym_slice, - STATE(2376), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44663,7 +43288,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44680,62 +43305,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18994] = 24, - ACTIONS(742), 1, + [18986] = 24, + ACTIONS(718), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1196), 1, + ACTIONS(1176), 1, anon_sym_COLON, - ACTIONS(1252), 1, + ACTIONS(1232), 1, anon_sym_RBRACK, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1822), 1, sym_expression, STATE(2273), 1, sym_slice, - STATE(2376), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44743,7 +43368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44760,62 +43385,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19098] = 24, - ACTIONS(742), 1, + [19090] = 24, + ACTIONS(718), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1196), 1, + ACTIONS(1176), 1, anon_sym_COLON, - ACTIONS(1254), 1, + ACTIONS(1234), 1, anon_sym_RBRACK, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1822), 1, sym_expression, STATE(2273), 1, sym_slice, - STATE(2376), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44823,7 +43448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44840,62 +43465,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19202] = 24, - ACTIONS(742), 1, + [19194] = 24, + ACTIONS(718), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1196), 1, + ACTIONS(1176), 1, anon_sym_COLON, - ACTIONS(1256), 1, + ACTIONS(1236), 1, anon_sym_RBRACK, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1822), 1, sym_expression, STATE(2273), 1, sym_slice, - STATE(2376), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44903,7 +43528,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44920,62 +43545,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19306] = 24, - ACTIONS(742), 1, + [19298] = 24, + ACTIONS(718), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1196), 1, + ACTIONS(1176), 1, anon_sym_COLON, - ACTIONS(1258), 1, + ACTIONS(1238), 1, anon_sym_RBRACK, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1822), 1, sym_expression, STATE(2273), 1, sym_slice, - STATE(2376), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44983,7 +43608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45000,62 +43625,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19410] = 24, - ACTIONS(742), 1, + [19402] = 24, + ACTIONS(718), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1196), 1, + ACTIONS(1176), 1, anon_sym_COLON, - ACTIONS(1260), 1, + ACTIONS(1240), 1, anon_sym_RBRACK, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1822), 1, sym_expression, STATE(2273), 1, sym_slice, - STATE(2376), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45063,7 +43688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45080,62 +43705,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19514] = 24, - ACTIONS(742), 1, + [19506] = 24, + ACTIONS(718), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1196), 1, + ACTIONS(1176), 1, anon_sym_COLON, - ACTIONS(1262), 1, + ACTIONS(1242), 1, anon_sym_RBRACK, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1822), 1, sym_expression, STATE(2273), 1, sym_slice, - STATE(2376), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45143,7 +43768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45160,62 +43785,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19618] = 24, - ACTIONS(742), 1, + [19610] = 24, + ACTIONS(718), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1196), 1, + ACTIONS(1176), 1, anon_sym_COLON, - ACTIONS(1264), 1, + ACTIONS(1244), 1, anon_sym_RBRACK, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1822), 1, sym_expression, STATE(2273), 1, sym_slice, - STATE(2376), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45223,7 +43848,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45240,61 +43865,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19722] = 23, - ACTIONS(63), 1, - anon_sym_not, - ACTIONS(67), 1, - anon_sym_lambda, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(266), 1, + [19714] = 24, + ACTIONS(718), 1, sym_identifier, - ACTIONS(300), 1, - anon_sym_await, - ACTIONS(302), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(1160), 1, + ACTIONS(736), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + anon_sym_await, + ACTIONS(742), 1, + sym_string_start, + ACTIONS(1110), 1, + anon_sym_not, + ACTIONS(1112), 1, + anon_sym_lambda, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1266), 1, - anon_sym_from, - STATE(1034), 1, - sym_string, - STATE(1036), 1, + ACTIONS(1176), 1, + anon_sym_COLON, + ACTIONS(1246), 1, + anon_sym_RBRACK, + STATE(1082), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1816), 1, + STATE(1822), 1, sym_expression, - STATE(2504), 1, + STATE(2273), 1, + sym_slice, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(1130), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(75), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(281), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1329), 7, + ACTIONS(738), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45302,7 +43928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45319,61 +43945,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19824] = 23, - ACTIONS(742), 1, + [19818] = 24, + ACTIONS(718), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1270), 1, + ACTIONS(1176), 1, anon_sym_COLON, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + ACTIONS(1248), 1, + anon_sym_RBRACK, + STATE(1082), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1891), 1, + STATE(1822), 1, sym_expression, - STATE(2376), 1, + STATE(2273), 1, + sym_slice, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(1268), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(754), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45381,7 +44008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45398,61 +44025,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19926] = 23, - ACTIONS(63), 1, - anon_sym_not, - ACTIONS(67), 1, - anon_sym_lambda, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(266), 1, + [19922] = 24, + ACTIONS(718), 1, sym_identifier, - ACTIONS(300), 1, - anon_sym_await, - ACTIONS(302), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(1160), 1, + ACTIONS(736), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + anon_sym_await, + ACTIONS(742), 1, + sym_string_start, + ACTIONS(1110), 1, + anon_sym_not, + ACTIONS(1112), 1, + anon_sym_lambda, + ACTIONS(1128), 1, anon_sym_STAR, - STATE(1034), 1, - sym_string, - STATE(1036), 1, + ACTIONS(1176), 1, + anon_sym_COLON, + ACTIONS(1250), 1, + anon_sym_RBRACK, + STATE(1082), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1832), 1, + STATE(1822), 1, sym_expression, - STATE(2318), 1, - sym_expression_list, - STATE(2504), 1, + STATE(2273), 1, + sym_slice, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(1272), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(75), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(281), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1329), 7, + ACTIONS(738), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45460,7 +44088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45477,62 +44105,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20028] = 24, - ACTIONS(742), 1, + [20026] = 24, + ACTIONS(718), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1196), 1, + ACTIONS(1176), 1, anon_sym_COLON, - ACTIONS(1274), 1, + ACTIONS(1252), 1, anon_sym_RBRACK, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1822), 1, sym_expression, STATE(2273), 1, sym_slice, - STATE(2376), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45540,7 +44168,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45557,61 +44185,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20132] = 23, - ACTIONS(742), 1, + [20130] = 24, + ACTIONS(718), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1278), 1, + ACTIONS(1176), 1, anon_sym_COLON, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + ACTIONS(1254), 1, + anon_sym_RBRACK, + STATE(1082), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1896), 1, + STATE(1822), 1, sym_expression, - STATE(2376), 1, + STATE(2273), 1, + sym_slice, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(1276), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(754), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45619,7 +44248,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45636,62 +44265,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20234] = 24, - ACTIONS(742), 1, + [20234] = 22, + ACTIONS(666), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(688), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(774), 1, anon_sym_not, - ACTIONS(1128), 1, - anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1114), 1, anon_sym_STAR, - ACTIONS(1196), 1, - anon_sym_COLON, - ACTIONS(1280), 1, - anon_sym_RBRACK, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + ACTIONS(1116), 1, + anon_sym_lambda, + STATE(1008), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1012), 1, + sym_string, + STATE(1381), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1781), 1, sym_expression, - STATE(2273), 1, - sym_slice, - STATE(2376), 1, + STATE(2387), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + STATE(1896), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(672), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45699,7 +44325,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45716,62 +44342,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20338] = 24, - ACTIONS(742), 1, + [20333] = 22, + ACTIONS(638), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(1128), 1, - anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1084), 1, anon_sym_STAR, - ACTIONS(1196), 1, - anon_sym_COLON, - ACTIONS(1282), 1, - anon_sym_RBRACK, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + ACTIONS(1088), 1, + anon_sym_lambda, + STATE(1035), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1036), 1, + sym_string, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1747), 1, sym_expression, - STATE(2273), 1, - sym_slice, - STATE(2376), 1, + STATE(2436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + STATE(1962), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45779,7 +44402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45796,7 +44419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20442] = 22, + [20432] = 22, ACTIONS(63), 1, anon_sym_not, ACTIONS(67), 1, @@ -45805,25 +44428,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(79), 1, sym_string_start, - ACTIONS(266), 1, + ACTIONS(270), 1, sym_identifier, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_await, - ACTIONS(302), 1, + ACTIONS(334), 1, anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(338), 1, anon_sym_LBRACK, - ACTIONS(1160), 1, + ACTIONS(1148), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(977), 1, sym_string, - STATE(1036), 1, + STATE(982), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1295), 1, sym_list_splat_pattern, - STATE(1866), 1, + STATE(1812), 1, sym_expression, - STATE(2504), 1, + STATE(2495), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -45831,7 +44454,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(1284), 2, + ACTIONS(1256), 2, sym__newline, anon_sym_SEMI, ACTIONS(65), 3, @@ -45843,12 +44466,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(281), 4, + ACTIONS(285), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1329), 7, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45856,7 +44479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45873,59 +44496,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20541] = 22, - ACTIONS(690), 1, + [20531] = 22, + ACTIONS(63), 1, + anon_sym_not, + ACTIONS(67), 1, + anon_sym_lambda, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(270), 1, sym_identifier, - ACTIONS(692), 1, + ACTIONS(304), 1, + anon_sym_await, + ACTIONS(334), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(338), 1, anon_sym_LBRACK, - ACTIONS(708), 1, - anon_sym_LBRACE, - ACTIONS(712), 1, - anon_sym_await, - ACTIONS(714), 1, - sym_string_start, - ACTIONS(798), 1, - anon_sym_not, - ACTIONS(1098), 1, + ACTIONS(1148), 1, anon_sym_STAR, - ACTIONS(1104), 1, - anon_sym_lambda, - STATE(1058), 1, + STATE(977), 1, sym_string, - STATE(1063), 1, + STATE(982), 1, sym_primary_expression, - STATE(1397), 1, + STATE(1295), 1, sym_list_splat_pattern, - STATE(1801), 1, + STATE(1812), 1, sym_expression, - STATE(2526), 1, + STATE(2495), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - STATE(1969), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(702), 3, + ACTIONS(1258), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(696), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(710), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1506), 7, + ACTIONS(285), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45933,7 +44556,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45950,59 +44573,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20640] = 22, - ACTIONS(690), 1, + [20630] = 23, + ACTIONS(306), 1, sym_identifier, - ACTIONS(692), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(708), 1, + ACTIONS(316), 1, + anon_sym_not, + ACTIONS(322), 1, + anon_sym_lambda, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(712), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(714), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(798), 1, - anon_sym_not, - ACTIONS(1098), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1104), 1, - anon_sym_lambda, - STATE(1058), 1, - sym_string, - STATE(1063), 1, + ACTIONS(1260), 1, + anon_sym_LPAREN, + STATE(994), 1, sym_primary_expression, - STATE(1397), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1804), 1, + STATE(1905), 1, sym_expression, - STATE(2526), 1, + STATE(2088), 1, + sym_with_item, + STATE(2398), 1, + sym_with_clause, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - STATE(1987), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(702), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(696), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(710), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1506), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46010,7 +44634,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46027,60 +44651,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20739] = 23, - ACTIONS(314), 1, + [20731] = 23, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1286), 1, - anon_sym_COLON, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + ACTIONS(1260), 1, + anon_sym_LPAREN, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1938), 1, + STATE(1905), 1, sym_expression, - STATE(2270), 1, + STATE(2088), 1, sym_with_item, - STATE(2379), 1, + STATE(2406), 1, + sym_with_clause, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46088,7 +44712,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46105,60 +44729,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20840] = 23, - ACTIONS(742), 1, + [20832] = 22, + ACTIONS(638), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(1128), 1, - anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1084), 1, anon_sym_STAR, - ACTIONS(1196), 1, - anon_sym_COLON, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + ACTIONS(1088), 1, + anon_sym_lambda, + STATE(1035), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1036), 1, + sym_string, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1745), 1, sym_expression, - STATE(2210), 1, - sym_slice, - STATE(2376), 1, + STATE(2436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + STATE(1966), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46166,7 +44789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46183,59 +44806,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20941] = 22, - ACTIONS(716), 1, - sym_identifier, + [20931] = 23, ACTIONS(718), 1, + sym_identifier, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(738), 1, - anon_sym_await, ACTIONS(740), 1, + anon_sym_await, + ACTIONS(742), 1, sym_string_start, - ACTIONS(954), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1168), 1, + ACTIONS(1128), 1, anon_sym_STAR, - STATE(1152), 1, + ACTIONS(1176), 1, + anon_sym_COLON, + STATE(1082), 1, sym_primary_expression, - STATE(1157), 1, + STATE(1099), 1, sym_string, - STATE(1516), 1, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1963), 1, + STATE(1822), 1, sym_expression, - STATE(2406), 1, + STATE(2273), 1, + sym_slice, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(1146), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(728), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(722), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1606), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46243,7 +44867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46260,59 +44884,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21040] = 22, - ACTIONS(632), 1, + [21032] = 22, + ACTIONS(718), 1, sym_identifier, - ACTIONS(634), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(640), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(650), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(656), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(778), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1138), 1, - anon_sym_STAR, - ACTIONS(1140), 1, + ACTIONS(1112), 1, anon_sym_lambda, - STATE(1037), 1, - sym_string, - STATE(1038), 1, + ACTIONS(1128), 1, + anon_sym_STAR, + STATE(1082), 1, sym_primary_expression, - STATE(1338), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1810), 1, + STATE(1865), 1, sym_expression, - STATE(2420), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - STATE(1930), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(644), 3, + ACTIONS(1262), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(638), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(652), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1278), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46320,7 +44944,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1277), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46337,59 +44961,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21139] = 22, - ACTIONS(63), 1, - anon_sym_not, - ACTIONS(67), 1, - anon_sym_lambda, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(266), 1, + [21131] = 22, + ACTIONS(666), 1, sym_identifier, - ACTIONS(300), 1, - anon_sym_await, - ACTIONS(302), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(1160), 1, + ACTIONS(684), 1, + anon_sym_LBRACE, + ACTIONS(688), 1, + anon_sym_await, + ACTIONS(690), 1, + sym_string_start, + ACTIONS(774), 1, + anon_sym_not, + ACTIONS(1114), 1, anon_sym_STAR, - STATE(1034), 1, - sym_string, - STATE(1036), 1, + ACTIONS(1116), 1, + anon_sym_lambda, + STATE(1008), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1012), 1, + sym_string, + STATE(1381), 1, sym_list_splat_pattern, - STATE(1816), 1, + STATE(1781), 1, sym_expression, - STATE(2504), 1, + STATE(2387), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - ACTIONS(1288), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + STATE(1893), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(75), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(281), 4, + ACTIONS(672), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1329), 7, + ACTIONS(686), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46397,7 +45021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46414,59 +45038,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21238] = 22, - ACTIONS(658), 1, + [21230] = 23, + ACTIONS(718), 1, sym_identifier, - ACTIONS(660), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(818), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1108), 1, - anon_sym_STAR, ACTIONS(1112), 1, anon_sym_lambda, - STATE(1095), 1, - sym_string, - STATE(1101), 1, + ACTIONS(1128), 1, + anon_sym_STAR, + ACTIONS(1176), 1, + anon_sym_COLON, + STATE(1082), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1812), 1, + STATE(1739), 1, sym_expression, - STATE(2489), 1, + STATE(2202), 1, + sym_slice, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - STATE(2002), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(672), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(680), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46474,7 +45099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46491,60 +45116,124 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21337] = 23, - ACTIONS(742), 1, + [21331] = 10, + ACTIONS(279), 1, + anon_sym_COMMA, + ACTIONS(289), 1, + anon_sym_COLON_EQ, + ACTIONS(1264), 1, + anon_sym_for, + ACTIONS(1266), 1, + anon_sym_with, + ACTIONS(1268), 1, + anon_sym_def, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(291), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(302), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(274), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(272), 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [21406] = 22, + ACTIONS(638), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(1128), 1, - anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1084), 1, anon_sym_STAR, - ACTIONS(1196), 1, - anon_sym_COLON, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + ACTIONS(1088), 1, + anon_sym_lambda, + STATE(1035), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1036), 1, + sym_string, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1741), 1, sym_expression, - STATE(2171), 1, - sym_slice, - STATE(2376), 1, + STATE(2436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + STATE(1954), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46552,7 +45241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46569,137 +45258,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21438] = 22, - ACTIONS(63), 1, - anon_sym_not, - ACTIONS(67), 1, - anon_sym_lambda, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(266), 1, - sym_identifier, - ACTIONS(300), 1, - anon_sym_await, - ACTIONS(302), 1, - anon_sym_LPAREN, + [21505] = 23, ACTIONS(306), 1, - anon_sym_LBRACK, - ACTIONS(1160), 1, - anon_sym_STAR, - STATE(1034), 1, - sym_string, - STATE(1036), 1, - sym_primary_expression, - STATE(1172), 1, - sym_list_splat_pattern, - STATE(1816), 1, - sym_expression, - STATE(2504), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(71), 2, - sym_ellipsis, - sym_float, - ACTIONS(1290), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(75), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(281), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1329), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1344), 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, - [21537] = 23, - ACTIONS(742), 1, sym_identifier, - ACTIONS(744), 1, - anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(316), 1, + anon_sym_not, + ACTIONS(322), 1, + anon_sym_lambda, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1126), 1, - anon_sym_not, - ACTIONS(1128), 1, - anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1196), 1, - anon_sym_COLON, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + ACTIONS(1260), 1, + anon_sym_LPAREN, + STATE(994), 1, sym_primary_expression, - STATE(1598), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1840), 1, + STATE(1905), 1, sym_expression, - STATE(2187), 1, - sym_slice, - STATE(2376), 1, + STATE(2088), 1, + sym_with_item, + STATE(2506), 1, + sym_with_clause, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46707,7 +45319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46724,24 +45336,24 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21638] = 10, - ACTIONS(275), 1, + [21606] = 10, + ACTIONS(279), 1, anon_sym_COMMA, - ACTIONS(285), 1, + ACTIONS(289), 1, anon_sym_COLON_EQ, - ACTIONS(1292), 1, + ACTIONS(1270), 1, anon_sym_for, - ACTIONS(1294), 1, + ACTIONS(1272), 1, anon_sym_with, - ACTIONS(1296), 1, + ACTIONS(1274), 1, anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(287), 2, + ACTIONS(291), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(298), 13, + ACTIONS(302), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46755,7 +45367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(270), 15, + ACTIONS(274), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -46771,7 +45383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(268), 17, + ACTIONS(272), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -46789,59 +45401,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [21713] = 22, - ACTIONS(716), 1, + [21681] = 22, + ACTIONS(666), 1, sym_identifier, - ACTIONS(718), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(738), 1, + ACTIONS(688), 1, anon_sym_await, - ACTIONS(740), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(954), 1, + ACTIONS(774), 1, anon_sym_not, - ACTIONS(956), 1, - anon_sym_lambda, - ACTIONS(1168), 1, + ACTIONS(1114), 1, anon_sym_STAR, - STATE(1152), 1, + ACTIONS(1116), 1, + anon_sym_lambda, + STATE(1008), 1, sym_primary_expression, - STATE(1157), 1, + STATE(1012), 1, sym_string, - STATE(1516), 1, + STATE(1381), 1, sym_list_splat_pattern, - STATE(1963), 1, + STATE(1760), 1, sym_expression, - STATE(2406), 1, + STATE(2387), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - ACTIONS(1130), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(728), 3, + STATE(1915), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(722), 4, + ACTIONS(672), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1606), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46849,7 +45461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46866,60 +45478,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21812] = 23, - ACTIONS(716), 1, + [21780] = 22, + ACTIONS(666), 1, sym_identifier, - ACTIONS(718), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(738), 1, + ACTIONS(688), 1, anon_sym_await, - ACTIONS(740), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(954), 1, + ACTIONS(774), 1, anon_sym_not, - ACTIONS(956), 1, - anon_sym_lambda, - ACTIONS(1168), 1, + ACTIONS(1114), 1, anon_sym_STAR, - ACTIONS(1298), 1, - anon_sym_RPAREN, - STATE(1152), 1, + ACTIONS(1116), 1, + anon_sym_lambda, + STATE(1008), 1, sym_primary_expression, - STATE(1157), 1, + STATE(1012), 1, sym_string, - STATE(1516), 1, + STATE(1381), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(1781), 1, sym_expression, - STATE(2275), 1, - sym_with_item, - STATE(2406), 1, + STATE(2387), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + STATE(1920), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(722), 4, + ACTIONS(672), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1606), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46927,7 +45538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46944,59 +45555,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21913] = 22, - ACTIONS(63), 1, - anon_sym_not, - ACTIONS(67), 1, - anon_sym_lambda, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(266), 1, + [21879] = 23, + ACTIONS(718), 1, sym_identifier, - ACTIONS(300), 1, - anon_sym_await, - ACTIONS(302), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(1160), 1, + ACTIONS(736), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + anon_sym_await, + ACTIONS(742), 1, + sym_string_start, + ACTIONS(1110), 1, + anon_sym_not, + ACTIONS(1112), 1, + anon_sym_lambda, + ACTIONS(1128), 1, anon_sym_STAR, - STATE(1034), 1, - sym_string, - STATE(1036), 1, + ACTIONS(1176), 1, + anon_sym_COLON, + STATE(1082), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1866), 1, + STATE(1776), 1, sym_expression, - STATE(2504), 1, + STATE(2127), 1, + sym_slice, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(1300), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(75), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(281), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1329), 7, + ACTIONS(738), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47004,7 +45616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47021,59 +45633,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22012] = 22, - ACTIONS(63), 1, - anon_sym_not, - ACTIONS(67), 1, - anon_sym_lambda, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(266), 1, + [21980] = 22, + ACTIONS(612), 1, sym_identifier, - ACTIONS(300), 1, - anon_sym_await, - ACTIONS(302), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(1160), 1, + ACTIONS(630), 1, + anon_sym_LBRACE, + ACTIONS(634), 1, + anon_sym_await, + ACTIONS(636), 1, + sym_string_start, + ACTIONS(754), 1, + anon_sym_not, + ACTIONS(1090), 1, anon_sym_STAR, - STATE(1034), 1, + ACTIONS(1092), 1, + anon_sym_lambda, + STATE(975), 1, sym_string, - STATE(1036), 1, + STATE(976), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1866), 1, + STATE(1786), 1, sym_expression, - STATE(2504), 1, + STATE(2333), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(1302), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + STATE(1886), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(75), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(281), 4, + ACTIONS(618), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1329), 7, + ACTIONS(632), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1262), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47081,7 +45693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47098,60 +45710,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22111] = 23, - ACTIONS(742), 1, + [22079] = 22, + ACTIONS(638), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(1128), 1, - anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1084), 1, anon_sym_STAR, - ACTIONS(1196), 1, - anon_sym_COLON, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + ACTIONS(1088), 1, + anon_sym_lambda, + STATE(1035), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1036), 1, + sym_string, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1821), 1, + STATE(1747), 1, sym_expression, - STATE(2265), 1, - sym_slice, - STATE(2376), 1, + STATE(2436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + STATE(1883), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47159,7 +45770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47176,60 +45787,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22212] = 23, - ACTIONS(716), 1, + [22178] = 22, + ACTIONS(63), 1, + anon_sym_not, + ACTIONS(67), 1, + anon_sym_lambda, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(270), 1, sym_identifier, - ACTIONS(718), 1, + ACTIONS(304), 1, + anon_sym_await, + ACTIONS(334), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(338), 1, anon_sym_LBRACK, - ACTIONS(734), 1, - anon_sym_LBRACE, - ACTIONS(738), 1, - anon_sym_await, - ACTIONS(740), 1, - sym_string_start, - ACTIONS(954), 1, - anon_sym_not, - ACTIONS(956), 1, - anon_sym_lambda, - ACTIONS(1168), 1, + ACTIONS(1148), 1, anon_sym_STAR, - ACTIONS(1304), 1, - anon_sym_RPAREN, - STATE(1152), 1, - sym_primary_expression, - STATE(1157), 1, + STATE(977), 1, sym_string, - STATE(1516), 1, + STATE(982), 1, + sym_primary_expression, + STATE(1295), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(1748), 1, sym_expression, - STATE(2275), 1, - sym_with_item, - STATE(2406), 1, + STATE(2495), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(1276), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(722), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(736), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1606), 7, + ACTIONS(285), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47237,7 +45847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47254,60 +45864,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22313] = 23, - ACTIONS(314), 1, - sym_identifier, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_LBRACK, - ACTIONS(324), 1, + [22277] = 22, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(67), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(338), 1, - anon_sym_await, - ACTIONS(340), 1, + ACTIONS(79), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(270), 1, + sym_identifier, + ACTIONS(304), 1, + anon_sym_await, + ACTIONS(334), 1, + anon_sym_LPAREN, + ACTIONS(338), 1, + anon_sym_LBRACK, + ACTIONS(1148), 1, anon_sym_STAR, - ACTIONS(1306), 1, - anon_sym_COLON, - STATE(1071), 1, + STATE(977), 1, sym_string, - STATE(1079), 1, + STATE(982), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1295), 1, sym_list_splat_pattern, - STATE(1938), 1, + STATE(1748), 1, sym_expression, - STATE(2270), 1, - sym_with_item, - STATE(2379), 1, + STATE(2495), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(1278), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + ACTIONS(285), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47315,7 +45924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47332,59 +45941,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22414] = 22, - ACTIONS(658), 1, + [22376] = 23, + ACTIONS(718), 1, sym_identifier, - ACTIONS(660), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(818), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1108), 1, - anon_sym_STAR, ACTIONS(1112), 1, anon_sym_lambda, - STATE(1095), 1, - sym_string, - STATE(1101), 1, + ACTIONS(1128), 1, + anon_sym_STAR, + ACTIONS(1176), 1, + anon_sym_COLON, + STATE(1082), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1834), 1, + STATE(1759), 1, sym_expression, - STATE(2489), 1, + STATE(2180), 1, + sym_slice, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - STATE(1992), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(672), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(680), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47392,7 +46002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47409,59 +46019,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22513] = 22, - ACTIONS(742), 1, + [22477] = 23, + ACTIONS(718), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1128), 1, anon_sym_STAR, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + ACTIONS(1176), 1, + anon_sym_COLON, + STATE(1082), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1933), 1, + STATE(1754), 1, sym_expression, - STATE(2376), 1, + STATE(2093), 1, + sym_slice, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(1130), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(754), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47469,7 +46080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47486,59 +46097,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22612] = 22, - ACTIONS(690), 1, + [22578] = 23, + ACTIONS(718), 1, sym_identifier, - ACTIONS(692), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(708), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(712), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(714), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(798), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1098), 1, - anon_sym_STAR, - ACTIONS(1104), 1, + ACTIONS(1112), 1, anon_sym_lambda, - STATE(1058), 1, - sym_string, - STATE(1063), 1, + ACTIONS(1128), 1, + anon_sym_STAR, + ACTIONS(1176), 1, + anon_sym_COLON, + STATE(1082), 1, sym_primary_expression, - STATE(1397), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1817), 1, + STATE(1764), 1, sym_expression, - STATE(2526), 1, + STATE(2041), 1, + sym_slice, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - STATE(1911), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(702), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(696), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(710), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1506), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47546,7 +46158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47563,59 +46175,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22711] = 22, - ACTIONS(632), 1, + [22679] = 22, + ACTIONS(63), 1, + anon_sym_not, + ACTIONS(67), 1, + anon_sym_lambda, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(270), 1, sym_identifier, - ACTIONS(634), 1, + ACTIONS(304), 1, + anon_sym_await, + ACTIONS(334), 1, anon_sym_LPAREN, - ACTIONS(640), 1, + ACTIONS(338), 1, anon_sym_LBRACK, - ACTIONS(650), 1, - anon_sym_LBRACE, - ACTIONS(654), 1, - anon_sym_await, - ACTIONS(656), 1, - sym_string_start, - ACTIONS(778), 1, - anon_sym_not, - ACTIONS(1138), 1, + ACTIONS(1148), 1, anon_sym_STAR, - ACTIONS(1140), 1, - anon_sym_lambda, - STATE(1037), 1, + STATE(977), 1, sym_string, - STATE(1038), 1, + STATE(982), 1, sym_primary_expression, - STATE(1338), 1, + STATE(1295), 1, sym_list_splat_pattern, - STATE(1810), 1, + STATE(1812), 1, sym_expression, - STATE(2420), 1, + STATE(2495), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - STATE(1926), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(644), 3, + ACTIONS(1280), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(638), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(652), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1278), 7, + ACTIONS(285), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47623,7 +46235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1277), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47640,60 +46252,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22810] = 23, - ACTIONS(314), 1, + [22778] = 22, + ACTIONS(692), 1, sym_identifier, - ACTIONS(322), 1, + ACTIONS(694), 1, + anon_sym_LPAREN, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(324), 1, - anon_sym_not, - ACTIONS(330), 1, - anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(964), 1, + anon_sym_not, + ACTIONS(966), 1, + anon_sym_lambda, + ACTIONS(1154), 1, anon_sym_STAR, - ACTIONS(1308), 1, - anon_sym_LPAREN, - STATE(1071), 1, + STATE(1062), 1, sym_string, - STATE(1079), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1938), 1, + STATE(1894), 1, sym_expression, - STATE(2209), 1, - sym_with_item, - STATE(2379), 1, + STATE(2494), 1, sym__named_expression_lhs, - STATE(2543), 1, - sym_with_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(1080), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(698), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47701,7 +46312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47718,60 +46329,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22911] = 23, - ACTIONS(742), 1, + [22877] = 22, + ACTIONS(666), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(688), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(774), 1, anon_sym_not, - ACTIONS(1128), 1, - anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1114), 1, anon_sym_STAR, - ACTIONS(1196), 1, - anon_sym_COLON, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + ACTIONS(1116), 1, + anon_sym_lambda, + STATE(1008), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1012), 1, + sym_string, + STATE(1381), 1, sym_list_splat_pattern, - STATE(1841), 1, + STATE(1765), 1, sym_expression, - STATE(2246), 1, - sym_slice, - STATE(2376), 1, + STATE(2387), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + STATE(1925), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(672), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47779,7 +46389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47796,60 +46406,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23012] = 23, - ACTIONS(742), 1, + [22976] = 22, + ACTIONS(612), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(634), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(636), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(754), 1, anon_sym_not, - ACTIONS(1128), 1, - anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1090), 1, anon_sym_STAR, - ACTIONS(1196), 1, - anon_sym_COLON, - STATE(1132), 1, + ACTIONS(1092), 1, + anon_sym_lambda, + STATE(975), 1, sym_string, - STATE(1153), 1, + STATE(976), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1825), 1, + STATE(1786), 1, sym_expression, - STATE(2233), 1, - sym_slice, - STATE(2376), 1, + STATE(2333), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + STATE(1884), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(618), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(632), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1262), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47857,7 +46466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47874,59 +46483,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23113] = 22, - ACTIONS(63), 1, - anon_sym_not, - ACTIONS(67), 1, - anon_sym_lambda, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(266), 1, + [23075] = 23, + ACTIONS(692), 1, sym_identifier, - ACTIONS(300), 1, - anon_sym_await, - ACTIONS(302), 1, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(1160), 1, + ACTIONS(710), 1, + anon_sym_LBRACE, + ACTIONS(714), 1, + anon_sym_await, + ACTIONS(716), 1, + sym_string_start, + ACTIONS(964), 1, + anon_sym_not, + ACTIONS(966), 1, + anon_sym_lambda, + ACTIONS(1154), 1, anon_sym_STAR, - STATE(1034), 1, + ACTIONS(1282), 1, + anon_sym_RPAREN, + STATE(1062), 1, sym_string, - STATE(1036), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1866), 1, + STATE(1869), 1, sym_expression, - STATE(2504), 1, + STATE(2276), 1, + sym_with_item, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(1310), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(75), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(281), 4, + ACTIONS(698), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1329), 7, + ACTIONS(712), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47934,7 +46544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47951,60 +46561,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23212] = 23, - ACTIONS(742), 1, + [23176] = 23, + ACTIONS(718), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1196), 1, + ACTIONS(1176), 1, anon_sym_COLON, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1843), 1, + STATE(1774), 1, sym_expression, - STATE(2176), 1, + STATE(2104), 1, sym_slice, - STATE(2376), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48012,7 +46622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48029,59 +46639,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23313] = 22, - ACTIONS(742), 1, + [23277] = 22, + ACTIONS(692), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1154), 1, anon_sym_STAR, - STATE(1132), 1, + STATE(1062), 1, sym_string, - STATE(1153), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1933), 1, + STATE(1894), 1, sym_expression, - STATE(2376), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(1146), 2, + ACTIONS(1122), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(754), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(698), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48089,7 +46699,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48106,24 +46716,24 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23412] = 10, - ACTIONS(275), 1, + [23376] = 10, + ACTIONS(279), 1, anon_sym_COMMA, - ACTIONS(285), 1, + ACTIONS(289), 1, anon_sym_COLON_EQ, - ACTIONS(1312), 1, + ACTIONS(1284), 1, sym_identifier, - ACTIONS(1314), 1, + ACTIONS(1286), 1, sym_string_start, - STATE(2225), 1, + STATE(2074), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(287), 2, + ACTIONS(291), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(268), 10, + ACTIONS(272), 10, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -48134,7 +46744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(298), 13, + ACTIONS(302), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -48148,7 +46758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(270), 22, + ACTIONS(274), 22, anon_sym_as, anon_sym_STAR, anon_sym_GT_GT, @@ -48171,60 +46781,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_is, - [23487] = 23, - ACTIONS(742), 1, + [23451] = 22, + ACTIONS(718), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1196), 1, - anon_sym_COLON, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1849), 1, + STATE(1900), 1, sym_expression, - STATE(2116), 1, - sym_slice, - STATE(2376), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(1184), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48232,7 +46841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48249,60 +46858,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23588] = 23, - ACTIONS(314), 1, + [23550] = 23, + ACTIONS(306), 1, sym_identifier, - ACTIONS(322), 1, + ACTIONS(308), 1, + anon_sym_LPAREN, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1308), 1, - anon_sym_LPAREN, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + ACTIONS(1288), 1, + anon_sym_COLON, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1938), 1, + STATE(1905), 1, sym_expression, - STATE(2209), 1, + STATE(2309), 1, sym_with_item, - STATE(2379), 1, + STATE(2513), 1, sym__named_expression_lhs, - STATE(2418), 1, - sym_with_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48310,7 +46919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48327,60 +46936,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23689] = 23, - ACTIONS(742), 1, + [23651] = 22, + ACTIONS(638), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(1128), 1, - anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1084), 1, anon_sym_STAR, - ACTIONS(1196), 1, - anon_sym_COLON, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + ACTIONS(1088), 1, + anon_sym_lambda, + STATE(1035), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1036), 1, + sym_string, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1836), 1, + STATE(1747), 1, sym_expression, - STATE(2075), 1, - sym_slice, - STATE(2376), 1, + STATE(2436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + STATE(1873), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48388,7 +46996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48405,59 +47013,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23790] = 22, - ACTIONS(742), 1, + [23750] = 22, + ACTIONS(612), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(634), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(636), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(754), 1, anon_sym_not, - ACTIONS(1128), 1, - anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1090), 1, anon_sym_STAR, - STATE(1132), 1, + ACTIONS(1092), 1, + anon_sym_lambda, + STATE(975), 1, sym_string, - STATE(1153), 1, + STATE(976), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1950), 1, + STATE(1751), 1, sym_expression, - STATE(2376), 1, + STATE(2333), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(1268), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(754), 3, + STATE(1946), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(618), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(632), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1262), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48465,7 +47073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48482,59 +47090,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23889] = 22, - ACTIONS(658), 1, + [23849] = 22, + ACTIONS(63), 1, + anon_sym_not, + ACTIONS(67), 1, + anon_sym_lambda, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(270), 1, sym_identifier, - ACTIONS(660), 1, + ACTIONS(304), 1, + anon_sym_await, + ACTIONS(334), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(338), 1, anon_sym_LBRACK, - ACTIONS(678), 1, - anon_sym_LBRACE, - ACTIONS(682), 1, - anon_sym_await, - ACTIONS(684), 1, - sym_string_start, - ACTIONS(818), 1, - anon_sym_not, - ACTIONS(1108), 1, + ACTIONS(1148), 1, anon_sym_STAR, - ACTIONS(1112), 1, - anon_sym_lambda, - STATE(1095), 1, + STATE(977), 1, sym_string, - STATE(1101), 1, + STATE(982), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1295), 1, sym_list_splat_pattern, - STATE(1811), 1, + STATE(1812), 1, sym_expression, - STATE(2489), 1, + STATE(2495), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - STATE(1971), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(672), 3, + ACTIONS(1290), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(680), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + ACTIONS(285), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48542,7 +47150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48559,59 +47167,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23988] = 22, - ACTIONS(658), 1, + [23948] = 23, + ACTIONS(306), 1, sym_identifier, - ACTIONS(660), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(316), 1, + anon_sym_not, + ACTIONS(322), 1, + anon_sym_lambda, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(818), 1, - anon_sym_not, - ACTIONS(1108), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1112), 1, - anon_sym_lambda, - STATE(1095), 1, - sym_string, - STATE(1101), 1, + ACTIONS(1292), 1, + anon_sym_COLON, + STATE(994), 1, sym_primary_expression, - STATE(1407), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1834), 1, + STATE(1905), 1, sym_expression, - STATE(2489), 1, + STATE(2309), 1, + sym_with_item, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - STATE(1931), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(672), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(680), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48619,7 +47228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48636,59 +47245,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24087] = 22, - ACTIONS(690), 1, + [24049] = 22, + ACTIONS(718), 1, sym_identifier, - ACTIONS(692), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(708), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(712), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(714), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(798), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1098), 1, - anon_sym_STAR, - ACTIONS(1104), 1, + ACTIONS(1112), 1, anon_sym_lambda, - STATE(1058), 1, - sym_string, - STATE(1063), 1, + ACTIONS(1128), 1, + anon_sym_STAR, + STATE(1082), 1, sym_primary_expression, - STATE(1397), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1817), 1, + STATE(1845), 1, sym_expression, - STATE(2526), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - STATE(2025), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(702), 3, + ACTIONS(1080), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(696), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(710), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1506), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48696,7 +47305,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48713,59 +47322,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24186] = 22, - ACTIONS(742), 1, + [24148] = 22, + ACTIONS(612), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(634), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(636), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(754), 1, anon_sym_not, - ACTIONS(1128), 1, - anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1090), 1, anon_sym_STAR, - STATE(1132), 1, + ACTIONS(1092), 1, + anon_sym_lambda, + STATE(975), 1, sym_string, - STATE(1153), 1, + STATE(976), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1922), 1, + STATE(1763), 1, sym_expression, - STATE(2376), 1, + STATE(2333), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(1316), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(754), 3, + STATE(1961), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(618), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(632), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1262), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48773,7 +47382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48790,60 +47399,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24285] = 23, - ACTIONS(742), 1, + [24247] = 22, + ACTIONS(612), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(634), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(636), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(754), 1, anon_sym_not, - ACTIONS(1128), 1, - anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1090), 1, anon_sym_STAR, - ACTIONS(1196), 1, - anon_sym_COLON, - STATE(1132), 1, + ACTIONS(1092), 1, + anon_sym_lambda, + STATE(975), 1, sym_string, - STATE(1153), 1, + STATE(976), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1786), 1, sym_expression, - STATE(2273), 1, - sym_slice, - STATE(2376), 1, + STATE(2333), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + STATE(1948), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(618), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(632), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1262), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48851,7 +47459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48868,59 +47476,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24386] = 22, - ACTIONS(690), 1, + [24346] = 22, + ACTIONS(718), 1, sym_identifier, - ACTIONS(692), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(708), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(712), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(714), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(798), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1098), 1, - anon_sym_STAR, - ACTIONS(1104), 1, + ACTIONS(1112), 1, anon_sym_lambda, - STATE(1058), 1, - sym_string, - STATE(1063), 1, + ACTIONS(1128), 1, + anon_sym_STAR, + STATE(1082), 1, sym_primary_expression, - STATE(1397), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1817), 1, + STATE(1845), 1, sym_expression, - STATE(2526), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - STATE(1903), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(702), 3, + ACTIONS(1122), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(696), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(710), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1506), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48928,7 +47536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48945,59 +47553,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24485] = 22, - ACTIONS(742), 1, + [24445] = 22, + ACTIONS(718), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1128), 1, anon_sym_STAR, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1932), 1, + STATE(1875), 1, sym_expression, - STATE(2376), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(1318), 2, + ACTIONS(1294), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(754), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49005,7 +47613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49022,60 +47630,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24584] = 23, - ACTIONS(314), 1, + [24544] = 23, + ACTIONS(718), 1, sym_identifier, - ACTIONS(322), 1, + ACTIONS(720), 1, + anon_sym_LPAREN, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(324), 1, - anon_sym_not, - ACTIONS(330), 1, - anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1110), 1, + anon_sym_not, + ACTIONS(1112), 1, + anon_sym_lambda, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1308), 1, - anon_sym_LPAREN, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + ACTIONS(1176), 1, + anon_sym_COLON, + STATE(1082), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1938), 1, + STATE(1752), 1, sym_expression, - STATE(2209), 1, - sym_with_item, - STATE(2379), 1, + STATE(2151), 1, + sym_slice, + STATE(2352), 1, sym__named_expression_lhs, - STATE(2425), 1, - sym_with_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49083,7 +47691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49100,59 +47708,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24685] = 22, - ACTIONS(632), 1, + [24645] = 23, + ACTIONS(306), 1, sym_identifier, - ACTIONS(634), 1, - anon_sym_LPAREN, - ACTIONS(640), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(650), 1, + ACTIONS(316), 1, + anon_sym_not, + ACTIONS(322), 1, + anon_sym_lambda, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(656), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(778), 1, - anon_sym_not, - ACTIONS(1138), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1140), 1, - anon_sym_lambda, - STATE(1037), 1, - sym_string, - STATE(1038), 1, + ACTIONS(1260), 1, + anon_sym_LPAREN, + STATE(994), 1, sym_primary_expression, - STATE(1338), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1810), 1, + STATE(1905), 1, sym_expression, - STATE(2420), 1, + STATE(2088), 1, + sym_with_item, + STATE(2392), 1, + sym_with_clause, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - STATE(2017), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(644), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(638), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(652), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1278), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49160,7 +47769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1277), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49177,59 +47786,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24784] = 22, - ACTIONS(632), 1, + [24746] = 23, + ACTIONS(718), 1, sym_identifier, - ACTIONS(634), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(640), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(650), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(656), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(778), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1138), 1, - anon_sym_STAR, - ACTIONS(1140), 1, + ACTIONS(1112), 1, anon_sym_lambda, - STATE(1037), 1, - sym_string, - STATE(1038), 1, + ACTIONS(1128), 1, + anon_sym_STAR, + ACTIONS(1176), 1, + anon_sym_COLON, + STATE(1082), 1, sym_primary_expression, - STATE(1338), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1848), 1, + STATE(1753), 1, sym_expression, - STATE(2420), 1, + STATE(2094), 1, + sym_slice, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - STATE(2008), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(644), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(638), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(652), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1278), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49237,7 +47847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1277), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49254,60 +47864,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24883] = 23, - ACTIONS(314), 1, + [24847] = 23, + ACTIONS(692), 1, sym_identifier, - ACTIONS(322), 1, + ACTIONS(694), 1, + anon_sym_LPAREN, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(324), 1, - anon_sym_not, - ACTIONS(330), 1, - anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(964), 1, + anon_sym_not, + ACTIONS(966), 1, + anon_sym_lambda, + ACTIONS(1154), 1, anon_sym_STAR, - ACTIONS(1308), 1, - anon_sym_LPAREN, - STATE(1071), 1, + ACTIONS(1296), 1, + anon_sym_RPAREN, + STATE(1062), 1, sym_string, - STATE(1079), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1938), 1, + STATE(1869), 1, sym_expression, - STATE(2209), 1, + STATE(2276), 1, sym_with_item, - STATE(2356), 1, - sym_with_clause, - STATE(2379), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(698), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49315,7 +47925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49332,60 +47942,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24984] = 23, - ACTIONS(742), 1, + [24948] = 23, + ACTIONS(718), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1196), 1, + ACTIONS(1176), 1, anon_sym_COLON, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1803), 1, + STATE(1773), 1, sym_expression, - STATE(2148), 1, + STATE(2083), 1, sym_slice, - STATE(2376), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49393,7 +48003,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49410,59 +48020,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25085] = 22, - ACTIONS(658), 1, + [25049] = 23, + ACTIONS(718), 1, sym_identifier, - ACTIONS(660), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(818), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(1108), 1, - anon_sym_STAR, ACTIONS(1112), 1, anon_sym_lambda, - STATE(1095), 1, - sym_string, - STATE(1101), 1, + ACTIONS(1128), 1, + anon_sym_STAR, + ACTIONS(1176), 1, + anon_sym_COLON, + STATE(1082), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1834), 1, + STATE(1744), 1, sym_expression, - STATE(2489), 1, + STATE(2208), 1, + sym_slice, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - STATE(1945), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(672), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(680), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49470,7 +48081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49487,124 +48098,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25184] = 10, - ACTIONS(275), 1, - anon_sym_COMMA, - ACTIONS(285), 1, - anon_sym_COLON_EQ, - ACTIONS(1320), 1, - anon_sym_for, - ACTIONS(1322), 1, - anon_sym_with, - ACTIONS(1324), 1, - anon_sym_def, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(287), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(298), 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(270), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(268), 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [25259] = 22, - ACTIONS(632), 1, + [25150] = 22, + ACTIONS(306), 1, sym_identifier, - ACTIONS(634), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(640), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(650), 1, + ACTIONS(316), 1, + anon_sym_not, + ACTIONS(322), 1, + anon_sym_lambda, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(656), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(778), 1, - anon_sym_not, - ACTIONS(1138), 1, + ACTIONS(1122), 1, + anon_sym_COLON, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1140), 1, - anon_sym_lambda, - STATE(1037), 1, - sym_string, - STATE(1038), 1, + STATE(994), 1, sym_primary_expression, - STATE(1338), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1838), 1, + STATE(1843), 1, sym_expression, - STATE(2420), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - STATE(2019), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(644), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(638), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(652), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1278), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49612,7 +48157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1277), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49629,58 +48174,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25358] = 22, - ACTIONS(314), 1, + [25248] = 22, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1882), 1, + STATE(1905), 1, sym_expression, - STATE(2379), 1, + STATE(2309), 1, + sym_with_item, + STATE(2513), 1, sym__named_expression_lhs, - STATE(2445), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49688,7 +48233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49705,58 +48250,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25456] = 22, - ACTIONS(314), 1, + [25346] = 22, + ACTIONS(692), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(324), 1, - anon_sym_not, - ACTIONS(330), 1, - anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(964), 1, + anon_sym_not, + ACTIONS(966), 1, + anon_sym_lambda, + ACTIONS(1154), 1, anon_sym_STAR, - STATE(1071), 1, + STATE(1062), 1, sym_string, - STATE(1079), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1829), 1, sym_expression, - STATE(2379), 1, + STATE(2287), 1, + sym_type, + STATE(2494), 1, sym__named_expression_lhs, - STATE(2441), 1, - sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(698), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49764,7 +48309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49781,58 +48326,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25554] = 22, - ACTIONS(314), 1, + [25444] = 22, + ACTIONS(692), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(324), 1, - anon_sym_not, - ACTIONS(330), 1, - anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(964), 1, + anon_sym_not, + ACTIONS(966), 1, + anon_sym_lambda, + ACTIONS(1154), 1, anon_sym_STAR, - STATE(1071), 1, + STATE(1062), 1, sym_string, - STATE(1079), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1874), 1, + STATE(1829), 1, sym_expression, - STATE(2379), 1, + STATE(2152), 1, + sym_type, + STATE(2494), 1, sym__named_expression_lhs, - STATE(2433), 1, - sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(698), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49840,7 +48385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49857,58 +48402,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25652] = 22, - ACTIONS(314), 1, + [25542] = 22, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1146), 1, - anon_sym_COLON, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + ACTIONS(1298), 1, + anon_sym_COLON, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1910), 1, + STATE(1852), 1, sym_expression, - STATE(2379), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49916,7 +48461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49933,58 +48478,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25750] = 22, - ACTIONS(314), 1, + [25640] = 22, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1130), 1, - anon_sym_COLON, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1910), 1, + STATE(1811), 1, sym_expression, - STATE(2379), 1, + STATE(2493), 1, + sym_expression_list, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49992,7 +48537,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50009,58 +48554,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25848] = 22, - ACTIONS(314), 1, + [25738] = 22, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1326), 1, + ACTIONS(1300), 1, anon_sym_COLON, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1936), 1, + STATE(1899), 1, sym_expression, - STATE(2379), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50068,7 +48613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50085,58 +48630,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25946] = 22, - ACTIONS(63), 1, + [25836] = 22, + ACTIONS(306), 1, + sym_identifier, + ACTIONS(308), 1, + anon_sym_LPAREN, + ACTIONS(314), 1, + anon_sym_LBRACK, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(67), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(266), 1, - sym_identifier, - ACTIONS(300), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(302), 1, - anon_sym_LPAREN, - ACTIONS(306), 1, - anon_sym_LBRACK, - ACTIONS(1160), 1, + ACTIONS(332), 1, + sym_string_start, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1034), 1, - sym_string, - STATE(1036), 1, + ACTIONS(1302), 1, + anon_sym_COLON, + STATE(994), 1, sym_primary_expression, - STATE(1172), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1837), 1, + STATE(1852), 1, sym_expression, - STATE(2320), 1, - sym_expression_list, - STATE(2504), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(75), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(281), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1329), 7, + ACTIONS(328), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50144,7 +48689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50161,58 +48706,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26044] = 22, - ACTIONS(314), 1, + [25934] = 22, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1328), 1, - anon_sym_COLON, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1904), 1, + STATE(1814), 1, sym_expression, - STATE(2379), 1, + STATE(2378), 1, + sym_type, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50220,7 +48765,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50237,58 +48782,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26142] = 22, - ACTIONS(314), 1, + [26032] = 22, + ACTIONS(692), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(324), 1, - anon_sym_not, - ACTIONS(330), 1, - anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(964), 1, + anon_sym_not, + ACTIONS(966), 1, + anon_sym_lambda, + ACTIONS(1154), 1, anon_sym_STAR, - STATE(1071), 1, + STATE(1062), 1, sym_string, - STATE(1079), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1858), 1, + STATE(1869), 1, sym_expression, - STATE(2354), 1, - sym_expression_list, - STATE(2379), 1, + STATE(2276), 1, + sym_with_item, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(698), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50296,7 +48841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50313,58 +48858,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26240] = 22, - ACTIONS(314), 1, + [26130] = 22, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1938), 1, + STATE(1814), 1, sym_expression, - STATE(2270), 1, - sym_with_item, - STATE(2379), 1, + STATE(2474), 1, + sym_type, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50372,7 +48917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50389,58 +48934,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26338] = 22, - ACTIONS(716), 1, + [26228] = 22, + ACTIONS(306), 1, sym_identifier, - ACTIONS(718), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(316), 1, + anon_sym_not, + ACTIONS(322), 1, + anon_sym_lambda, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(738), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(740), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(954), 1, - anon_sym_not, - ACTIONS(956), 1, - anon_sym_lambda, - ACTIONS(1168), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1152), 1, + STATE(994), 1, sym_primary_expression, - STATE(1157), 1, + STATE(996), 1, sym_string, - STATE(1516), 1, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1890), 1, + STATE(1814), 1, sym_expression, - STATE(2325), 1, + STATE(2428), 1, sym_type, - STATE(2406), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(722), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1606), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50448,7 +48993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50465,58 +49010,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26436] = 22, - ACTIONS(716), 1, + [26326] = 22, + ACTIONS(306), 1, sym_identifier, - ACTIONS(718), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(316), 1, + anon_sym_not, + ACTIONS(322), 1, + anon_sym_lambda, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(738), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(740), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(954), 1, - anon_sym_not, - ACTIONS(956), 1, - anon_sym_lambda, - ACTIONS(1168), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1152), 1, + ACTIONS(1304), 1, + anon_sym_COLON, + STATE(994), 1, sym_primary_expression, - STATE(1157), 1, + STATE(996), 1, sym_string, - STATE(1516), 1, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(1852), 1, sym_expression, - STATE(2275), 1, - sym_with_item, - STATE(2406), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(722), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1606), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50524,7 +49069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50541,58 +49086,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26534] = 22, - ACTIONS(314), 1, - sym_identifier, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_LBRACK, - ACTIONS(324), 1, + [26424] = 22, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(67), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(338), 1, - anon_sym_await, - ACTIONS(340), 1, + ACTIONS(79), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(270), 1, + sym_identifier, + ACTIONS(304), 1, + anon_sym_await, + ACTIONS(334), 1, + anon_sym_LPAREN, + ACTIONS(338), 1, + anon_sym_LBRACK, + ACTIONS(1148), 1, anon_sym_STAR, - STATE(1071), 1, + STATE(977), 1, sym_string, - STATE(1079), 1, + STATE(982), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1295), 1, sym_list_splat_pattern, - STATE(1882), 1, + STATE(1838), 1, sym_expression, - STATE(2379), 1, - sym__named_expression_lhs, - STATE(2510), 1, + STATE(2123), 1, sym_type, + STATE(2495), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + ACTIONS(285), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50600,7 +49145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50617,58 +49162,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26632] = 22, - ACTIONS(314), 1, + [26522] = 22, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1330), 1, + ACTIONS(1306), 1, anon_sym_COLON, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1936), 1, + STATE(1852), 1, sym_expression, - STATE(2379), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50676,7 +49221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50693,58 +49238,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26730] = 22, - ACTIONS(716), 1, + [26620] = 22, + ACTIONS(306), 1, sym_identifier, - ACTIONS(718), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(316), 1, + anon_sym_not, + ACTIONS(322), 1, + anon_sym_lambda, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(738), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(740), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(954), 1, - anon_sym_not, - ACTIONS(956), 1, - anon_sym_lambda, - ACTIONS(1168), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1152), 1, + ACTIONS(1308), 1, + anon_sym_COLON, + STATE(994), 1, sym_primary_expression, - STATE(1157), 1, + STATE(996), 1, sym_string, - STATE(1516), 1, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1890), 1, + STATE(1903), 1, sym_expression, - STATE(2143), 1, - sym_type, - STATE(2406), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(722), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1606), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50752,7 +49297,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50769,58 +49314,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26828] = 22, - ACTIONS(314), 1, + [26718] = 22, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1883), 1, + STATE(1814), 1, sym_expression, - STATE(2379), 1, + STATE(2425), 1, + sym_type, + STATE(2513), 1, sym__named_expression_lhs, - STATE(2475), 1, - sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50828,7 +49373,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50845,58 +49390,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26926] = 22, - ACTIONS(63), 1, + [26816] = 22, + ACTIONS(306), 1, + sym_identifier, + ACTIONS(308), 1, + anon_sym_LPAREN, + ACTIONS(314), 1, + anon_sym_LBRACK, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(67), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(266), 1, - sym_identifier, - ACTIONS(300), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(302), 1, - anon_sym_LPAREN, - ACTIONS(306), 1, - anon_sym_LBRACK, - ACTIONS(1160), 1, + ACTIONS(332), 1, + sym_string_start, + ACTIONS(1080), 1, + anon_sym_COLON, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1034), 1, - sym_string, - STATE(1036), 1, + STATE(994), 1, sym_primary_expression, - STATE(1172), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1854), 1, + STATE(1843), 1, sym_expression, - STATE(2191), 1, - sym_type, - STATE(2504), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(75), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(281), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1329), 7, + ACTIONS(328), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50904,7 +49449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50921,58 +49466,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27024] = 22, - ACTIONS(314), 1, - sym_identifier, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_LBRACK, - ACTIONS(324), 1, + [26914] = 22, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(67), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(338), 1, - anon_sym_await, - ACTIONS(340), 1, + ACTIONS(79), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(270), 1, + sym_identifier, + ACTIONS(304), 1, + anon_sym_await, + ACTIONS(334), 1, + anon_sym_LPAREN, + ACTIONS(338), 1, + anon_sym_LBRACK, + ACTIONS(1148), 1, anon_sym_STAR, - ACTIONS(1332), 1, - anon_sym_COLON, - STATE(1071), 1, + STATE(977), 1, sym_string, - STATE(1079), 1, + STATE(982), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1295), 1, sym_list_splat_pattern, - STATE(1936), 1, + STATE(1742), 1, sym_expression, - STATE(2379), 1, + STATE(2265), 1, + sym_expression_list, + STATE(2495), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + ACTIONS(285), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50980,7 +49525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50997,58 +49542,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27122] = 22, - ACTIONS(314), 1, + [27012] = 22, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1334), 1, - anon_sym_COLON, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1957), 1, + STATE(1807), 1, sym_expression, - STATE(2379), 1, + STATE(2369), 1, + sym_expression_list, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51056,7 +49601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51073,58 +49618,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27220] = 22, - ACTIONS(314), 1, + [27110] = 22, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1882), 1, + STATE(1828), 1, sym_expression, - STATE(2379), 1, + STATE(2421), 1, + sym_expression_list, + STATE(2513), 1, sym__named_expression_lhs, - STATE(2530), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51132,7 +49677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51149,58 +49694,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27318] = 22, - ACTIONS(314), 1, + [27208] = 22, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1336), 1, - anon_sym_COLON, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1936), 1, + STATE(1793), 1, sym_expression, - STATE(2379), 1, + STATE(2312), 1, + sym_expression_list, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51208,7 +49753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51225,58 +49770,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27416] = 22, - ACTIONS(314), 1, + [27306] = 21, + ACTIONS(638), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(650), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(654), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1084), 1, anon_sym_STAR, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(1033), 1, sym_primary_expression, - STATE(1366), 1, - sym_list_splat_pattern, - STATE(1882), 1, + STATE(1036), 1, + sym_string, + STATE(1300), 1, sym_expression, - STATE(2379), 1, + STATE(1304), 1, + sym_list_splat_pattern, + STATE(2404), 1, sym__named_expression_lhs, - STATE(2451), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51284,7 +49827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51301,56 +49844,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27514] = 21, - ACTIONS(716), 1, - sym_identifier, + [27401] = 21, ACTIONS(718), 1, + sym_identifier, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(728), 1, + anon_sym_not, + ACTIONS(732), 1, + anon_sym_lambda, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(738), 1, - anon_sym_await, ACTIONS(740), 1, + anon_sym_await, + ACTIONS(742), 1, sym_string_start, - ACTIONS(954), 1, - anon_sym_not, - ACTIONS(956), 1, - anon_sym_lambda, - ACTIONS(1168), 1, + ACTIONS(1128), 1, anon_sym_STAR, - STATE(1152), 1, + STATE(1093), 1, sym_primary_expression, - STATE(1157), 1, + STATE(1099), 1, sym_string, - STATE(1516), 1, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1885), 1, + STATE(1497), 1, sym_expression, - STATE(2406), 1, + STATE(2385), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(722), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1606), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51358,7 +49901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51375,56 +49918,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27609] = 21, - ACTIONS(606), 1, + [27496] = 21, + ACTIONS(692), 1, sym_identifier, - ACTIONS(608), 1, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(702), 1, + anon_sym_not, + ACTIONS(706), 1, + anon_sym_lambda, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(628), 1, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(630), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(914), 1, + ACTIONS(1154), 1, anon_sym_STAR, - ACTIONS(920), 1, - anon_sym_not, - ACTIONS(922), 1, - anon_sym_lambda, - STATE(1032), 1, + STATE(1062), 1, sym_string, - STATE(1033), 1, + STATE(1102), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1793), 1, + STATE(1487), 1, sym_expression, - STATE(2363), 1, + STATE(2380), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(618), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(612), 4, + ACTIONS(698), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(626), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1343), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51432,7 +49975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1341), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51449,56 +49992,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27704] = 21, - ACTIONS(314), 1, + [27591] = 21, + ACTIONS(692), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(334), 1, + ACTIONS(702), 1, + anon_sym_not, + ACTIONS(706), 1, + anon_sym_lambda, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(686), 1, - anon_sym_not, - ACTIONS(688), 1, - anon_sym_lambda, - ACTIONS(1204), 1, + ACTIONS(1154), 1, anon_sym_STAR, - STATE(1048), 1, - sym_primary_expression, - STATE(1071), 1, + STATE(1062), 1, sym_string, - STATE(1366), 1, + STATE(1102), 1, + sym_primary_expression, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1484), 1, + STATE(1522), 1, sym_expression, - STATE(2366), 1, + STATE(2380), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(698), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51506,7 +50049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51523,56 +50066,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27799] = 21, - ACTIONS(314), 1, + [27686] = 21, + ACTIONS(692), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(334), 1, + ACTIONS(702), 1, + anon_sym_not, + ACTIONS(706), 1, + anon_sym_lambda, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(686), 1, - anon_sym_not, - ACTIONS(688), 1, - anon_sym_lambda, - ACTIONS(1204), 1, + ACTIONS(1154), 1, anon_sym_STAR, - STATE(1048), 1, - sym_primary_expression, - STATE(1071), 1, + STATE(1062), 1, sym_string, - STATE(1366), 1, + STATE(1102), 1, + sym_primary_expression, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1425), 1, + STATE(1483), 1, sym_expression, - STATE(2366), 1, + STATE(2380), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(698), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51580,7 +50123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51597,56 +50140,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27894] = 21, - ACTIONS(314), 1, + [27781] = 21, + ACTIONS(692), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(334), 1, + ACTIONS(702), 1, + anon_sym_not, + ACTIONS(706), 1, + anon_sym_lambda, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(686), 1, - anon_sym_not, - ACTIONS(688), 1, - anon_sym_lambda, - ACTIONS(1204), 1, + ACTIONS(1154), 1, anon_sym_STAR, - STATE(1048), 1, - sym_primary_expression, - STATE(1071), 1, + STATE(1062), 1, sym_string, - STATE(1366), 1, + STATE(1102), 1, + sym_primary_expression, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1423), 1, + STATE(1482), 1, sym_expression, - STATE(2366), 1, + STATE(2380), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(698), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51654,7 +50197,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51671,56 +50214,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27989] = 21, - ACTIONS(314), 1, + [27876] = 21, + ACTIONS(63), 1, + anon_sym_not, + ACTIONS(67), 1, + anon_sym_lambda, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(270), 1, sym_identifier, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_LBRACK, + ACTIONS(304), 1, + anon_sym_await, ACTIONS(334), 1, - anon_sym_LBRACE, + anon_sym_LPAREN, ACTIONS(338), 1, - anon_sym_await, - ACTIONS(340), 1, - sym_string_start, - ACTIONS(686), 1, - anon_sym_not, - ACTIONS(688), 1, - anon_sym_lambda, - ACTIONS(1204), 1, + anon_sym_LBRACK, + ACTIONS(1148), 1, anon_sym_STAR, - STATE(1048), 1, - sym_primary_expression, - STATE(1071), 1, + STATE(977), 1, sym_string, - STATE(1366), 1, + STATE(982), 1, + sym_primary_expression, + STATE(1295), 1, sym_list_splat_pattern, - STATE(1415), 1, + STATE(1855), 1, sym_expression, - STATE(2366), 1, + STATE(2495), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + ACTIONS(285), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51728,7 +50271,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51745,56 +50288,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28084] = 21, - ACTIONS(690), 1, + [27971] = 21, + ACTIONS(612), 1, sym_identifier, - ACTIONS(692), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(708), 1, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(712), 1, + ACTIONS(634), 1, anon_sym_await, - ACTIONS(714), 1, + ACTIONS(636), 1, sym_string_start, - ACTIONS(798), 1, + ACTIONS(754), 1, anon_sym_not, - ACTIONS(800), 1, + ACTIONS(756), 1, anon_sym_lambda, - ACTIONS(1098), 1, + ACTIONS(1090), 1, anon_sym_STAR, - STATE(1058), 1, + STATE(975), 1, sym_string, - STATE(1063), 1, + STATE(976), 1, sym_primary_expression, - STATE(1397), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1500), 1, + STATE(1252), 1, sym_expression, - STATE(2526), 1, + STATE(2333), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(696), 4, + ACTIONS(618), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(710), 4, + ACTIONS(632), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1506), 7, + STATE(1262), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51802,7 +50345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51819,56 +50362,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28179] = 21, - ACTIONS(690), 1, - sym_identifier, + [28066] = 21, ACTIONS(692), 1, + sym_identifier, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, ACTIONS(700), 1, - anon_sym_not, - ACTIONS(704), 1, - anon_sym_lambda, - ACTIONS(708), 1, + anon_sym_LBRACK, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(712), 1, - anon_sym_await, ACTIONS(714), 1, + anon_sym_await, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1098), 1, + ACTIONS(964), 1, + anon_sym_not, + ACTIONS(966), 1, + anon_sym_lambda, + ACTIONS(1154), 1, anon_sym_STAR, - STATE(1058), 1, + STATE(1062), 1, sym_string, - STATE(1059), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1397), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1410), 1, + STATE(1856), 1, sym_expression, - STATE(2385), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(696), 4, + ACTIONS(698), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(710), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1506), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51876,7 +50419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51893,56 +50436,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28274] = 21, - ACTIONS(658), 1, + [28161] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(660), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(316), 1, + anon_sym_not, + ACTIONS(322), 1, + anon_sym_lambda, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(818), 1, - anon_sym_not, - ACTIONS(820), 1, - anon_sym_lambda, - ACTIONS(1108), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1095), 1, - sym_string, - STATE(1101), 1, + STATE(994), 1, sym_primary_expression, - STATE(1407), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1819), 1, + STATE(1959), 1, sym_expression, - STATE(2489), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(680), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51950,7 +50493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51967,56 +50510,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28369] = 21, - ACTIONS(690), 1, + [28256] = 21, + ACTIONS(579), 1, sym_identifier, - ACTIONS(692), 1, + ACTIONS(581), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(708), 1, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(712), 1, + ACTIONS(601), 1, anon_sym_await, - ACTIONS(714), 1, + ACTIONS(603), 1, sym_string_start, - ACTIONS(798), 1, + ACTIONS(890), 1, + anon_sym_STAR, + ACTIONS(896), 1, anon_sym_not, - ACTIONS(800), 1, + ACTIONS(898), 1, anon_sym_lambda, - ACTIONS(1098), 1, - anon_sym_STAR, - STATE(1058), 1, - sym_string, - STATE(1063), 1, + STATE(983), 1, sym_primary_expression, - STATE(1397), 1, + STATE(984), 1, + sym_string, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1872), 1, + STATE(1854), 1, sym_expression, - STATE(2526), 1, + STATE(2438), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(696), 4, + ACTIONS(585), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(710), 4, + ACTIONS(599), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1506), 7, + STATE(1195), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52024,7 +50567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52041,56 +50584,130 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28464] = 21, - ACTIONS(658), 1, + [28351] = 21, + ACTIONS(63), 1, + anon_sym_not, + ACTIONS(67), 1, + anon_sym_lambda, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(270), 1, sym_identifier, - ACTIONS(660), 1, + ACTIONS(304), 1, + anon_sym_await, + ACTIONS(334), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(338), 1, anon_sym_LBRACK, - ACTIONS(670), 1, - anon_sym_not, + ACTIONS(1148), 1, + anon_sym_STAR, + STATE(977), 1, + sym_string, + STATE(982), 1, + sym_primary_expression, + STATE(1295), 1, + sym_list_splat_pattern, + STATE(1733), 1, + sym_expression, + STATE(2495), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, + sym_ellipsis, + sym_float, + ACTIONS(65), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(75), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1259), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1272), 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, + [28446] = 21, + ACTIONS(666), 1, + sym_identifier, + ACTIONS(668), 1, + anon_sym_LPAREN, ACTIONS(674), 1, - anon_sym_lambda, - ACTIONS(678), 1, + anon_sym_LBRACK, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(688), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(1108), 1, + ACTIONS(774), 1, + anon_sym_not, + ACTIONS(776), 1, + anon_sym_lambda, + ACTIONS(1114), 1, anon_sym_STAR, - STATE(1095), 1, - sym_string, - STATE(1098), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1394), 1, - sym_expression, - STATE(1407), 1, + STATE(1012), 1, + sym_string, + STATE(1381), 1, sym_list_splat_pattern, - STATE(2415), 1, + STATE(1800), 1, + sym_expression, + STATE(2387), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, + ACTIONS(672), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(680), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52098,7 +50715,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52115,56 +50732,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28559] = 21, - ACTIONS(690), 1, - sym_identifier, + [28541] = 21, ACTIONS(692), 1, + sym_identifier, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, ACTIONS(700), 1, - anon_sym_not, - ACTIONS(704), 1, - anon_sym_lambda, - ACTIONS(708), 1, + anon_sym_LBRACK, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(712), 1, - anon_sym_await, ACTIONS(714), 1, + anon_sym_await, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1098), 1, + ACTIONS(964), 1, + anon_sym_not, + ACTIONS(966), 1, + anon_sym_lambda, + ACTIONS(1154), 1, anon_sym_STAR, - STATE(1058), 1, + STATE(1062), 1, sym_string, - STATE(1059), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1397), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1406), 1, + STATE(1878), 1, sym_expression, - STATE(2385), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(696), 4, + ACTIONS(698), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(710), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1506), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52172,7 +50789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52189,56 +50806,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28654] = 21, - ACTIONS(606), 1, + [28636] = 21, + ACTIONS(692), 1, sym_identifier, - ACTIONS(608), 1, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(628), 1, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(630), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(914), 1, - anon_sym_STAR, - ACTIONS(920), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(922), 1, + ACTIONS(966), 1, anon_sym_lambda, - STATE(1032), 1, + ACTIONS(1154), 1, + anon_sym_STAR, + STATE(1062), 1, sym_string, - STATE(1033), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1967), 1, + STATE(1840), 1, sym_expression, - STATE(2363), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(618), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(612), 4, + ACTIONS(698), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(626), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1343), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52246,7 +50863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1341), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52263,56 +50880,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28749] = 21, - ACTIONS(690), 1, - sym_identifier, + [28731] = 21, ACTIONS(692), 1, + sym_identifier, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, ACTIONS(700), 1, + anon_sym_LBRACK, + ACTIONS(702), 1, anon_sym_not, - ACTIONS(704), 1, + ACTIONS(706), 1, anon_sym_lambda, - ACTIONS(708), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(712), 1, - anon_sym_await, ACTIONS(714), 1, + anon_sym_await, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1098), 1, + ACTIONS(1154), 1, anon_sym_STAR, - STATE(1058), 1, + STATE(1062), 1, sym_string, - STATE(1059), 1, + STATE(1102), 1, sym_primary_expression, - STATE(1397), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1403), 1, + STATE(1478), 1, sym_expression, - STATE(2385), 1, + STATE(2380), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(696), 4, + ACTIONS(698), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(710), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1506), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52320,7 +50937,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52337,34 +50954,34 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28844] = 21, + [28826] = 21, + ACTIONS(63), 1, + anon_sym_not, + ACTIONS(67), 1, + anon_sym_lambda, ACTIONS(73), 1, anon_sym_LBRACE, ACTIONS(79), 1, sym_string_start, - ACTIONS(266), 1, + ACTIONS(270), 1, sym_identifier, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_await, - ACTIONS(302), 1, + ACTIONS(334), 1, anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(338), 1, anon_sym_LBRACK, - ACTIONS(308), 1, - anon_sym_not, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(1160), 1, + ACTIONS(1148), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(977), 1, sym_string, - STATE(1046), 1, + STATE(982), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1295), 1, sym_list_splat_pattern, - STATE(1330), 1, + STATE(1730), 1, sym_expression, - STATE(2411), 1, + STATE(2495), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -52381,12 +50998,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(281), 4, + ACTIONS(285), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1329), 7, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52394,7 +51011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52411,56 +51028,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28939] = 21, - ACTIONS(716), 1, + [28921] = 21, + ACTIONS(612), 1, sym_identifier, - ACTIONS(718), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(738), 1, + ACTIONS(634), 1, anon_sym_await, - ACTIONS(740), 1, + ACTIONS(636), 1, sym_string_start, - ACTIONS(954), 1, + ACTIONS(754), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(756), 1, anon_sym_lambda, - ACTIONS(1168), 1, + ACTIONS(1090), 1, anon_sym_STAR, - STATE(1152), 1, - sym_primary_expression, - STATE(1157), 1, + STATE(975), 1, sym_string, - STATE(1516), 1, + STATE(976), 1, + sym_primary_expression, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1951), 1, + STATE(1719), 1, sym_expression, - STATE(2406), 1, + STATE(2333), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(722), 4, + ACTIONS(618), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 4, + ACTIONS(632), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1606), 7, + STATE(1262), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52468,7 +51085,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52485,56 +51102,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29034] = 21, - ACTIONS(690), 1, + [29016] = 21, + ACTIONS(638), 1, sym_identifier, - ACTIONS(692), 1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(700), 1, - anon_sym_not, - ACTIONS(704), 1, - anon_sym_lambda, - ACTIONS(708), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(712), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(714), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(1098), 1, + ACTIONS(804), 1, + anon_sym_not, + ACTIONS(806), 1, + anon_sym_lambda, + ACTIONS(1084), 1, anon_sym_STAR, - STATE(1058), 1, - sym_string, - STATE(1059), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1397), 1, + STATE(1036), 1, + sym_string, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1452), 1, + STATE(1749), 1, sym_expression, - STATE(2385), 1, + STATE(2436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(696), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(710), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1506), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52542,7 +51159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52559,56 +51176,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29129] = 21, - ACTIONS(690), 1, + [29111] = 21, + ACTIONS(579), 1, sym_identifier, - ACTIONS(692), 1, + ACTIONS(581), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(700), 1, + ACTIONS(589), 1, anon_sym_not, - ACTIONS(704), 1, + ACTIONS(593), 1, anon_sym_lambda, - ACTIONS(708), 1, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(712), 1, + ACTIONS(601), 1, anon_sym_await, - ACTIONS(714), 1, + ACTIONS(603), 1, sym_string_start, - ACTIONS(1098), 1, + ACTIONS(890), 1, anon_sym_STAR, - STATE(1058), 1, - sym_string, - STATE(1059), 1, + STATE(971), 1, sym_primary_expression, - STATE(1397), 1, - sym_list_splat_pattern, - STATE(1402), 1, + STATE(984), 1, + sym_string, + STATE(1126), 1, sym_expression, - STATE(2385), 1, + STATE(1164), 1, + sym_list_splat_pattern, + STATE(2375), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(696), 4, + ACTIONS(585), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(710), 4, + ACTIONS(599), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1506), 7, + STATE(1195), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52616,7 +51233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52633,56 +51250,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29224] = 21, - ACTIONS(690), 1, - sym_identifier, + [29206] = 21, ACTIONS(692), 1, + sym_identifier, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, ACTIONS(700), 1, - anon_sym_not, - ACTIONS(704), 1, - anon_sym_lambda, - ACTIONS(708), 1, + anon_sym_LBRACK, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(712), 1, - anon_sym_await, ACTIONS(714), 1, + anon_sym_await, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1098), 1, + ACTIONS(964), 1, + anon_sym_not, + ACTIONS(966), 1, + anon_sym_lambda, + ACTIONS(1154), 1, anon_sym_STAR, - STATE(1058), 1, + STATE(1062), 1, sym_string, - STATE(1059), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1397), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1400), 1, + STATE(1879), 1, sym_expression, - STATE(2385), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(696), 4, + ACTIONS(698), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(710), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1506), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52690,7 +51307,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52707,56 +51324,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29319] = 21, - ACTIONS(690), 1, + [29301] = 21, + ACTIONS(638), 1, sym_identifier, - ACTIONS(692), 1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(700), 1, - anon_sym_not, - ACTIONS(704), 1, - anon_sym_lambda, - ACTIONS(708), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(712), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(714), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(1098), 1, + ACTIONS(804), 1, + anon_sym_not, + ACTIONS(806), 1, + anon_sym_lambda, + ACTIONS(1084), 1, anon_sym_STAR, - STATE(1058), 1, - sym_string, - STATE(1059), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1396), 1, - sym_expression, - STATE(1397), 1, + STATE(1036), 1, + sym_string, + STATE(1304), 1, sym_list_splat_pattern, - STATE(2385), 1, + STATE(1772), 1, + sym_expression, + STATE(2436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(696), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(710), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1506), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52764,7 +51381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52781,130 +51398,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29414] = 21, - ACTIONS(632), 1, - sym_identifier, - ACTIONS(634), 1, - anon_sym_LPAREN, - ACTIONS(640), 1, - anon_sym_LBRACK, - ACTIONS(642), 1, + [29396] = 21, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(646), 1, + ACTIONS(67), 1, anon_sym_lambda, - ACTIONS(650), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(654), 1, - anon_sym_await, - ACTIONS(656), 1, + ACTIONS(79), 1, sym_string_start, - ACTIONS(1138), 1, + ACTIONS(270), 1, + sym_identifier, + ACTIONS(304), 1, + anon_sym_await, + ACTIONS(334), 1, + anon_sym_LPAREN, + ACTIONS(338), 1, + anon_sym_LBRACK, + ACTIONS(1148), 1, anon_sym_STAR, - STATE(1037), 1, + STATE(977), 1, sym_string, - STATE(1045), 1, + STATE(982), 1, sym_primary_expression, - STATE(1185), 1, - sym_expression, - STATE(1338), 1, + STATE(1295), 1, sym_list_splat_pattern, - STATE(2390), 1, + STATE(1732), 1, + sym_expression, + STATE(2495), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(638), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(652), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1278), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1277), 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, - [29509] = 21, - ACTIONS(632), 1, - sym_identifier, - ACTIONS(634), 1, - anon_sym_LPAREN, - ACTIONS(640), 1, - anon_sym_LBRACK, - ACTIONS(642), 1, - anon_sym_not, - ACTIONS(646), 1, - anon_sym_lambda, - ACTIONS(650), 1, - anon_sym_LBRACE, - ACTIONS(654), 1, - anon_sym_await, - ACTIONS(656), 1, - sym_string_start, - ACTIONS(1138), 1, - anon_sym_STAR, - STATE(1037), 1, - sym_string, - STATE(1045), 1, - sym_primary_expression, - STATE(1195), 1, - sym_expression, - STATE(1338), 1, - sym_list_splat_pattern, - STATE(2390), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(648), 2, - sym_ellipsis, - sym_float, - ACTIONS(644), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(638), 4, + ACTIONS(285), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(652), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1278), 7, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52912,7 +51455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1277), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52929,34 +51472,34 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29604] = 21, + [29491] = 21, + ACTIONS(63), 1, + anon_sym_not, + ACTIONS(67), 1, + anon_sym_lambda, ACTIONS(73), 1, anon_sym_LBRACE, ACTIONS(79), 1, sym_string_start, - ACTIONS(266), 1, + ACTIONS(270), 1, sym_identifier, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_await, - ACTIONS(302), 1, + ACTIONS(334), 1, anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(338), 1, anon_sym_LBRACK, - ACTIONS(308), 1, - anon_sym_not, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(1160), 1, + ACTIONS(1148), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(977), 1, sym_string, - STATE(1046), 1, + STATE(982), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1295), 1, sym_list_splat_pattern, - STATE(1352), 1, + STATE(1784), 1, sym_expression, - STATE(2411), 1, + STATE(2495), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -52973,12 +51516,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(281), 4, + ACTIONS(285), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1329), 7, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52986,7 +51529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53003,56 +51546,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29699] = 21, - ACTIONS(63), 1, + [29586] = 21, + ACTIONS(306), 1, + sym_identifier, + ACTIONS(308), 1, + anon_sym_LPAREN, + ACTIONS(314), 1, + anon_sym_LBRACK, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(67), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(266), 1, - sym_identifier, - ACTIONS(300), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(302), 1, - anon_sym_LPAREN, - ACTIONS(306), 1, - anon_sym_LBRACK, - ACTIONS(1160), 1, + ACTIONS(332), 1, + sym_string_start, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1034), 1, - sym_string, - STATE(1036), 1, + STATE(994), 1, sym_primary_expression, - STATE(1172), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1866), 1, + STATE(1950), 1, sym_expression, - STATE(2504), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(75), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(281), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1329), 7, + ACTIONS(328), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53060,7 +51603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53077,56 +51620,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29794] = 21, - ACTIONS(314), 1, + [29681] = 21, + ACTIONS(579), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(581), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(589), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(593), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(601), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(603), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(890), 1, anon_sym_STAR, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(971), 1, sym_primary_expression, - STATE(1366), 1, - sym_list_splat_pattern, - STATE(2018), 1, + STATE(984), 1, + sym_string, + STATE(1111), 1, sym_expression, - STATE(2379), 1, + STATE(1164), 1, + sym_list_splat_pattern, + STATE(2375), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(585), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(599), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1195), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53134,7 +51677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53151,34 +51694,34 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29889] = 21, + [29776] = 21, + ACTIONS(63), 1, + anon_sym_not, + ACTIONS(67), 1, + anon_sym_lambda, ACTIONS(73), 1, anon_sym_LBRACE, ACTIONS(79), 1, sym_string_start, - ACTIONS(266), 1, + ACTIONS(270), 1, sym_identifier, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_await, - ACTIONS(302), 1, + ACTIONS(334), 1, anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(338), 1, anon_sym_LBRACK, - ACTIONS(308), 1, - anon_sym_not, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(1160), 1, + ACTIONS(1148), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(977), 1, sym_string, - STATE(1046), 1, + STATE(982), 1, sym_primary_expression, - STATE(1172), 1, - sym_list_splat_pattern, - STATE(1204), 1, + STATE(1242), 1, sym_expression, - STATE(2411), 1, + STATE(1295), 1, + sym_list_splat_pattern, + STATE(2495), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -53195,12 +51738,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(281), 4, + ACTIONS(285), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1329), 7, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53208,7 +51751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53225,56 +51768,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29984] = 21, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(266), 1, + [29871] = 21, + ACTIONS(579), 1, sym_identifier, - ACTIONS(300), 1, - anon_sym_await, - ACTIONS(302), 1, + ACTIONS(581), 1, anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(308), 1, + ACTIONS(589), 1, anon_sym_not, - ACTIONS(312), 1, + ACTIONS(593), 1, anon_sym_lambda, - ACTIONS(1160), 1, + ACTIONS(597), 1, + anon_sym_LBRACE, + ACTIONS(601), 1, + anon_sym_await, + ACTIONS(603), 1, + sym_string_start, + ACTIONS(890), 1, anon_sym_STAR, - STATE(1034), 1, - sym_string, - STATE(1046), 1, + STATE(971), 1, sym_primary_expression, - STATE(1172), 1, - sym_list_splat_pattern, - STATE(1350), 1, + STATE(984), 1, + sym_string, + STATE(1108), 1, sym_expression, - STATE(2411), 1, + STATE(1164), 1, + sym_list_splat_pattern, + STATE(2375), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(75), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(281), 4, + ACTIONS(585), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1329), 7, + ACTIONS(599), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1195), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53282,7 +51825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53299,56 +51842,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30079] = 21, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(266), 1, + [29966] = 21, + ACTIONS(579), 1, sym_identifier, - ACTIONS(300), 1, - anon_sym_await, - ACTIONS(302), 1, + ACTIONS(581), 1, anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(308), 1, + ACTIONS(589), 1, anon_sym_not, - ACTIONS(312), 1, + ACTIONS(593), 1, anon_sym_lambda, - ACTIONS(1160), 1, + ACTIONS(597), 1, + anon_sym_LBRACE, + ACTIONS(601), 1, + anon_sym_await, + ACTIONS(603), 1, + sym_string_start, + ACTIONS(890), 1, anon_sym_STAR, - STATE(1034), 1, - sym_string, - STATE(1046), 1, + STATE(971), 1, sym_primary_expression, - STATE(1172), 1, - sym_list_splat_pattern, - STATE(1348), 1, + STATE(984), 1, + sym_string, + STATE(1116), 1, sym_expression, - STATE(2411), 1, + STATE(1164), 1, + sym_list_splat_pattern, + STATE(2375), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(75), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(281), 4, + ACTIONS(585), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1329), 7, + ACTIONS(599), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1195), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53356,7 +51899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53373,56 +51916,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30174] = 21, - ACTIONS(63), 1, + [30061] = 21, + ACTIONS(579), 1, + sym_identifier, + ACTIONS(581), 1, + anon_sym_LPAREN, + ACTIONS(587), 1, + anon_sym_LBRACK, + ACTIONS(589), 1, anon_sym_not, - ACTIONS(67), 1, + ACTIONS(593), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(266), 1, - sym_identifier, - ACTIONS(300), 1, + ACTIONS(601), 1, anon_sym_await, - ACTIONS(302), 1, - anon_sym_LPAREN, - ACTIONS(306), 1, - anon_sym_LBRACK, - ACTIONS(1160), 1, + ACTIONS(603), 1, + sym_string_start, + ACTIONS(890), 1, anon_sym_STAR, - STATE(1034), 1, - sym_string, - STATE(1036), 1, + STATE(971), 1, sym_primary_expression, - STATE(1172), 1, - sym_list_splat_pattern, - STATE(1204), 1, + STATE(984), 1, + sym_string, + STATE(1109), 1, sym_expression, - STATE(2504), 1, + STATE(1164), 1, + sym_list_splat_pattern, + STATE(2375), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(75), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(281), 4, + ACTIONS(585), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1329), 7, + ACTIONS(599), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1195), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53430,7 +51973,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53447,56 +51990,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30269] = 21, - ACTIONS(658), 1, + [30156] = 21, + ACTIONS(579), 1, sym_identifier, - ACTIONS(660), 1, + ACTIONS(581), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(589), 1, + anon_sym_not, + ACTIONS(593), 1, + anon_sym_lambda, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(601), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(603), 1, sym_string_start, - ACTIONS(818), 1, - anon_sym_not, - ACTIONS(820), 1, - anon_sym_lambda, - ACTIONS(1108), 1, + ACTIONS(890), 1, anon_sym_STAR, - STATE(1095), 1, - sym_string, - STATE(1101), 1, + STATE(971), 1, sym_primary_expression, - STATE(1407), 1, - sym_list_splat_pattern, - STATE(1815), 1, + STATE(984), 1, + sym_string, + STATE(1114), 1, sym_expression, - STATE(2489), 1, + STATE(1164), 1, + sym_list_splat_pattern, + STATE(2375), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, + ACTIONS(585), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(680), 4, + ACTIONS(599), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + STATE(1195), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53504,7 +52047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53521,56 +52064,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30364] = 21, - ACTIONS(632), 1, + [30251] = 21, + ACTIONS(579), 1, sym_identifier, - ACTIONS(634), 1, + ACTIONS(581), 1, anon_sym_LPAREN, - ACTIONS(640), 1, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(642), 1, + ACTIONS(589), 1, anon_sym_not, - ACTIONS(646), 1, + ACTIONS(593), 1, anon_sym_lambda, - ACTIONS(650), 1, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(601), 1, anon_sym_await, - ACTIONS(656), 1, + ACTIONS(603), 1, sym_string_start, - ACTIONS(1138), 1, + ACTIONS(890), 1, anon_sym_STAR, - STATE(1037), 1, - sym_string, - STATE(1045), 1, + STATE(971), 1, sym_primary_expression, - STATE(1196), 1, + STATE(984), 1, + sym_string, + STATE(1119), 1, sym_expression, - STATE(1338), 1, + STATE(1164), 1, sym_list_splat_pattern, - STATE(2390), 1, + STATE(2375), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(638), 4, + ACTIONS(585), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(652), 4, + ACTIONS(599), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1278), 7, + STATE(1195), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53578,7 +52121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1277), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53595,7 +52138,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30459] = 21, + [30346] = 21, ACTIONS(63), 1, anon_sym_not, ACTIONS(67), 1, @@ -53604,25 +52147,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(79), 1, sym_string_start, - ACTIONS(266), 1, + ACTIONS(270), 1, sym_identifier, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_await, - ACTIONS(302), 1, + ACTIONS(334), 1, anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(338), 1, anon_sym_LBRACK, - ACTIONS(1160), 1, + ACTIONS(1148), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(977), 1, sym_string, - STATE(1036), 1, + STATE(982), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1295), 1, sym_list_splat_pattern, - STATE(1816), 1, + STATE(1727), 1, sym_expression, - STATE(2504), 1, + STATE(2495), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -53639,12 +52182,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(281), 4, + ACTIONS(285), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1329), 7, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53652,7 +52195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53669,56 +52212,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30554] = 21, - ACTIONS(716), 1, + [30441] = 21, + ACTIONS(612), 1, sym_identifier, - ACTIONS(718), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(622), 1, + anon_sym_not, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(738), 1, + ACTIONS(634), 1, anon_sym_await, - ACTIONS(740), 1, + ACTIONS(636), 1, sym_string_start, - ACTIONS(954), 1, - anon_sym_not, - ACTIONS(956), 1, - anon_sym_lambda, - ACTIONS(1168), 1, + ACTIONS(1090), 1, anon_sym_STAR, - STATE(1152), 1, - sym_primary_expression, - STATE(1157), 1, + STATE(975), 1, sym_string, - STATE(1516), 1, - sym_list_splat_pattern, - STATE(1959), 1, + STATE(981), 1, + sym_primary_expression, + STATE(1129), 1, sym_expression, - STATE(2406), 1, + STATE(1238), 1, + sym_list_splat_pattern, + STATE(2370), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(722), 4, + ACTIONS(618), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 4, + ACTIONS(632), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1606), 7, + STATE(1262), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53726,7 +52269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53743,56 +52286,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30649] = 21, - ACTIONS(314), 1, + [30536] = 21, + ACTIONS(692), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(324), 1, - anon_sym_not, - ACTIONS(330), 1, - anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(964), 1, + anon_sym_not, + ACTIONS(966), 1, + anon_sym_lambda, + ACTIONS(1154), 1, anon_sym_STAR, - STATE(1071), 1, + STATE(1062), 1, sym_string, - STATE(1079), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1936), 1, + STATE(1804), 1, sym_expression, - STATE(2379), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(698), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53800,7 +52343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53817,56 +52360,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30744] = 21, - ACTIONS(716), 1, + [30631] = 21, + ACTIONS(666), 1, sym_identifier, - ACTIONS(718), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(738), 1, + ACTIONS(688), 1, anon_sym_await, - ACTIONS(740), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(954), 1, + ACTIONS(774), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(776), 1, anon_sym_lambda, - ACTIONS(1168), 1, + ACTIONS(1114), 1, anon_sym_STAR, - STATE(1152), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1157), 1, + STATE(1012), 1, sym_string, - STATE(1516), 1, + STATE(1381), 1, sym_list_splat_pattern, - STATE(1947), 1, + STATE(1775), 1, sym_expression, - STATE(2406), 1, + STATE(2387), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(722), 4, + ACTIONS(672), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1606), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53874,7 +52417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53891,56 +52434,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30839] = 21, - ACTIONS(632), 1, - sym_identifier, - ACTIONS(634), 1, - anon_sym_LPAREN, - ACTIONS(640), 1, - anon_sym_LBRACK, - ACTIONS(642), 1, + [30726] = 21, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(646), 1, + ACTIONS(67), 1, anon_sym_lambda, - ACTIONS(650), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(654), 1, - anon_sym_await, - ACTIONS(656), 1, + ACTIONS(79), 1, sym_string_start, - ACTIONS(1138), 1, + ACTIONS(270), 1, + sym_identifier, + ACTIONS(304), 1, + anon_sym_await, + ACTIONS(334), 1, + anon_sym_LPAREN, + ACTIONS(338), 1, + anon_sym_LBRACK, + ACTIONS(1148), 1, anon_sym_STAR, - STATE(1037), 1, + STATE(977), 1, sym_string, - STATE(1045), 1, + STATE(982), 1, sym_primary_expression, - STATE(1338), 1, + STATE(1295), 1, sym_list_splat_pattern, - STATE(1342), 1, + STATE(1812), 1, sym_expression, - STATE(2390), 1, + STATE(2495), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(638), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(652), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1278), 7, + ACTIONS(285), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53948,7 +52491,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1277), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53965,56 +52508,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30934] = 21, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(266), 1, + [30821] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(300), 1, - anon_sym_await, - ACTIONS(302), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(308), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(312), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(1160), 1, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(330), 1, + anon_sym_await, + ACTIONS(332), 1, + sym_string_start, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1034), 1, - sym_string, - STATE(1046), 1, + STATE(994), 1, sym_primary_expression, - STATE(1172), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1347), 1, + STATE(1942), 1, sym_expression, - STATE(2411), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(75), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(281), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1329), 7, + ACTIONS(328), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54022,7 +52565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54039,56 +52582,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31029] = 21, - ACTIONS(632), 1, + [30916] = 21, + ACTIONS(612), 1, sym_identifier, - ACTIONS(634), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(640), 1, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(642), 1, - anon_sym_not, - ACTIONS(646), 1, - anon_sym_lambda, - ACTIONS(650), 1, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(634), 1, anon_sym_await, - ACTIONS(656), 1, + ACTIONS(636), 1, sym_string_start, - ACTIONS(1138), 1, + ACTIONS(754), 1, + anon_sym_not, + ACTIONS(756), 1, + anon_sym_lambda, + ACTIONS(1090), 1, anon_sym_STAR, - STATE(1037), 1, + STATE(975), 1, sym_string, - STATE(1045), 1, + STATE(976), 1, sym_primary_expression, - STATE(1197), 1, - sym_expression, - STATE(1338), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(2390), 1, + STATE(1731), 1, + sym_expression, + STATE(2333), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(638), 4, + ACTIONS(618), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(652), 4, + ACTIONS(632), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1278), 7, + STATE(1262), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54096,7 +52639,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1277), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54113,56 +52656,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31124] = 21, - ACTIONS(632), 1, + [31011] = 21, + ACTIONS(638), 1, sym_identifier, - ACTIONS(634), 1, - anon_sym_LPAREN, ACTIONS(640), 1, - anon_sym_LBRACK, - ACTIONS(642), 1, - anon_sym_not, + anon_sym_LPAREN, ACTIONS(646), 1, - anon_sym_lambda, - ACTIONS(650), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(656), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(1138), 1, + ACTIONS(804), 1, + anon_sym_not, + ACTIONS(806), 1, + anon_sym_lambda, + ACTIONS(1084), 1, anon_sym_STAR, - STATE(1037), 1, - sym_string, - STATE(1045), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1198), 1, - sym_expression, - STATE(1338), 1, + STATE(1036), 1, + sym_string, + STATE(1304), 1, sym_list_splat_pattern, - STATE(2390), 1, + STATE(1375), 1, + sym_expression, + STATE(2436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(638), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(652), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1278), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54170,7 +52713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1277), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54187,56 +52730,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31219] = 21, - ACTIONS(632), 1, + [31106] = 21, + ACTIONS(638), 1, sym_identifier, - ACTIONS(634), 1, - anon_sym_LPAREN, ACTIONS(640), 1, - anon_sym_LBRACK, - ACTIONS(642), 1, - anon_sym_not, + anon_sym_LPAREN, ACTIONS(646), 1, - anon_sym_lambda, - ACTIONS(650), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(656), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(1138), 1, + ACTIONS(804), 1, + anon_sym_not, + ACTIONS(806), 1, + anon_sym_lambda, + ACTIONS(1084), 1, anon_sym_STAR, - STATE(1037), 1, - sym_string, - STATE(1045), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1199), 1, - sym_expression, - STATE(1338), 1, + STATE(1036), 1, + sym_string, + STATE(1304), 1, sym_list_splat_pattern, - STATE(2390), 1, + STATE(1769), 1, + sym_expression, + STATE(2436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(638), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(652), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1278), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54244,7 +52787,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1277), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54261,118 +52804,130 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31314] = 9, - ACTIONS(1342), 1, - anon_sym_else, - ACTIONS(1344), 1, - anon_sym_except, - ACTIONS(1346), 1, - anon_sym_finally, - STATE(750), 1, - sym_else_clause, - STATE(896), 1, - sym_finally_clause, + [31201] = 21, + ACTIONS(579), 1, + sym_identifier, + ACTIONS(581), 1, + anon_sym_LPAREN, + ACTIONS(587), 1, + anon_sym_LBRACK, + ACTIONS(597), 1, + anon_sym_LBRACE, + ACTIONS(601), 1, + anon_sym_await, + ACTIONS(603), 1, + sym_string_start, + ACTIONS(890), 1, + anon_sym_STAR, + ACTIONS(896), 1, + anon_sym_not, + ACTIONS(898), 1, + anon_sym_lambda, + STATE(983), 1, + sym_primary_expression, + STATE(984), 1, + sym_string, + STATE(1164), 1, + sym_list_splat_pattern, + STATE(1725), 1, + sym_expression, + STATE(2438), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(674), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1340), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(595), 2, + sym_ellipsis, + sym_float, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1338), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(585), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(599), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [31385] = 21, - ACTIONS(606), 1, + STATE(1195), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1196), 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, + [31296] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(608), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(616), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(620), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(624), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(628), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(630), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(914), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1032), 1, - sym_string, - STATE(1044), 1, + STATE(994), 1, sym_primary_expression, - STATE(1216), 1, - sym_expression, - STATE(1236), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(2395), 1, + STATE(1913), 1, + sym_expression, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(618), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(612), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(626), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1343), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54380,7 +52935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1341), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54397,59 +52952,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31480] = 22, - ACTIONS(744), 1, + [31391] = 21, + ACTIONS(612), 1, + sym_identifier, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(766), 1, + ACTIONS(634), 1, + anon_sym_await, + ACTIONS(636), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(754), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(756), 1, anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1090), 1, anon_sym_STAR, - ACTIONS(1348), 1, - sym_identifier, - ACTIONS(1352), 1, - anon_sym_await, - STATE(1132), 1, + STATE(975), 1, sym_string, - STATE(1234), 1, + STATE(976), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1920), 1, + STATE(1724), 1, sym_expression, - STATE(2376), 1, + STATE(2333), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - STATE(1409), 2, - sym_attribute, - sym_subscript, - ACTIONS(754), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(762), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1350), 4, + ACTIONS(618), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1581), 7, + ACTIONS(632), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1262), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54457,9 +53009,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 14, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -54472,56 +53026,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31577] = 21, - ACTIONS(606), 1, + [31486] = 21, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(270), 1, sym_identifier, - ACTIONS(608), 1, + ACTIONS(304), 1, + anon_sym_await, + ACTIONS(334), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(338), 1, anon_sym_LBRACK, - ACTIONS(616), 1, + ACTIONS(340), 1, anon_sym_not, - ACTIONS(620), 1, + ACTIONS(344), 1, anon_sym_lambda, - ACTIONS(624), 1, - anon_sym_LBRACE, - ACTIONS(628), 1, - anon_sym_await, - ACTIONS(630), 1, - sym_string_start, - ACTIONS(914), 1, + ACTIONS(1148), 1, anon_sym_STAR, - STATE(1032), 1, - sym_string, - STATE(1044), 1, + STATE(974), 1, sym_primary_expression, - STATE(1221), 1, - sym_expression, - STATE(1236), 1, + STATE(977), 1, + sym_string, + STATE(1295), 1, sym_list_splat_pattern, - STATE(2395), 1, + STATE(1296), 1, + sym_expression, + STATE(2390), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(618), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(612), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(626), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1343), 7, + ACTIONS(285), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54529,7 +53083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1341), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54546,56 +53100,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31672] = 21, - ACTIONS(606), 1, + [31581] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(608), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(616), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(620), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(624), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(628), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(630), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(914), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1032), 1, - sym_string, - STATE(1044), 1, + STATE(994), 1, sym_primary_expression, - STATE(1225), 1, - sym_expression, - STATE(1236), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(2395), 1, + STATE(1746), 1, + sym_expression, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(618), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(612), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(626), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1343), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54603,7 +53157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1341), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54620,56 +53174,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31767] = 21, - ACTIONS(658), 1, + [31676] = 21, + ACTIONS(579), 1, sym_identifier, - ACTIONS(660), 1, + ACTIONS(581), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(601), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(603), 1, sym_string_start, - ACTIONS(818), 1, + ACTIONS(890), 1, + anon_sym_STAR, + ACTIONS(896), 1, anon_sym_not, - ACTIONS(820), 1, + ACTIONS(898), 1, anon_sym_lambda, - ACTIONS(1108), 1, - anon_sym_STAR, - STATE(1095), 1, - sym_string, - STATE(1101), 1, + STATE(983), 1, sym_primary_expression, - STATE(1394), 1, - sym_expression, - STATE(1407), 1, + STATE(984), 1, + sym_string, + STATE(1164), 1, sym_list_splat_pattern, - STATE(2489), 1, + STATE(1736), 1, + sym_expression, + STATE(2438), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, + ACTIONS(585), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(680), 4, + ACTIONS(599), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + STATE(1195), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54677,7 +53231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54694,118 +53248,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31862] = 9, - ACTIONS(1342), 1, - anon_sym_else, - ACTIONS(1346), 1, - anon_sym_finally, - ACTIONS(1354), 1, - anon_sym_except_STAR, - STATE(750), 1, - sym_else_clause, - STATE(896), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(676), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1340), 12, - sym__dedent, - sym_string_start, + [31771] = 21, + ACTIONS(612), 1, + sym_identifier, + ACTIONS(614), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(620), 1, anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1338), 31, - 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_class, + ACTIONS(622), 1, anon_sym_not, + ACTIONS(626), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31933] = 21, - ACTIONS(658), 1, - sym_identifier, - ACTIONS(660), 1, - anon_sym_LPAREN, - ACTIONS(666), 1, - anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(634), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(636), 1, sym_string_start, - ACTIONS(818), 1, - anon_sym_not, - ACTIONS(820), 1, - anon_sym_lambda, - ACTIONS(1108), 1, + ACTIONS(1090), 1, anon_sym_STAR, - STATE(1095), 1, + STATE(975), 1, sym_string, - STATE(1101), 1, + STATE(981), 1, sym_primary_expression, - STATE(1407), 1, - sym_list_splat_pattern, - STATE(1839), 1, + STATE(1130), 1, sym_expression, - STATE(2489), 1, + STATE(1238), 1, + sym_list_splat_pattern, + STATE(2370), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, + ACTIONS(618), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(680), 4, + ACTIONS(632), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + STATE(1262), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54813,7 +53305,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54830,56 +53322,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32028] = 21, - ACTIONS(606), 1, + [31866] = 21, + ACTIONS(638), 1, sym_identifier, - ACTIONS(608), 1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(616), 1, - anon_sym_not, - ACTIONS(620), 1, - anon_sym_lambda, - ACTIONS(624), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(628), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(630), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(914), 1, + ACTIONS(804), 1, + anon_sym_not, + ACTIONS(806), 1, + anon_sym_lambda, + ACTIONS(1084), 1, anon_sym_STAR, - STATE(1032), 1, - sym_string, - STATE(1044), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1036), 1, + sym_string, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1252), 1, + STATE(1758), 1, sym_expression, - STATE(2395), 1, + STATE(2436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(618), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(612), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(626), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1343), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54887,7 +53379,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1341), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54904,180 +53396,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32123] = 9, - ACTIONS(1360), 1, - anon_sym_else, - ACTIONS(1362), 1, - anon_sym_except, - ACTIONS(1364), 1, - anon_sym_finally, - STATE(754), 1, - sym_else_clause, - STATE(878), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(665), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1356), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1358), 31, - 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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + [31961] = 21, + ACTIONS(306), 1, sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32194] = 9, - ACTIONS(1360), 1, - anon_sym_else, - ACTIONS(1364), 1, - anon_sym_finally, - ACTIONS(1366), 1, - anon_sym_except_STAR, - STATE(754), 1, - sym_else_clause, - STATE(878), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(667), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1356), 12, - sym_string_start, - ts_builtin_sym_end, + ACTIONS(308), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1358), 31, - 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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32265] = 21, ACTIONS(314), 1, - sym_identifier, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1458), 1, + STATE(1852), 1, sym_expression, - STATE(2379), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55085,7 +53453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55102,56 +53470,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32360] = 21, - ACTIONS(742), 1, + [32056] = 21, + ACTIONS(612), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(622), 1, + anon_sym_not, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(634), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(636), 1, sym_string_start, - ACTIONS(1126), 1, - anon_sym_not, - ACTIONS(1128), 1, - anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1090), 1, anon_sym_STAR, - STATE(1132), 1, + STATE(975), 1, sym_string, - STATE(1153), 1, + STATE(981), 1, sym_primary_expression, - STATE(1598), 1, - sym_list_splat_pattern, - STATE(1884), 1, + STATE(1134), 1, sym_expression, - STATE(2376), 1, + STATE(1238), 1, + sym_list_splat_pattern, + STATE(2370), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(618), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(632), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1262), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55159,7 +53527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55176,56 +53544,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32455] = 21, - ACTIONS(742), 1, + [32151] = 21, + ACTIONS(612), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(622), 1, + anon_sym_not, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(634), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(636), 1, sym_string_start, - ACTIONS(1126), 1, - anon_sym_not, - ACTIONS(1128), 1, - anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1090), 1, anon_sym_STAR, - STATE(1132), 1, + STATE(975), 1, sym_string, - STATE(1153), 1, + STATE(981), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1900), 1, + STATE(1252), 1, sym_expression, - STATE(2376), 1, + STATE(2370), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(618), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(632), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1262), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55233,7 +53601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55250,56 +53618,180 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32550] = 21, - ACTIONS(742), 1, - sym_identifier, - ACTIONS(744), 1, + [32246] = 9, + ACTIONS(1314), 1, + anon_sym_else, + ACTIONS(1316), 1, + anon_sym_except_STAR, + ACTIONS(1318), 1, + anon_sym_finally, + STATE(725), 1, + sym_else_clause, + STATE(790), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(644), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1312), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(750), 1, + anon_sym_STAR, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(760), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, anon_sym_LBRACE, - ACTIONS(764), 1, + sym_float, + ACTIONS(1310), 31, + 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_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(766), 1, + sym_true, + sym_false, + sym_none, + [32317] = 9, + ACTIONS(1314), 1, + anon_sym_else, + ACTIONS(1318), 1, + anon_sym_finally, + ACTIONS(1320), 1, + anon_sym_except, + STATE(725), 1, + sym_else_clause, + STATE(790), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(647), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1312), 12, + sym__dedent, sym_string_start, - ACTIONS(1126), 1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1310), 31, + 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_class, anon_sym_not, - ACTIONS(1128), 1, anon_sym_lambda, - ACTIONS(1172), 1, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32388] = 21, + ACTIONS(579), 1, + sym_identifier, + ACTIONS(581), 1, + anon_sym_LPAREN, + ACTIONS(587), 1, + anon_sym_LBRACK, + ACTIONS(597), 1, + anon_sym_LBRACE, + ACTIONS(601), 1, + anon_sym_await, + ACTIONS(603), 1, + sym_string_start, + ACTIONS(890), 1, anon_sym_STAR, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + ACTIONS(896), 1, + anon_sym_not, + ACTIONS(898), 1, + anon_sym_lambda, + STATE(983), 1, sym_primary_expression, - STATE(1598), 1, + STATE(984), 1, + sym_string, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1859), 1, + STATE(1729), 1, sym_expression, - STATE(2376), 1, + STATE(2438), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(585), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(599), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1195), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55307,7 +53799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55324,56 +53816,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32645] = 21, - ACTIONS(63), 1, + [32483] = 21, + ACTIONS(612), 1, + sym_identifier, + ACTIONS(614), 1, + anon_sym_LPAREN, + ACTIONS(620), 1, + anon_sym_LBRACK, + ACTIONS(622), 1, anon_sym_not, - ACTIONS(67), 1, + ACTIONS(626), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(266), 1, - sym_identifier, - ACTIONS(300), 1, + ACTIONS(634), 1, anon_sym_await, - ACTIONS(302), 1, - anon_sym_LPAREN, - ACTIONS(306), 1, - anon_sym_LBRACK, - ACTIONS(1160), 1, + ACTIONS(636), 1, + sym_string_start, + ACTIONS(1090), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(975), 1, sym_string, - STATE(1036), 1, + STATE(981), 1, sym_primary_expression, - STATE(1172), 1, - sym_list_splat_pattern, - STATE(1917), 1, + STATE(1141), 1, sym_expression, - STATE(2504), 1, + STATE(1238), 1, + sym_list_splat_pattern, + STATE(2370), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(75), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(281), 4, + ACTIONS(618), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1329), 7, + ACTIONS(632), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1262), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55381,7 +53873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55398,56 +53890,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32740] = 21, - ACTIONS(742), 1, + [32578] = 21, + ACTIONS(612), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(622), 1, + anon_sym_not, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(634), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(636), 1, sym_string_start, - ACTIONS(1126), 1, - anon_sym_not, - ACTIONS(1128), 1, - anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1090), 1, anon_sym_STAR, - STATE(1132), 1, + STATE(975), 1, sym_string, - STATE(1153), 1, + STATE(981), 1, sym_primary_expression, - STATE(1562), 1, + STATE(1143), 1, sym_expression, - STATE(1598), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(2376), 1, + STATE(2370), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(618), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(632), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1262), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55455,7 +53947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55472,56 +53964,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32835] = 21, - ACTIONS(742), 1, + [32673] = 21, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(270), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(304), 1, + anon_sym_await, + ACTIONS(334), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(338), 1, anon_sym_LBRACK, - ACTIONS(760), 1, - anon_sym_LBRACE, - ACTIONS(764), 1, - anon_sym_await, - ACTIONS(766), 1, - sym_string_start, - ACTIONS(1126), 1, + ACTIONS(340), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(344), 1, anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(1148), 1, anon_sym_STAR, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + STATE(974), 1, sym_primary_expression, - STATE(1598), 1, - sym_list_splat_pattern, - STATE(1877), 1, + STATE(977), 1, + sym_string, + STATE(1282), 1, sym_expression, - STATE(2376), 1, + STATE(1295), 1, + sym_list_splat_pattern, + STATE(2390), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + ACTIONS(285), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55529,7 +54021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55546,56 +54038,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32930] = 21, - ACTIONS(742), 1, + [32768] = 21, + ACTIONS(579), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(581), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(601), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(603), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(890), 1, + anon_sym_STAR, + ACTIONS(896), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(898), 1, anon_sym_lambda, - ACTIONS(1172), 1, - anon_sym_STAR, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + STATE(983), 1, sym_primary_expression, - STATE(1598), 1, - sym_list_splat_pattern, - STATE(1855), 1, + STATE(984), 1, + sym_string, + STATE(1116), 1, sym_expression, - STATE(2376), 1, + STATE(1164), 1, + sym_list_splat_pattern, + STATE(2438), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(585), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(599), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1195), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55603,7 +54095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55620,56 +54112,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33025] = 21, - ACTIONS(742), 1, + [32863] = 21, + ACTIONS(579), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(581), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(601), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(603), 1, sym_string_start, - ACTIONS(1126), 1, + ACTIONS(890), 1, + anon_sym_STAR, + ACTIONS(896), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(898), 1, anon_sym_lambda, - ACTIONS(1172), 1, - anon_sym_STAR, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + STATE(983), 1, sym_primary_expression, - STATE(1598), 1, + STATE(984), 1, + sym_string, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1856), 1, + STATE(1734), 1, sym_expression, - STATE(2376), 1, + STATE(2438), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(585), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(599), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1195), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55677,7 +54169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55694,56 +54186,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33120] = 21, - ACTIONS(606), 1, + [32958] = 21, + ACTIONS(638), 1, sym_identifier, - ACTIONS(608), 1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(616), 1, + ACTIONS(650), 1, anon_sym_not, - ACTIONS(620), 1, + ACTIONS(654), 1, anon_sym_lambda, - ACTIONS(624), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(628), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(630), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(914), 1, + ACTIONS(1084), 1, anon_sym_STAR, - STATE(1032), 1, - sym_string, - STATE(1044), 1, + STATE(1033), 1, sym_primary_expression, - STATE(1183), 1, - sym_expression, - STATE(1236), 1, + STATE(1036), 1, + sym_string, + STATE(1304), 1, sym_list_splat_pattern, - STATE(2395), 1, + STATE(1352), 1, + sym_expression, + STATE(2404), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(618), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(612), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(626), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1343), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55751,7 +54243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1341), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55768,56 +54260,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33215] = 21, - ACTIONS(314), 1, + [33053] = 21, + ACTIONS(579), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(581), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(324), 1, - anon_sym_not, - ACTIONS(330), 1, - anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(601), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(603), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(890), 1, anon_sym_STAR, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + ACTIONS(896), 1, + anon_sym_not, + ACTIONS(898), 1, + anon_sym_lambda, + STATE(983), 1, sym_primary_expression, - STATE(1366), 1, + STATE(984), 1, + sym_string, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1934), 1, + STATE(1891), 1, sym_expression, - STATE(2379), 1, + STATE(2438), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(585), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(599), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1195), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55825,7 +54317,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55842,56 +54334,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33310] = 21, - ACTIONS(606), 1, + [33148] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(608), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(616), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(620), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(624), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(628), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(630), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(914), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1032), 1, - sym_string, - STATE(1044), 1, + STATE(994), 1, sym_primary_expression, - STATE(1236), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1241), 1, + STATE(1935), 1, sym_expression, - STATE(2395), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(618), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(612), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(626), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1343), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55899,7 +54391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1341), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55916,56 +54408,180 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33405] = 21, - ACTIONS(742), 1, - sym_identifier, - ACTIONS(744), 1, + [33243] = 9, + ACTIONS(1322), 1, + anon_sym_else, + ACTIONS(1324), 1, + anon_sym_except, + ACTIONS(1326), 1, + anon_sym_finally, + STATE(736), 1, + sym_else_clause, + STATE(798), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(645), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1312), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(750), 1, + anon_sym_STAR, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(760), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, anon_sym_LBRACE, - ACTIONS(764), 1, + sym_float, + ACTIONS(1310), 31, + 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_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(766), 1, + sym_true, + sym_false, + sym_none, + [33314] = 9, + ACTIONS(1322), 1, + anon_sym_else, + ACTIONS(1326), 1, + anon_sym_finally, + ACTIONS(1328), 1, + anon_sym_except_STAR, + STATE(736), 1, + sym_else_clause, + STATE(798), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(646), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1312), 12, sym_string_start, - ACTIONS(1126), 1, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1310), 31, + 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_class, anon_sym_not, - ACTIONS(1128), 1, anon_sym_lambda, - ACTIONS(1172), 1, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [33385] = 21, + ACTIONS(612), 1, + sym_identifier, + ACTIONS(614), 1, + anon_sym_LPAREN, + ACTIONS(620), 1, + anon_sym_LBRACK, + ACTIONS(622), 1, + anon_sym_not, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(630), 1, + anon_sym_LBRACE, + ACTIONS(634), 1, + anon_sym_await, + ACTIONS(636), 1, + sym_string_start, + ACTIONS(1090), 1, anon_sym_STAR, - STATE(1132), 1, + STATE(975), 1, sym_string, - STATE(1153), 1, + STATE(981), 1, sym_primary_expression, - STATE(1596), 1, + STATE(1145), 1, sym_expression, - STATE(1598), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(2376), 1, + STATE(2370), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(618), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(632), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1262), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55973,7 +54589,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55990,56 +54606,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33500] = 21, - ACTIONS(716), 1, + [33480] = 21, + ACTIONS(579), 1, sym_identifier, - ACTIONS(718), 1, + ACTIONS(581), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(726), 1, - anon_sym_not, - ACTIONS(730), 1, - anon_sym_lambda, - ACTIONS(734), 1, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(738), 1, + ACTIONS(601), 1, anon_sym_await, - ACTIONS(740), 1, + ACTIONS(603), 1, sym_string_start, - ACTIONS(1168), 1, + ACTIONS(890), 1, anon_sym_STAR, - STATE(1104), 1, + ACTIONS(896), 1, + anon_sym_not, + ACTIONS(898), 1, + anon_sym_lambda, + STATE(983), 1, sym_primary_expression, - STATE(1157), 1, + STATE(984), 1, sym_string, - STATE(1516), 1, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1603), 1, + STATE(1735), 1, sym_expression, - STATE(2400), 1, + STATE(2438), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(722), 4, + ACTIONS(585), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 4, + ACTIONS(599), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1606), 7, + STATE(1195), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56047,7 +54663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56064,56 +54680,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33595] = 21, - ACTIONS(716), 1, + [33575] = 21, + ACTIONS(692), 1, sym_identifier, - ACTIONS(718), 1, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(726), 1, + ACTIONS(702), 1, anon_sym_not, - ACTIONS(730), 1, + ACTIONS(706), 1, anon_sym_lambda, - ACTIONS(734), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(738), 1, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(740), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1168), 1, + ACTIONS(1154), 1, anon_sym_STAR, - STATE(1104), 1, - sym_primary_expression, - STATE(1157), 1, + STATE(1062), 1, sym_string, - STATE(1516), 1, + STATE(1102), 1, + sym_primary_expression, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1599), 1, + STATE(1491), 1, sym_expression, - STATE(2400), 1, + STATE(2380), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(722), 4, + ACTIONS(698), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1606), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56121,7 +54737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56138,56 +54754,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33690] = 21, - ACTIONS(658), 1, + [33670] = 21, + ACTIONS(692), 1, sym_identifier, - ACTIONS(660), 1, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(818), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(820), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(1108), 1, + ACTIONS(1154), 1, anon_sym_STAR, - STATE(1095), 1, + STATE(1062), 1, sym_string, - STATE(1101), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1833), 1, + STATE(1485), 1, sym_expression, - STATE(2489), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, + ACTIONS(698), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(680), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56195,7 +54811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56212,56 +54828,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33785] = 21, - ACTIONS(314), 1, + [33765] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(334), 1, + ACTIONS(316), 1, + anon_sym_not, + ACTIONS(322), 1, + anon_sym_lambda, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(686), 1, - anon_sym_not, - ACTIONS(688), 1, - anon_sym_lambda, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1048), 1, + STATE(994), 1, sym_primary_expression, - STATE(1071), 1, + STATE(996), 1, sym_string, - STATE(1366), 1, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1430), 1, + STATE(1562), 1, sym_expression, - STATE(2366), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56269,7 +54885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56286,56 +54902,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33880] = 21, - ACTIONS(314), 1, + [33860] = 21, + ACTIONS(666), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(676), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(680), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(688), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1114), 1, anon_sym_STAR, - STATE(1071), 1, + STATE(1012), 1, sym_string, - STATE(1079), 1, + STATE(1034), 1, sym_primary_expression, - STATE(1366), 1, - sym_list_splat_pattern, - STATE(1985), 1, + STATE(1346), 1, sym_expression, - STATE(2379), 1, + STATE(1381), 1, + sym_list_splat_pattern, + STATE(2365), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(672), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56343,7 +54959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56360,7 +54976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33975] = 21, + [33955] = 21, ACTIONS(63), 1, anon_sym_not, ACTIONS(67), 1, @@ -56369,25 +54985,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(79), 1, sym_string_start, - ACTIONS(266), 1, + ACTIONS(270), 1, sym_identifier, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_await, - ACTIONS(302), 1, + ACTIONS(334), 1, anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(338), 1, anon_sym_LBRACK, - ACTIONS(1160), 1, + ACTIONS(1148), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(977), 1, sym_string, - STATE(1036), 1, + STATE(982), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1295), 1, sym_list_splat_pattern, - STATE(1827), 1, + STATE(1748), 1, sym_expression, - STATE(2504), 1, + STATE(2495), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -56404,12 +55020,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(281), 4, + ACTIONS(285), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1329), 7, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56417,7 +55033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56434,56 +55050,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34070] = 21, - ACTIONS(742), 1, + [34050] = 21, + ACTIONS(718), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(728), 1, + anon_sym_not, + ACTIONS(732), 1, + anon_sym_lambda, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1126), 1, - anon_sym_not, ACTIONS(1128), 1, - anon_sym_lambda, - ACTIONS(1172), 1, anon_sym_STAR, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + STATE(1093), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1933), 1, + STATE(1493), 1, sym_expression, - STATE(2376), 1, + STATE(2385), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56491,7 +55107,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56508,56 +55124,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34165] = 21, - ACTIONS(716), 1, + [34145] = 21, + ACTIONS(666), 1, sym_identifier, - ACTIONS(718), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(676), 1, + anon_sym_not, + ACTIONS(680), 1, + anon_sym_lambda, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(738), 1, + ACTIONS(688), 1, anon_sym_await, - ACTIONS(740), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(954), 1, - anon_sym_not, - ACTIONS(956), 1, - anon_sym_lambda, - ACTIONS(1168), 1, + ACTIONS(1114), 1, anon_sym_STAR, - STATE(1152), 1, - sym_primary_expression, - STATE(1157), 1, + STATE(1012), 1, sym_string, - STATE(1516), 1, - sym_list_splat_pattern, - STATE(1865), 1, + STATE(1034), 1, + sym_primary_expression, + STATE(1345), 1, sym_expression, - STATE(2406), 1, + STATE(1381), 1, + sym_list_splat_pattern, + STATE(2365), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(722), 4, + ACTIONS(672), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1606), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56565,7 +55181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56582,56 +55198,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34260] = 21, - ACTIONS(716), 1, + [34240] = 21, + ACTIONS(666), 1, sym_identifier, - ACTIONS(718), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(676), 1, + anon_sym_not, + ACTIONS(680), 1, + anon_sym_lambda, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(738), 1, + ACTIONS(688), 1, anon_sym_await, - ACTIONS(740), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(954), 1, - anon_sym_not, - ACTIONS(956), 1, - anon_sym_lambda, - ACTIONS(1168), 1, + ACTIONS(1114), 1, anon_sym_STAR, - STATE(1152), 1, - sym_primary_expression, - STATE(1157), 1, + STATE(1012), 1, sym_string, - STATE(1516), 1, - sym_list_splat_pattern, - STATE(1860), 1, + STATE(1034), 1, + sym_primary_expression, + STATE(1340), 1, sym_expression, - STATE(2406), 1, + STATE(1381), 1, + sym_list_splat_pattern, + STATE(2365), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(722), 4, + ACTIONS(672), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1606), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56639,7 +55255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56656,56 +55272,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34355] = 21, - ACTIONS(716), 1, + [34335] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(718), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(726), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(730), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(734), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(738), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(740), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1168), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1104), 1, + STATE(994), 1, sym_primary_expression, - STATE(1157), 1, + STATE(996), 1, sym_string, - STATE(1516), 1, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1585), 1, + STATE(1909), 1, sym_expression, - STATE(2400), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(722), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1606), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56713,7 +55329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56730,56 +55346,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34450] = 21, - ACTIONS(716), 1, + [34430] = 21, + ACTIONS(63), 1, + anon_sym_not, + ACTIONS(67), 1, + anon_sym_lambda, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(270), 1, sym_identifier, - ACTIONS(718), 1, + ACTIONS(304), 1, + anon_sym_await, + ACTIONS(334), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(338), 1, anon_sym_LBRACK, - ACTIONS(734), 1, - anon_sym_LBRACE, - ACTIONS(738), 1, - anon_sym_await, - ACTIONS(740), 1, - sym_string_start, - ACTIONS(954), 1, - anon_sym_not, - ACTIONS(956), 1, - anon_sym_lambda, - ACTIONS(1168), 1, + ACTIONS(1148), 1, anon_sym_STAR, - STATE(1152), 1, - sym_primary_expression, - STATE(1157), 1, + STATE(977), 1, sym_string, - STATE(1516), 1, + STATE(982), 1, + sym_primary_expression, + STATE(1295), 1, sym_list_splat_pattern, - STATE(1538), 1, + STATE(1850), 1, sym_expression, - STATE(2406), 1, + STATE(2495), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(722), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(736), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1606), 7, + ACTIONS(285), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56787,7 +55403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56804,56 +55420,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34545] = 21, - ACTIONS(716), 1, + [34525] = 21, + ACTIONS(612), 1, sym_identifier, - ACTIONS(718), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(738), 1, + ACTIONS(634), 1, anon_sym_await, - ACTIONS(740), 1, + ACTIONS(636), 1, sym_string_start, - ACTIONS(954), 1, + ACTIONS(754), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(756), 1, anon_sym_lambda, - ACTIONS(1168), 1, + ACTIONS(1090), 1, anon_sym_STAR, - STATE(1152), 1, - sym_primary_expression, - STATE(1157), 1, + STATE(975), 1, sym_string, - STATE(1516), 1, + STATE(976), 1, + sym_primary_expression, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(1718), 1, sym_expression, - STATE(2406), 1, + STATE(2333), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(722), 4, + ACTIONS(618), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 4, + ACTIONS(632), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1606), 7, + STATE(1262), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56861,7 +55477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56878,56 +55494,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34640] = 21, - ACTIONS(716), 1, + [34620] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(718), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(726), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(730), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(734), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(738), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(740), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1168), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1104), 1, + STATE(994), 1, sym_primary_expression, - STATE(1157), 1, + STATE(996), 1, sym_string, - STATE(1516), 1, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1538), 1, + STATE(1876), 1, sym_expression, - STATE(2400), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(722), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1606), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56935,7 +55551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56952,56 +55568,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34735] = 21, - ACTIONS(716), 1, + [34715] = 21, + ACTIONS(666), 1, sym_identifier, - ACTIONS(718), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(676), 1, + anon_sym_not, + ACTIONS(680), 1, + anon_sym_lambda, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(738), 1, + ACTIONS(688), 1, anon_sym_await, - ACTIONS(740), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(954), 1, - anon_sym_not, - ACTIONS(956), 1, - anon_sym_lambda, - ACTIONS(1168), 1, + ACTIONS(1114), 1, anon_sym_STAR, - STATE(1152), 1, - sym_primary_expression, - STATE(1157), 1, + STATE(1012), 1, sym_string, - STATE(1516), 1, - sym_list_splat_pattern, - STATE(1871), 1, + STATE(1034), 1, + sym_primary_expression, + STATE(1348), 1, sym_expression, - STATE(2406), 1, + STATE(1381), 1, + sym_list_splat_pattern, + STATE(2365), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(722), 4, + ACTIONS(672), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1606), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57009,7 +55625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57026,56 +55642,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34830] = 21, - ACTIONS(314), 1, + [34810] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, - anon_sym_not, - ACTIONS(330), 1, - anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(608), 1, + anon_sym_not, + ACTIONS(610), 1, + anon_sym_lambda, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1071), 1, + STATE(996), 1, sym_string, - STATE(1079), 1, + STATE(1032), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1981), 1, + STATE(1430), 1, sym_expression, - STATE(2379), 1, + STATE(2338), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57083,7 +55699,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57100,56 +55716,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34925] = 21, - ACTIONS(314), 1, + [34905] = 21, + ACTIONS(718), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(334), 1, + ACTIONS(728), 1, + anon_sym_not, + ACTIONS(732), 1, + anon_sym_lambda, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(686), 1, - anon_sym_not, - ACTIONS(688), 1, - anon_sym_lambda, - ACTIONS(1204), 1, + ACTIONS(1128), 1, anon_sym_STAR, - STATE(1048), 1, + STATE(1093), 1, sym_primary_expression, - STATE(1071), 1, + STATE(1099), 1, sym_string, - STATE(1366), 1, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1432), 1, + STATE(1494), 1, sym_expression, - STATE(2366), 1, + STATE(2385), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57157,7 +55773,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57174,118 +55790,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35020] = 9, - ACTIONS(1342), 1, - anon_sym_else, - ACTIONS(1344), 1, - anon_sym_except, - ACTIONS(1346), 1, - anon_sym_finally, - STATE(770), 1, - sym_else_clause, - STATE(891), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(674), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1356), 12, - sym__dedent, - sym_string_start, + [35000] = 21, + ACTIONS(666), 1, + sym_identifier, + ACTIONS(668), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(674), 1, anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1358), 31, - 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_class, + ACTIONS(676), 1, anon_sym_not, + ACTIONS(680), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [35091] = 21, - ACTIONS(716), 1, - sym_identifier, - ACTIONS(718), 1, - anon_sym_LPAREN, - ACTIONS(724), 1, - anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(738), 1, + ACTIONS(688), 1, anon_sym_await, - ACTIONS(740), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(954), 1, - anon_sym_not, - ACTIONS(956), 1, - anon_sym_lambda, - ACTIONS(1168), 1, + ACTIONS(1114), 1, anon_sym_STAR, - STATE(1152), 1, - sym_primary_expression, - STATE(1157), 1, + STATE(1012), 1, sym_string, - STATE(1516), 1, - sym_list_splat_pattern, - STATE(1887), 1, + STATE(1034), 1, + sym_primary_expression, + STATE(1333), 1, sym_expression, - STATE(2406), 1, + STATE(1381), 1, + sym_list_splat_pattern, + STATE(2365), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(722), 4, + ACTIONS(672), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1606), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57293,7 +55847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57310,56 +55864,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35186] = 21, - ACTIONS(716), 1, + [35095] = 21, + ACTIONS(666), 1, sym_identifier, - ACTIONS(718), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(726), 1, + ACTIONS(676), 1, anon_sym_not, - ACTIONS(730), 1, + ACTIONS(680), 1, anon_sym_lambda, - ACTIONS(734), 1, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(738), 1, + ACTIONS(688), 1, anon_sym_await, - ACTIONS(740), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(1168), 1, + ACTIONS(1114), 1, anon_sym_STAR, - STATE(1104), 1, - sym_primary_expression, - STATE(1157), 1, + STATE(1012), 1, sym_string, - STATE(1516), 1, - sym_list_splat_pattern, - STATE(1570), 1, + STATE(1034), 1, + sym_primary_expression, + STATE(1331), 1, sym_expression, - STATE(2400), 1, + STATE(1381), 1, + sym_list_splat_pattern, + STATE(2365), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(722), 4, + ACTIONS(672), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1606), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57367,7 +55921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57384,56 +55938,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35281] = 21, - ACTIONS(716), 1, + [35190] = 21, + ACTIONS(666), 1, sym_identifier, - ACTIONS(718), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(726), 1, + ACTIONS(676), 1, anon_sym_not, - ACTIONS(730), 1, + ACTIONS(680), 1, anon_sym_lambda, - ACTIONS(734), 1, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(738), 1, + ACTIONS(688), 1, anon_sym_await, - ACTIONS(740), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(1168), 1, + ACTIONS(1114), 1, anon_sym_STAR, - STATE(1104), 1, - sym_primary_expression, - STATE(1157), 1, + STATE(1012), 1, sym_string, - STATE(1516), 1, - sym_list_splat_pattern, - STATE(1565), 1, + STATE(1034), 1, + sym_primary_expression, + STATE(1328), 1, sym_expression, - STATE(2400), 1, + STATE(1381), 1, + sym_list_splat_pattern, + STATE(2365), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(722), 4, + ACTIONS(672), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1606), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57441,7 +55995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57458,118 +56012,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35376] = 9, - ACTIONS(1342), 1, - anon_sym_else, - ACTIONS(1346), 1, - anon_sym_finally, - ACTIONS(1354), 1, - anon_sym_except_STAR, - STATE(770), 1, - sym_else_clause, - STATE(891), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(676), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1356), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1358), 31, - 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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [35447] = 21, - ACTIONS(716), 1, - sym_identifier, + [35285] = 21, ACTIONS(718), 1, + sym_identifier, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(724), 1, - anon_sym_LBRACK, ACTIONS(726), 1, + anon_sym_LBRACK, + ACTIONS(728), 1, anon_sym_not, - ACTIONS(730), 1, + ACTIONS(732), 1, anon_sym_lambda, - ACTIONS(734), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(738), 1, - anon_sym_await, ACTIONS(740), 1, + anon_sym_await, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1168), 1, + ACTIONS(1128), 1, anon_sym_STAR, - STATE(1104), 1, + STATE(1093), 1, sym_primary_expression, - STATE(1157), 1, + STATE(1099), 1, sym_string, - STATE(1516), 1, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1561), 1, + STATE(1495), 1, sym_expression, - STATE(2400), 1, + STATE(2385), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(722), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1606), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57577,7 +56069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57594,56 +56086,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35542] = 21, - ACTIONS(742), 1, + [35380] = 21, + ACTIONS(718), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_not, - ACTIONS(756), 1, - anon_sym_lambda, - ACTIONS(760), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1172), 1, + ACTIONS(1110), 1, + anon_sym_not, + ACTIONS(1112), 1, + anon_sym_lambda, + ACTIONS(1128), 1, anon_sym_STAR, - STATE(1107), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1132), 1, + STATE(1099), 1, sym_string, - STATE(1519), 1, - sym_expression, - STATE(1598), 1, + STATE(1480), 1, sym_list_splat_pattern, - STATE(2405), 1, + STATE(1821), 1, + sym_expression, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57651,7 +56143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57668,56 +56160,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35637] = 21, - ACTIONS(606), 1, + [35475] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(608), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(628), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(630), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(914), 1, - anon_sym_STAR, - ACTIONS(920), 1, + ACTIONS(608), 1, anon_sym_not, - ACTIONS(922), 1, + ACTIONS(610), 1, anon_sym_lambda, - STATE(1032), 1, + ACTIONS(1202), 1, + anon_sym_STAR, + STATE(996), 1, sym_string, - STATE(1033), 1, + STATE(1032), 1, sym_primary_expression, - STATE(1236), 1, - sym_list_splat_pattern, - STATE(1783), 1, + STATE(1325), 1, sym_expression, - STATE(2363), 1, + STATE(1406), 1, + sym_list_splat_pattern, + STATE(2338), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(618), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(612), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(626), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1343), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57725,7 +56217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1341), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57742,56 +56234,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35732] = 21, - ACTIONS(690), 1, - sym_identifier, - ACTIONS(692), 1, + [35570] = 22, + ACTIONS(581), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(700), 1, - anon_sym_not, - ACTIONS(704), 1, - anon_sym_lambda, - ACTIONS(708), 1, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(712), 1, - anon_sym_await, - ACTIONS(714), 1, + ACTIONS(603), 1, sym_string_start, - ACTIONS(1098), 1, + ACTIONS(890), 1, anon_sym_STAR, - STATE(1058), 1, - sym_string, - STATE(1059), 1, + ACTIONS(896), 1, + anon_sym_not, + ACTIONS(898), 1, + anon_sym_lambda, + ACTIONS(1330), 1, + sym_identifier, + ACTIONS(1334), 1, + anon_sym_await, + STATE(983), 1, sym_primary_expression, - STATE(1397), 1, + STATE(984), 1, + sym_string, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1500), 1, + STATE(1904), 1, sym_expression, - STATE(2385), 1, + STATE(2438), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + STATE(1553), 2, + sym_attribute, + sym_subscript, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(696), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(710), 4, + ACTIONS(599), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1506), 7, + ACTIONS(1332), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1195), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57799,11 +56294,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 16, + STATE(1196), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -57816,56 +56309,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35827] = 21, - ACTIONS(63), 1, - anon_sym_not, - ACTIONS(67), 1, - anon_sym_lambda, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(266), 1, + [35667] = 21, + ACTIONS(718), 1, sym_identifier, - ACTIONS(300), 1, - anon_sym_await, - ACTIONS(302), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(1160), 1, + ACTIONS(736), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + anon_sym_await, + ACTIONS(742), 1, + sym_string_start, + ACTIONS(1110), 1, + anon_sym_not, + ACTIONS(1112), 1, + anon_sym_lambda, + ACTIONS(1128), 1, anon_sym_STAR, - STATE(1034), 1, - sym_string, - STATE(1036), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1908), 1, + STATE(1818), 1, sym_expression, - STATE(2504), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(75), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(281), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1329), 7, + ACTIONS(738), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57873,7 +56366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57890,56 +56383,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35922] = 21, - ACTIONS(606), 1, + [35762] = 21, + ACTIONS(718), 1, sym_identifier, - ACTIONS(608), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(728), 1, + anon_sym_not, + ACTIONS(732), 1, + anon_sym_lambda, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(628), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(630), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(914), 1, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(920), 1, - anon_sym_not, - ACTIONS(922), 1, - anon_sym_lambda, - STATE(1032), 1, - sym_string, - STATE(1033), 1, + STATE(1093), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1795), 1, + STATE(1488), 1, sym_expression, - STATE(2363), 1, + STATE(2385), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(618), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(612), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(626), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1343), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57947,7 +56440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1341), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57964,56 +56457,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36017] = 21, - ACTIONS(658), 1, + [35857] = 21, + ACTIONS(718), 1, sym_identifier, - ACTIONS(660), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(670), 1, - anon_sym_not, - ACTIONS(674), 1, - anon_sym_lambda, - ACTIONS(678), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1108), 1, + ACTIONS(1110), 1, + anon_sym_not, + ACTIONS(1112), 1, + anon_sym_lambda, + ACTIONS(1128), 1, anon_sym_STAR, - STATE(1095), 1, - sym_string, - STATE(1098), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1441), 1, + STATE(1817), 1, sym_expression, - STATE(2415), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(680), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58021,7 +56514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58038,56 +56531,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36112] = 21, - ACTIONS(716), 1, + [35952] = 21, + ACTIONS(638), 1, sym_identifier, - ACTIONS(718), 1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(738), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(740), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(954), 1, + ACTIONS(804), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(806), 1, anon_sym_lambda, - ACTIONS(1168), 1, + ACTIONS(1084), 1, anon_sym_STAR, - STATE(1152), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1157), 1, + STATE(1036), 1, sym_string, - STATE(1516), 1, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1785), 1, sym_expression, - STATE(2406), 1, + STATE(2436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(722), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1606), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58095,7 +56588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58112,56 +56605,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36207] = 21, - ACTIONS(716), 1, + [36047] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(718), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(316), 1, + anon_sym_not, + ACTIONS(322), 1, + anon_sym_lambda, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(738), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(740), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(954), 1, - anon_sym_not, - ACTIONS(956), 1, - anon_sym_lambda, - ACTIONS(1168), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1152), 1, + STATE(994), 1, sym_primary_expression, - STATE(1157), 1, + STATE(996), 1, sym_string, - STATE(1516), 1, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1928), 1, + STATE(1933), 1, sym_expression, - STATE(2406), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(722), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1606), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58169,7 +56662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58186,56 +56679,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36302] = 21, - ACTIONS(606), 1, + [36142] = 21, + ACTIONS(718), 1, sym_identifier, - ACTIONS(608), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(628), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(630), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(914), 1, - anon_sym_STAR, - ACTIONS(920), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(922), 1, + ACTIONS(1112), 1, anon_sym_lambda, - STATE(1032), 1, - sym_string, - STATE(1033), 1, + ACTIONS(1128), 1, + anon_sym_STAR, + STATE(1082), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1791), 1, + STATE(1488), 1, sym_expression, - STATE(2363), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(618), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(612), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(626), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1343), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58243,7 +56736,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1341), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58260,56 +56753,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36397] = 21, - ACTIONS(658), 1, + [36237] = 21, + ACTIONS(579), 1, sym_identifier, - ACTIONS(660), 1, + ACTIONS(581), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(670), 1, - anon_sym_not, - ACTIONS(674), 1, - anon_sym_lambda, - ACTIONS(678), 1, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(601), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(603), 1, sym_string_start, - ACTIONS(1108), 1, + ACTIONS(890), 1, anon_sym_STAR, - STATE(1095), 1, - sym_string, - STATE(1098), 1, + ACTIONS(896), 1, + anon_sym_not, + ACTIONS(898), 1, + anon_sym_lambda, + STATE(983), 1, sym_primary_expression, - STATE(1407), 1, + STATE(984), 1, + sym_string, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1442), 1, + STATE(1170), 1, sym_expression, - STATE(2415), 1, + STATE(2438), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, + ACTIONS(585), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(680), 4, + ACTIONS(599), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + STATE(1195), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58317,7 +56810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58334,56 +56827,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36492] = 21, - ACTIONS(606), 1, + [36332] = 21, + ACTIONS(63), 1, + anon_sym_not, + ACTIONS(67), 1, + anon_sym_lambda, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(270), 1, sym_identifier, - ACTIONS(608), 1, + ACTIONS(304), 1, + anon_sym_await, + ACTIONS(334), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(338), 1, anon_sym_LBRACK, - ACTIONS(624), 1, - anon_sym_LBRACE, - ACTIONS(628), 1, - anon_sym_await, - ACTIONS(630), 1, - sym_string_start, - ACTIONS(914), 1, + ACTIONS(1148), 1, anon_sym_STAR, - ACTIONS(920), 1, - anon_sym_not, - ACTIONS(922), 1, - anon_sym_lambda, - STATE(1032), 1, + STATE(977), 1, sym_string, - STATE(1033), 1, + STATE(982), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1295), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1779), 1, sym_expression, - STATE(2363), 1, + STATE(2495), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(618), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(612), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(626), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1343), 7, + ACTIONS(285), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58391,7 +56884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1341), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58408,56 +56901,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36587] = 21, - ACTIONS(606), 1, + [36427] = 21, + ACTIONS(718), 1, sym_identifier, - ACTIONS(608), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(628), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(630), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(914), 1, - anon_sym_STAR, - ACTIONS(920), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(922), 1, + ACTIONS(1112), 1, anon_sym_lambda, - STATE(1032), 1, - sym_string, - STATE(1033), 1, + ACTIONS(1128), 1, + anon_sym_STAR, + STATE(1082), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1252), 1, + STATE(1816), 1, sym_expression, - STATE(2363), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(618), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(612), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(626), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1343), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58465,7 +56958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1341), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58482,56 +56975,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36682] = 21, - ACTIONS(606), 1, + [36522] = 21, + ACTIONS(718), 1, sym_identifier, - ACTIONS(608), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(628), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(630), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(914), 1, - anon_sym_STAR, - ACTIONS(920), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(922), 1, + ACTIONS(1112), 1, anon_sym_lambda, - STATE(1032), 1, - sym_string, - STATE(1033), 1, + ACTIONS(1128), 1, + anon_sym_STAR, + STATE(1082), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1790), 1, + STATE(1836), 1, sym_expression, - STATE(2363), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(618), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(612), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(626), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1343), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58539,7 +57032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1341), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58556,56 +57049,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36777] = 21, - ACTIONS(606), 1, + [36617] = 21, + ACTIONS(692), 1, sym_identifier, - ACTIONS(608), 1, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(628), 1, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(630), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(914), 1, - anon_sym_STAR, - ACTIONS(920), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(922), 1, + ACTIONS(966), 1, anon_sym_lambda, - STATE(1032), 1, + ACTIONS(1154), 1, + anon_sym_STAR, + STATE(1062), 1, sym_string, - STATE(1033), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1792), 1, + STATE(1895), 1, sym_expression, - STATE(2363), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(618), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(612), 4, + ACTIONS(698), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(626), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1343), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58613,7 +57106,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1341), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58630,56 +57123,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36872] = 21, - ACTIONS(63), 1, + [36712] = 21, + ACTIONS(718), 1, + sym_identifier, + ACTIONS(720), 1, + anon_sym_LPAREN, + ACTIONS(726), 1, + anon_sym_LBRACK, + ACTIONS(728), 1, anon_sym_not, - ACTIONS(67), 1, + ACTIONS(732), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(266), 1, - sym_identifier, - ACTIONS(300), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(302), 1, - anon_sym_LPAREN, - ACTIONS(306), 1, - anon_sym_LBRACK, - ACTIONS(1160), 1, + ACTIONS(742), 1, + sym_string_start, + ACTIONS(1128), 1, anon_sym_STAR, - STATE(1034), 1, - sym_string, - STATE(1036), 1, + STATE(1093), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1852), 1, + STATE(1496), 1, sym_expression, - STATE(2504), 1, + STATE(2385), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(75), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(281), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1329), 7, + ACTIONS(738), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58687,7 +57180,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58704,56 +57197,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36967] = 21, - ACTIONS(63), 1, - anon_sym_not, - ACTIONS(67), 1, - anon_sym_lambda, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(266), 1, + [36807] = 21, + ACTIONS(666), 1, sym_identifier, - ACTIONS(300), 1, - anon_sym_await, - ACTIONS(302), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(1160), 1, + ACTIONS(684), 1, + anon_sym_LBRACE, + ACTIONS(688), 1, + anon_sym_await, + ACTIONS(690), 1, + sym_string_start, + ACTIONS(774), 1, + anon_sym_not, + ACTIONS(776), 1, + anon_sym_lambda, + ACTIONS(1114), 1, anon_sym_STAR, - STATE(1034), 1, - sym_string, - STATE(1036), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1012), 1, + sym_string, + STATE(1381), 1, sym_list_splat_pattern, - STATE(1796), 1, + STATE(1771), 1, sym_expression, - STATE(2504), 1, + STATE(2387), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(75), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(281), 4, + ACTIONS(672), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1329), 7, + ACTIONS(686), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58761,7 +57254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58778,56 +57271,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37062] = 21, - ACTIONS(716), 1, + [36902] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(718), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(738), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(740), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(954), 1, + ACTIONS(608), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(610), 1, anon_sym_lambda, - ACTIONS(1168), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1152), 1, - sym_primary_expression, - STATE(1157), 1, + STATE(996), 1, sym_string, - STATE(1516), 1, - sym_list_splat_pattern, - STATE(1963), 1, + STATE(1032), 1, + sym_primary_expression, + STATE(1323), 1, sym_expression, - STATE(2406), 1, + STATE(1406), 1, + sym_list_splat_pattern, + STATE(2338), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(722), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1606), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58835,7 +57328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58852,56 +57345,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37157] = 21, - ACTIONS(314), 1, + [36997] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(334), 1, + ACTIONS(316), 1, + anon_sym_not, + ACTIONS(322), 1, + anon_sym_lambda, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(686), 1, - anon_sym_not, - ACTIONS(688), 1, - anon_sym_lambda, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1048), 1, + STATE(994), 1, sym_primary_expression, - STATE(1071), 1, + STATE(996), 1, sym_string, - STATE(1366), 1, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1429), 1, + STATE(1911), 1, sym_expression, - STATE(2366), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58909,7 +57402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58926,56 +57419,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37252] = 21, - ACTIONS(314), 1, + [37092] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(2024), 1, + STATE(1931), 1, sym_expression, - STATE(2379), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58983,7 +57476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59000,56 +57493,180 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37347] = 21, - ACTIONS(742), 1, + [37187] = 9, + ACTIONS(1314), 1, + anon_sym_else, + ACTIONS(1316), 1, + anon_sym_except_STAR, + ACTIONS(1318), 1, + anon_sym_finally, + STATE(718), 1, + sym_else_clause, + STATE(830), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(644), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1338), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1336), 31, + 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_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [37258] = 9, + ACTIONS(1314), 1, + anon_sym_else, + ACTIONS(1318), 1, + anon_sym_finally, + ACTIONS(1320), 1, + anon_sym_except, + STATE(718), 1, + sym_else_clause, + STATE(830), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(647), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1338), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1336), 31, + 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_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [37329] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(756), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(760), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1172), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1107), 1, + STATE(994), 1, sym_primary_expression, - STATE(1132), 1, + STATE(996), 1, sym_string, - STATE(1524), 1, - sym_expression, - STATE(1598), 1, + STATE(1406), 1, sym_list_splat_pattern, - STATE(2405), 1, + STATE(1862), 1, + sym_expression, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59057,7 +57674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59074,56 +57691,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37442] = 21, - ACTIONS(314), 1, - sym_identifier, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_LBRACK, - ACTIONS(324), 1, + [37424] = 21, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(67), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(338), 1, - anon_sym_await, - ACTIONS(340), 1, + ACTIONS(79), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(270), 1, + sym_identifier, + ACTIONS(304), 1, + anon_sym_await, + ACTIONS(334), 1, + anon_sym_LPAREN, + ACTIONS(338), 1, + anon_sym_LBRACK, + ACTIONS(1148), 1, anon_sym_STAR, - STATE(1071), 1, + STATE(977), 1, sym_string, - STATE(1079), 1, + STATE(982), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1295), 1, sym_list_splat_pattern, - STATE(1913), 1, + STATE(1726), 1, sym_expression, - STATE(2379), 1, + STATE(2495), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + ACTIONS(285), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59131,7 +57748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59148,56 +57765,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37537] = 21, - ACTIONS(632), 1, - sym_identifier, - ACTIONS(634), 1, - anon_sym_LPAREN, - ACTIONS(640), 1, - anon_sym_LBRACK, - ACTIONS(642), 1, + [37519] = 21, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(646), 1, + ACTIONS(67), 1, anon_sym_lambda, - ACTIONS(650), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(654), 1, - anon_sym_await, - ACTIONS(656), 1, + ACTIONS(79), 1, sym_string_start, - ACTIONS(1138), 1, + ACTIONS(270), 1, + sym_identifier, + ACTIONS(304), 1, + anon_sym_await, + ACTIONS(334), 1, + anon_sym_LPAREN, + ACTIONS(338), 1, + anon_sym_LBRACK, + ACTIONS(1148), 1, anon_sym_STAR, - STATE(1037), 1, + STATE(977), 1, sym_string, - STATE(1045), 1, + STATE(982), 1, sym_primary_expression, - STATE(1296), 1, - sym_expression, - STATE(1338), 1, + STATE(1295), 1, sym_list_splat_pattern, - STATE(2390), 1, + STATE(1929), 1, + sym_expression, + STATE(2495), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(638), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(652), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1278), 7, + ACTIONS(285), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59205,7 +57822,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1277), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59222,56 +57839,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37632] = 21, - ACTIONS(606), 1, + [37614] = 21, + ACTIONS(718), 1, sym_identifier, - ACTIONS(608), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(616), 1, + ACTIONS(728), 1, anon_sym_not, - ACTIONS(620), 1, + ACTIONS(732), 1, anon_sym_lambda, - ACTIONS(624), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(628), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(630), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(914), 1, + ACTIONS(1128), 1, anon_sym_STAR, - STATE(1032), 1, - sym_string, - STATE(1044), 1, + STATE(1093), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1290), 1, + STATE(1501), 1, sym_expression, - STATE(2395), 1, + STATE(2385), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(618), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(612), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(626), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1343), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59279,7 +57896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1341), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59296,56 +57913,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37727] = 21, - ACTIONS(716), 1, + [37709] = 21, + ACTIONS(666), 1, sym_identifier, - ACTIONS(718), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(726), 1, - anon_sym_not, - ACTIONS(730), 1, - anon_sym_lambda, - ACTIONS(734), 1, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(738), 1, + ACTIONS(688), 1, anon_sym_await, - ACTIONS(740), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(1168), 1, + ACTIONS(774), 1, + anon_sym_not, + ACTIONS(776), 1, + anon_sym_lambda, + ACTIONS(1114), 1, anon_sym_STAR, - STATE(1104), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1157), 1, + STATE(1012), 1, sym_string, - STATE(1516), 1, + STATE(1381), 1, sym_list_splat_pattern, - STATE(1583), 1, + STATE(1766), 1, sym_expression, - STATE(2400), 1, + STATE(2387), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(722), 4, + ACTIONS(672), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1606), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59353,7 +57970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59370,56 +57987,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37822] = 21, - ACTIONS(658), 1, + [37804] = 21, + ACTIONS(579), 1, sym_identifier, - ACTIONS(660), 1, + ACTIONS(581), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(670), 1, - anon_sym_not, - ACTIONS(674), 1, - anon_sym_lambda, - ACTIONS(678), 1, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(601), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(603), 1, sym_string_start, - ACTIONS(1108), 1, + ACTIONS(890), 1, anon_sym_STAR, - STATE(1095), 1, - sym_string, - STATE(1098), 1, + ACTIONS(896), 1, + anon_sym_not, + ACTIONS(898), 1, + anon_sym_lambda, + STATE(983), 1, sym_primary_expression, - STATE(1407), 1, + STATE(984), 1, + sym_string, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1443), 1, + STATE(1723), 1, sym_expression, - STATE(2415), 1, + STATE(2438), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, + ACTIONS(585), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(680), 4, + ACTIONS(599), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + STATE(1195), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59427,7 +58044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59444,56 +58061,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37917] = 21, - ACTIONS(314), 1, + [37899] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, - anon_sym_not, - ACTIONS(330), 1, - anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(608), 1, + anon_sym_not, + ACTIONS(610), 1, + anon_sym_lambda, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1071), 1, + STATE(996), 1, sym_string, - STATE(1079), 1, + STATE(1032), 1, sym_primary_expression, - STATE(1366), 1, - sym_list_splat_pattern, - STATE(2011), 1, + STATE(1314), 1, sym_expression, - STATE(2379), 1, + STATE(1406), 1, + sym_list_splat_pattern, + STATE(2338), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59501,7 +58118,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59518,56 +58135,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38012] = 21, - ACTIONS(742), 1, + [37994] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_not, - ACTIONS(756), 1, - anon_sym_lambda, - ACTIONS(760), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1172), 1, + ACTIONS(608), 1, + anon_sym_not, + ACTIONS(610), 1, + anon_sym_lambda, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1107), 1, - sym_primary_expression, - STATE(1132), 1, + STATE(996), 1, sym_string, - STATE(1532), 1, - sym_expression, - STATE(1598), 1, + STATE(1032), 1, + sym_primary_expression, + STATE(1406), 1, sym_list_splat_pattern, - STATE(2405), 1, + STATE(1449), 1, + sym_expression, + STATE(2338), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59575,7 +58192,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59592,56 +58209,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38107] = 21, - ACTIONS(63), 1, - anon_sym_not, - ACTIONS(67), 1, - anon_sym_lambda, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(266), 1, + [38089] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(300), 1, - anon_sym_await, - ACTIONS(302), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(1160), 1, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(330), 1, + anon_sym_await, + ACTIONS(332), 1, + sym_string_start, + ACTIONS(608), 1, + anon_sym_not, + ACTIONS(610), 1, + anon_sym_lambda, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(996), 1, sym_string, - STATE(1036), 1, + STATE(1032), 1, sym_primary_expression, - STATE(1172), 1, - sym_list_splat_pattern, - STATE(1784), 1, + STATE(1313), 1, sym_expression, - STATE(2504), 1, + STATE(1406), 1, + sym_list_splat_pattern, + STATE(2338), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(75), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(281), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1329), 7, + ACTIONS(328), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59649,7 +58266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59666,56 +58283,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38202] = 21, - ACTIONS(314), 1, + [38184] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, - anon_sym_not, - ACTIONS(330), 1, - anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(608), 1, + anon_sym_not, + ACTIONS(610), 1, + anon_sym_lambda, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1071), 1, + STATE(996), 1, sym_string, - STATE(1079), 1, + STATE(1032), 1, sym_primary_expression, - STATE(1366), 1, - sym_list_splat_pattern, - STATE(1835), 1, + STATE(1309), 1, sym_expression, - STATE(2379), 1, + STATE(1406), 1, + sym_list_splat_pattern, + STATE(2338), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59723,7 +58340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59740,56 +58357,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38297] = 21, - ACTIONS(314), 1, - sym_identifier, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_LBRACK, - ACTIONS(324), 1, + [38279] = 21, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(67), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(338), 1, - anon_sym_await, - ACTIONS(340), 1, + ACTIONS(79), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(270), 1, + sym_identifier, + ACTIONS(304), 1, + anon_sym_await, + ACTIONS(334), 1, + anon_sym_LPAREN, + ACTIONS(338), 1, + anon_sym_LBRACK, + ACTIONS(1148), 1, anon_sym_STAR, - STATE(1071), 1, + STATE(977), 1, sym_string, - STATE(1079), 1, + STATE(982), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1295), 1, sym_list_splat_pattern, - STATE(2012), 1, + STATE(1863), 1, sym_expression, - STATE(2379), 1, + STATE(2495), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + ACTIONS(285), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59797,7 +58414,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59814,56 +58431,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38392] = 21, - ACTIONS(632), 1, + [38374] = 21, + ACTIONS(666), 1, sym_identifier, - ACTIONS(634), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(640), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(650), 1, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(688), 1, anon_sym_await, - ACTIONS(656), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(778), 1, + ACTIONS(774), 1, anon_sym_not, - ACTIONS(780), 1, + ACTIONS(776), 1, anon_sym_lambda, - ACTIONS(1138), 1, + ACTIONS(1114), 1, anon_sym_STAR, - STATE(1037), 1, + STATE(1008), 1, + sym_primary_expression, + STATE(1012), 1, sym_string, - STATE(1038), 1, - sym_primary_expression, - STATE(1338), 1, - sym_list_splat_pattern, - STATE(1780), 1, + STATE(1348), 1, sym_expression, - STATE(2420), 1, + STATE(1381), 1, + sym_list_splat_pattern, + STATE(2387), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(638), 4, + ACTIONS(672), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(652), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1278), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59871,7 +58488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1277), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59888,56 +58505,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38487] = 21, - ACTIONS(742), 1, + [38469] = 21, + ACTIONS(612), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_not, - ACTIONS(756), 1, - anon_sym_lambda, - ACTIONS(760), 1, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(634), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(636), 1, sym_string_start, - ACTIONS(1172), 1, + ACTIONS(754), 1, + anon_sym_not, + ACTIONS(756), 1, + anon_sym_lambda, + ACTIONS(1090), 1, anon_sym_STAR, - STATE(1107), 1, - sym_primary_expression, - STATE(1132), 1, + STATE(975), 1, sym_string, - STATE(1596), 1, - sym_expression, - STATE(1598), 1, + STATE(976), 1, + sym_primary_expression, + STATE(1238), 1, sym_list_splat_pattern, - STATE(2405), 1, + STATE(1782), 1, + sym_expression, + STATE(2333), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(618), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(632), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1262), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59945,7 +58562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59962,56 +58579,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38582] = 21, - ACTIONS(606), 1, + [38564] = 21, + ACTIONS(63), 1, + anon_sym_not, + ACTIONS(67), 1, + anon_sym_lambda, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(270), 1, sym_identifier, - ACTIONS(608), 1, + ACTIONS(304), 1, + anon_sym_await, + ACTIONS(334), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(338), 1, anon_sym_LBRACK, - ACTIONS(624), 1, - anon_sym_LBRACE, - ACTIONS(628), 1, - anon_sym_await, - ACTIONS(630), 1, - sym_string_start, - ACTIONS(914), 1, + ACTIONS(1148), 1, anon_sym_STAR, - ACTIONS(920), 1, - anon_sym_not, - ACTIONS(922), 1, - anon_sym_lambda, - STATE(1032), 1, + STATE(977), 1, sym_string, - STATE(1033), 1, + STATE(982), 1, sym_primary_expression, - STATE(1236), 1, - sym_list_splat_pattern, - STATE(1788), 1, + STATE(1205), 1, sym_expression, - STATE(2363), 1, + STATE(1295), 1, + sym_list_splat_pattern, + STATE(2495), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(618), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(612), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(626), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1343), 7, + ACTIONS(285), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60019,7 +58636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1341), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60036,56 +58653,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38677] = 21, - ACTIONS(314), 1, - sym_identifier, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_LBRACK, - ACTIONS(324), 1, + [38659] = 21, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(67), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(338), 1, - anon_sym_await, - ACTIONS(340), 1, + ACTIONS(79), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(270), 1, + sym_identifier, + ACTIONS(304), 1, + anon_sym_await, + ACTIONS(334), 1, + anon_sym_LPAREN, + ACTIONS(338), 1, + anon_sym_LBRACK, + ACTIONS(1148), 1, anon_sym_STAR, - STATE(1071), 1, + STATE(977), 1, sym_string, - STATE(1079), 1, + STATE(982), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1295), 1, sym_list_splat_pattern, - STATE(1629), 1, + STATE(1722), 1, sym_expression, - STATE(2379), 1, + STATE(2495), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + ACTIONS(285), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60093,7 +58710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60110,56 +58727,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38772] = 21, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(266), 1, + [38754] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(300), 1, - anon_sym_await, - ACTIONS(302), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(308), 1, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(330), 1, + anon_sym_await, + ACTIONS(332), 1, + sym_string_start, + ACTIONS(608), 1, anon_sym_not, - ACTIONS(312), 1, + ACTIONS(610), 1, anon_sym_lambda, - ACTIONS(1160), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(996), 1, sym_string, - STATE(1046), 1, + STATE(1032), 1, sym_primary_expression, - STATE(1172), 1, - sym_list_splat_pattern, - STATE(1311), 1, + STATE(1307), 1, sym_expression, - STATE(2411), 1, + STATE(1406), 1, + sym_list_splat_pattern, + STATE(2338), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(75), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(281), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1329), 7, + ACTIONS(328), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60167,7 +58784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60184,56 +58801,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38867] = 21, - ACTIONS(314), 1, + [38849] = 21, + ACTIONS(718), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(324), 1, - anon_sym_not, - ACTIONS(330), 1, - anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1110), 1, + anon_sym_not, + ACTIONS(1112), 1, + anon_sym_lambda, + ACTIONS(1128), 1, anon_sym_STAR, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(2007), 1, + STATE(1820), 1, sym_expression, - STATE(2379), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60241,7 +58858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60258,56 +58875,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38962] = 21, - ACTIONS(314), 1, + [38944] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1948), 1, + STATE(1430), 1, sym_expression, - STATE(2379), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60315,7 +58932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60332,56 +58949,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39057] = 21, - ACTIONS(314), 1, + [39039] = 21, + ACTIONS(666), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(324), 1, - anon_sym_not, - ACTIONS(330), 1, - anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(688), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(774), 1, + anon_sym_not, + ACTIONS(776), 1, + anon_sym_lambda, + ACTIONS(1114), 1, anon_sym_STAR, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1012), 1, + sym_string, + STATE(1381), 1, sym_list_splat_pattern, - STATE(1973), 1, + STATE(1778), 1, sym_expression, - STATE(2379), 1, + STATE(2387), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(672), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60389,7 +59006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60406,56 +59023,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39152] = 21, - ACTIONS(314), 1, + [39134] = 21, + ACTIONS(666), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(324), 1, - anon_sym_not, - ACTIONS(330), 1, - anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(688), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(774), 1, + anon_sym_not, + ACTIONS(776), 1, + anon_sym_lambda, + ACTIONS(1114), 1, anon_sym_STAR, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1012), 1, + sym_string, + STATE(1381), 1, sym_list_splat_pattern, - STATE(2020), 1, + STATE(1768), 1, sym_expression, - STATE(2379), 1, + STATE(2387), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(672), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60463,7 +59080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60480,56 +59097,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39247] = 21, - ACTIONS(658), 1, + [39229] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(660), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(670), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(674), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(678), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1108), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1095), 1, - sym_string, - STATE(1098), 1, + STATE(994), 1, sym_primary_expression, - STATE(1371), 1, - sym_expression, - STATE(1407), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(2415), 1, + STATE(1916), 1, + sym_expression, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(680), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60537,7 +59154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60554,34 +59171,34 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39342] = 21, + [39324] = 21, ACTIONS(73), 1, anon_sym_LBRACE, ACTIONS(79), 1, sym_string_start, - ACTIONS(266), 1, + ACTIONS(270), 1, sym_identifier, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_await, - ACTIONS(302), 1, + ACTIONS(334), 1, anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(338), 1, anon_sym_LBRACK, - ACTIONS(308), 1, + ACTIONS(340), 1, anon_sym_not, - ACTIONS(312), 1, + ACTIONS(344), 1, anon_sym_lambda, - ACTIONS(1160), 1, + ACTIONS(1148), 1, anon_sym_STAR, - STATE(1034), 1, - sym_string, - STATE(1046), 1, + STATE(974), 1, sym_primary_expression, - STATE(1172), 1, - sym_list_splat_pattern, - STATE(1258), 1, + STATE(977), 1, + sym_string, + STATE(1205), 1, sym_expression, - STATE(2411), 1, + STATE(1295), 1, + sym_list_splat_pattern, + STATE(2390), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -60598,12 +59215,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(281), 4, + ACTIONS(285), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1329), 7, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60611,7 +59228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60628,59 +59245,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39437] = 22, - ACTIONS(718), 1, + [39419] = 21, + ACTIONS(306), 1, + sym_identifier, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(734), 1, - anon_sym_LBRACE, - ACTIONS(740), 1, - sym_string_start, - ACTIONS(954), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(1168), 1, - anon_sym_STAR, - ACTIONS(1368), 1, - sym_identifier, - ACTIONS(1372), 1, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(330), 1, anon_sym_await, - STATE(1157), 1, - sym_string, - STATE(1189), 1, + ACTIONS(332), 1, + sym_string_start, + ACTIONS(1202), 1, + anon_sym_STAR, + STATE(994), 1, sym_primary_expression, - STATE(1516), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1923), 1, + STATE(1922), 1, sym_expression, - STATE(2406), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - STATE(1399), 2, - sym_attribute, - sym_subscript, - ACTIONS(728), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(736), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1370), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + ACTIONS(328), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60688,9 +59302,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 14, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -60703,56 +59319,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39534] = 21, - ACTIONS(658), 1, - sym_identifier, - ACTIONS(660), 1, + [39514] = 22, + ACTIONS(581), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(670), 1, - anon_sym_not, - ACTIONS(674), 1, - anon_sym_lambda, - ACTIONS(678), 1, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(682), 1, - anon_sym_await, - ACTIONS(684), 1, + ACTIONS(603), 1, sym_string_start, - ACTIONS(1108), 1, + ACTIONS(890), 1, anon_sym_STAR, - STATE(1095), 1, + ACTIONS(896), 1, + anon_sym_not, + ACTIONS(898), 1, + anon_sym_lambda, + ACTIONS(1334), 1, + anon_sym_await, + ACTIONS(1340), 1, + sym_identifier, + STATE(984), 1, sym_string, - STATE(1098), 1, - sym_primary_expression, - STATE(1407), 1, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1444), 1, + STATE(1212), 1, + sym_primary_expression, + STATE(1904), 1, sym_expression, - STATE(2415), 1, + STATE(2438), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + STATE(1240), 2, + sym_attribute, + sym_subscript, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(680), 4, + ACTIONS(599), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + ACTIONS(1342), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1195), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60760,11 +59379,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1196), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -60777,56 +59394,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39629] = 21, - ACTIONS(314), 1, + [39611] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1625), 1, + STATE(1860), 1, sym_expression, - STATE(2379), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60834,7 +59451,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60851,56 +59468,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39724] = 21, - ACTIONS(632), 1, + [39706] = 21, + ACTIONS(718), 1, sym_identifier, - ACTIONS(634), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(640), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(650), 1, + ACTIONS(728), 1, + anon_sym_not, + ACTIONS(732), 1, + anon_sym_lambda, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(656), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(778), 1, - anon_sym_not, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(1138), 1, + ACTIONS(1128), 1, anon_sym_STAR, - STATE(1037), 1, - sym_string, - STATE(1038), 1, + STATE(1093), 1, sym_primary_expression, - STATE(1338), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1800), 1, + STATE(1519), 1, sym_expression, - STATE(2420), 1, + STATE(2385), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(638), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(652), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1278), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60908,7 +59525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1277), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60925,56 +59542,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39819] = 21, - ACTIONS(658), 1, + [39801] = 21, + ACTIONS(638), 1, sym_identifier, - ACTIONS(660), 1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(670), 1, - anon_sym_not, - ACTIONS(674), 1, - anon_sym_lambda, - ACTIONS(678), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(1108), 1, + ACTIONS(804), 1, + anon_sym_not, + ACTIONS(806), 1, + anon_sym_lambda, + ACTIONS(1084), 1, anon_sym_STAR, - STATE(1095), 1, - sym_string, - STATE(1098), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1036), 1, + sym_string, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1446), 1, + STATE(1352), 1, sym_expression, - STATE(2415), 1, + STATE(2436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(680), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60982,7 +59599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60999,56 +59616,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39914] = 21, - ACTIONS(632), 1, + [39896] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(634), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(640), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(650), 1, + ACTIONS(316), 1, + anon_sym_not, + ACTIONS(322), 1, + anon_sym_lambda, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(656), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(778), 1, - anon_sym_not, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(1138), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1037), 1, - sym_string, - STATE(1038), 1, + STATE(994), 1, sym_primary_expression, - STATE(1338), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1797), 1, + STATE(1930), 1, sym_expression, - STATE(2420), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(638), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(652), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1278), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61056,7 +59673,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1277), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61073,56 +59690,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40009] = 21, - ACTIONS(314), 1, + [39991] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1978), 1, + STATE(1928), 1, sym_expression, - STATE(2379), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61130,7 +59747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61147,56 +59764,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40104] = 21, - ACTIONS(632), 1, + [40086] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(634), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(640), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(650), 1, + ACTIONS(316), 1, + anon_sym_not, + ACTIONS(322), 1, + anon_sym_lambda, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(656), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(778), 1, - anon_sym_not, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(1138), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1037), 1, - sym_string, - STATE(1038), 1, + STATE(994), 1, sym_primary_expression, - STATE(1338), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1342), 1, + STATE(1958), 1, sym_expression, - STATE(2420), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(638), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(652), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1278), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61204,7 +59821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1277), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61221,56 +59838,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40199] = 21, - ACTIONS(632), 1, + [40181] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(634), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(640), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(650), 1, + ACTIONS(316), 1, + anon_sym_not, + ACTIONS(322), 1, + anon_sym_lambda, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(656), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(778), 1, - anon_sym_not, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(1138), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1037), 1, - sym_string, - STATE(1038), 1, + STATE(994), 1, sym_primary_expression, - STATE(1338), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1867), 1, sym_expression, - STATE(2420), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(638), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(652), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1278), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61278,7 +59895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1277), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61295,56 +59912,118 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40294] = 21, - ACTIONS(632), 1, - sym_identifier, - ACTIONS(634), 1, + [40276] = 9, + ACTIONS(1322), 1, + anon_sym_else, + ACTIONS(1326), 1, + anon_sym_finally, + ACTIONS(1328), 1, + anon_sym_except_STAR, + STATE(727), 1, + sym_else_clause, + STATE(827), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(646), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1338), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(640), 1, + anon_sym_STAR, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(650), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, anon_sym_LBRACE, - ACTIONS(654), 1, + sym_float, + ACTIONS(1336), 31, + 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_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(656), 1, - sym_string_start, - ACTIONS(778), 1, + sym_true, + sym_false, + sym_none, + [40347] = 21, + ACTIONS(306), 1, + sym_identifier, + ACTIONS(308), 1, + anon_sym_LPAREN, + ACTIONS(314), 1, + anon_sym_LBRACK, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(780), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(1138), 1, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(330), 1, + anon_sym_await, + ACTIONS(332), 1, + sym_string_start, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1037), 1, - sym_string, - STATE(1038), 1, + STATE(994), 1, sym_primary_expression, - STATE(1338), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1782), 1, + STATE(1965), 1, sym_expression, - STATE(2420), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(638), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(652), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1278), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61352,7 +60031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1277), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61369,56 +60048,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40389] = 21, - ACTIONS(742), 1, + [40442] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(756), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(760), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1172), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1107), 1, + STATE(994), 1, sym_primary_expression, - STATE(1132), 1, + STATE(996), 1, sym_string, - STATE(1562), 1, - sym_expression, - STATE(1598), 1, + STATE(1406), 1, sym_list_splat_pattern, - STATE(2405), 1, + STATE(1956), 1, + sym_expression, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61426,7 +60105,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61443,56 +60122,118 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40484] = 21, - ACTIONS(742), 1, - sym_identifier, - ACTIONS(744), 1, + [40537] = 9, + ACTIONS(1322), 1, + anon_sym_else, + ACTIONS(1324), 1, + anon_sym_except, + ACTIONS(1326), 1, + anon_sym_finally, + STATE(727), 1, + sym_else_clause, + STATE(827), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(645), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1338), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(750), 1, + anon_sym_STAR, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(760), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, anon_sym_LBRACE, - ACTIONS(764), 1, + sym_float, + ACTIONS(1336), 31, + 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_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(766), 1, - sym_string_start, - ACTIONS(1126), 1, + sym_true, + sym_false, + sym_none, + [40608] = 21, + ACTIONS(306), 1, + sym_identifier, + ACTIONS(308), 1, + anon_sym_LPAREN, + ACTIONS(314), 1, + anon_sym_LBRACK, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(1172), 1, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(330), 1, + anon_sym_await, + ACTIONS(332), 1, + sym_string_start, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1132), 1, - sym_string, - STATE(1153), 1, + STATE(994), 1, sym_primary_expression, - STATE(1598), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1954), 1, + STATE(1923), 1, sym_expression, - STATE(2376), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61500,7 +60241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61517,56 +60258,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40579] = 21, - ACTIONS(632), 1, + [40703] = 21, + ACTIONS(692), 1, sym_identifier, - ACTIONS(634), 1, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(640), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(650), 1, + ACTIONS(702), 1, + anon_sym_not, + ACTIONS(706), 1, + anon_sym_lambda, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(656), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(778), 1, - anon_sym_not, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(1138), 1, + ACTIONS(1154), 1, anon_sym_STAR, - STATE(1037), 1, + STATE(1062), 1, sym_string, - STATE(1038), 1, + STATE(1102), 1, sym_primary_expression, - STATE(1338), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1789), 1, + STATE(1485), 1, sym_expression, - STATE(2420), 1, + STATE(2380), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(638), 4, + ACTIONS(698), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(652), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1278), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61574,7 +60315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1277), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61591,56 +60332,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40674] = 21, - ACTIONS(658), 1, - sym_identifier, - ACTIONS(660), 1, + [40798] = 22, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(670), 1, - anon_sym_not, - ACTIONS(674), 1, - anon_sym_lambda, - ACTIONS(678), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(682), 1, - anon_sym_await, - ACTIONS(684), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1108), 1, + ACTIONS(1110), 1, + anon_sym_not, + ACTIONS(1112), 1, + anon_sym_lambda, + ACTIONS(1128), 1, anon_sym_STAR, - STATE(1095), 1, - sym_string, - STATE(1098), 1, + ACTIONS(1344), 1, + sym_identifier, + ACTIONS(1348), 1, + anon_sym_await, + STATE(1082), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1450), 1, + STATE(1848), 1, sym_expression, - STATE(2415), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + STATE(1545), 2, + sym_attribute, + sym_subscript, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(680), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + ACTIONS(1346), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61648,11 +60392,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1531), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -61665,56 +60407,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40769] = 21, - ACTIONS(314), 1, - sym_identifier, - ACTIONS(316), 1, + [40895] = 22, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(324), 1, - anon_sym_not, - ACTIONS(330), 1, - anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(338), 1, - anon_sym_await, - ACTIONS(340), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1110), 1, + anon_sym_not, + ACTIONS(1112), 1, + anon_sym_lambda, + ACTIONS(1128), 1, anon_sym_STAR, - STATE(1071), 1, + ACTIONS(1348), 1, + anon_sym_await, + ACTIONS(1350), 1, + sym_identifier, + STATE(1099), 1, sym_string, - STATE(1079), 1, + STATE(1161), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1628), 1, + STATE(1848), 1, sym_expression, - STATE(2379), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + STATE(1308), 2, + sym_attribute, + sym_subscript, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + ACTIONS(1352), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61722,11 +60467,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1531), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -61739,56 +60482,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40864] = 21, - ACTIONS(632), 1, + [40992] = 21, + ACTIONS(638), 1, sym_identifier, - ACTIONS(634), 1, - anon_sym_LPAREN, ACTIONS(640), 1, + anon_sym_LPAREN, + ACTIONS(646), 1, anon_sym_LBRACK, ACTIONS(650), 1, - anon_sym_LBRACE, + anon_sym_not, ACTIONS(654), 1, + anon_sym_lambda, + ACTIONS(658), 1, + anon_sym_LBRACE, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(656), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(778), 1, - anon_sym_not, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(1138), 1, + ACTIONS(1084), 1, anon_sym_STAR, - STATE(1037), 1, - sym_string, - STATE(1038), 1, + STATE(1033), 1, sym_primary_expression, - STATE(1296), 1, - sym_expression, - STATE(1338), 1, + STATE(1036), 1, + sym_string, + STATE(1304), 1, sym_list_splat_pattern, - STATE(2420), 1, + STATE(1305), 1, + sym_expression, + STATE(2404), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(638), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(652), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1278), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61796,7 +60539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1277), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61813,56 +60556,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40959] = 21, - ACTIONS(314), 1, + [41087] = 21, + ACTIONS(612), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(324), 1, - anon_sym_not, - ACTIONS(330), 1, - anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(634), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(636), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(754), 1, + anon_sym_not, + ACTIONS(756), 1, + anon_sym_lambda, + ACTIONS(1090), 1, anon_sym_STAR, - STATE(1071), 1, + STATE(975), 1, sym_string, - STATE(1079), 1, + STATE(976), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1484), 1, + STATE(1737), 1, sym_expression, - STATE(2379), 1, + STATE(2333), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(618), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(632), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1262), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61870,7 +60613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61887,59 +60630,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41054] = 22, - ACTIONS(744), 1, - anon_sym_LPAREN, - ACTIONS(750), 1, - anon_sym_LBRACK, - ACTIONS(760), 1, - anon_sym_LBRACE, - ACTIONS(766), 1, - sym_string_start, - ACTIONS(1126), 1, + [41182] = 21, + ACTIONS(63), 1, anon_sym_not, - ACTIONS(1128), 1, + ACTIONS(67), 1, anon_sym_lambda, - ACTIONS(1172), 1, - anon_sym_STAR, - ACTIONS(1352), 1, - anon_sym_await, - ACTIONS(1374), 1, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(270), 1, sym_identifier, - STATE(1132), 1, + ACTIONS(304), 1, + anon_sym_await, + ACTIONS(334), 1, + anon_sym_LPAREN, + ACTIONS(338), 1, + anon_sym_LBRACK, + ACTIONS(1148), 1, + anon_sym_STAR, + STATE(977), 1, sym_string, - STATE(1153), 1, + STATE(982), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1295), 1, sym_list_splat_pattern, - STATE(1920), 1, + STATE(1839), 1, sym_expression, - STATE(2376), 1, + STATE(2495), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - STATE(1611), 2, - sym_attribute, - sym_subscript, - ACTIONS(754), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(762), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1376), 4, + ACTIONS(285), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1581), 7, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61947,9 +60687,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 14, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -61962,56 +60704,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41151] = 21, - ACTIONS(742), 1, + [41277] = 21, + ACTIONS(638), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_not, - ACTIONS(756), 1, - anon_sym_lambda, - ACTIONS(760), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(1172), 1, + ACTIONS(804), 1, + anon_sym_not, + ACTIONS(806), 1, + anon_sym_lambda, + ACTIONS(1084), 1, anon_sym_STAR, - STATE(1107), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1132), 1, + STATE(1036), 1, sym_string, - STATE(1535), 1, - sym_expression, - STATE(1598), 1, + STATE(1304), 1, sym_list_splat_pattern, - STATE(2405), 1, + STATE(1740), 1, + sym_expression, + STATE(2436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62019,7 +60761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62036,56 +60778,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41246] = 21, - ACTIONS(314), 1, + [41372] = 21, + ACTIONS(638), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(334), 1, + ACTIONS(650), 1, + anon_sym_not, + ACTIONS(654), 1, + anon_sym_lambda, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(686), 1, - anon_sym_not, - ACTIONS(688), 1, - anon_sym_lambda, - ACTIONS(1204), 1, + ACTIONS(1084), 1, anon_sym_STAR, - STATE(1048), 1, + STATE(1033), 1, sym_primary_expression, - STATE(1071), 1, + STATE(1036), 1, sym_string, - STATE(1366), 1, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1458), 1, + STATE(1373), 1, sym_expression, - STATE(2366), 1, + STATE(2404), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62093,7 +60835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62110,56 +60852,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41341] = 21, - ACTIONS(742), 1, + [41467] = 21, + ACTIONS(579), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(581), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(589), 1, anon_sym_not, - ACTIONS(756), 1, + ACTIONS(593), 1, anon_sym_lambda, - ACTIONS(760), 1, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(601), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(603), 1, sym_string_start, - ACTIONS(1172), 1, + ACTIONS(890), 1, anon_sym_STAR, - STATE(1107), 1, + STATE(971), 1, sym_primary_expression, - STATE(1132), 1, + STATE(984), 1, sym_string, - STATE(1540), 1, - sym_expression, - STATE(1598), 1, + STATE(1164), 1, sym_list_splat_pattern, - STATE(2405), 1, + STATE(1170), 1, + sym_expression, + STATE(2375), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(585), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(599), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1195), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62167,7 +60909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62184,56 +60926,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41436] = 21, - ACTIONS(632), 1, + [41562] = 21, + ACTIONS(612), 1, sym_identifier, - ACTIONS(634), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(640), 1, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(650), 1, + ACTIONS(622), 1, + anon_sym_not, + ACTIONS(626), 1, + anon_sym_lambda, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(654), 1, + ACTIONS(634), 1, anon_sym_await, - ACTIONS(656), 1, + ACTIONS(636), 1, sym_string_start, - ACTIONS(778), 1, - anon_sym_not, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(1138), 1, + ACTIONS(1090), 1, anon_sym_STAR, - STATE(1037), 1, + STATE(975), 1, sym_string, - STATE(1038), 1, + STATE(981), 1, sym_primary_expression, - STATE(1338), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1820), 1, + STATE(1280), 1, sym_expression, - STATE(2420), 1, + STATE(2370), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(638), 4, + ACTIONS(618), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(652), 4, + ACTIONS(632), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1278), 7, + STATE(1262), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62241,7 +60983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1277), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62258,56 +61000,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41531] = 21, - ACTIONS(314), 1, + [41657] = 21, + ACTIONS(666), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(676), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(680), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(688), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1114), 1, anon_sym_STAR, - STATE(1071), 1, + STATE(1012), 1, sym_string, - STATE(1079), 1, + STATE(1034), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1381), 1, sym_list_splat_pattern, - STATE(2027), 1, + STATE(1391), 1, sym_expression, - STATE(2379), 1, + STATE(2365), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(672), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62315,7 +61057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62332,56 +61074,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41626] = 21, - ACTIONS(716), 1, + [41752] = 21, + ACTIONS(692), 1, sym_identifier, - ACTIONS(718), 1, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(738), 1, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(740), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(954), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(1168), 1, + ACTIONS(1154), 1, anon_sym_STAR, - STATE(1152), 1, - sym_primary_expression, - STATE(1157), 1, + STATE(1062), 1, sym_string, - STATE(1516), 1, + STATE(1083), 1, + sym_primary_expression, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1583), 1, + STATE(1894), 1, sym_expression, - STATE(2406), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(722), 4, + ACTIONS(698), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1606), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62389,7 +61131,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62406,56 +61148,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41721] = 21, - ACTIONS(63), 1, - anon_sym_not, - ACTIONS(67), 1, - anon_sym_lambda, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(266), 1, + [41847] = 21, + ACTIONS(612), 1, sym_identifier, - ACTIONS(300), 1, - anon_sym_await, - ACTIONS(302), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(1160), 1, + ACTIONS(630), 1, + anon_sym_LBRACE, + ACTIONS(634), 1, + anon_sym_await, + ACTIONS(636), 1, + sym_string_start, + ACTIONS(754), 1, + anon_sym_not, + ACTIONS(756), 1, + anon_sym_lambda, + ACTIONS(1090), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(975), 1, sym_string, - STATE(1036), 1, + STATE(976), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1949), 1, + STATE(1801), 1, sym_expression, - STATE(2504), 1, + STATE(2333), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(75), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(281), 4, + ACTIONS(618), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1329), 7, + ACTIONS(632), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1262), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62463,7 +61205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62480,56 +61222,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41816] = 21, - ACTIONS(314), 1, + [41942] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1977), 1, + STATE(1567), 1, sym_expression, - STATE(2379), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62537,7 +61279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62554,56 +61296,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41911] = 21, - ACTIONS(690), 1, + [42037] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(692), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(708), 1, + ACTIONS(316), 1, + anon_sym_not, + ACTIONS(322), 1, + anon_sym_lambda, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(712), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(714), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(798), 1, - anon_sym_not, - ACTIONS(800), 1, - anon_sym_lambda, - ACTIONS(1098), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1058), 1, - sym_string, - STATE(1063), 1, + STATE(994), 1, sym_primary_expression, - STATE(1397), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1831), 1, + STATE(1927), 1, sym_expression, - STATE(2526), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(696), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(710), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1506), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62611,7 +61353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62628,56 +61370,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42006] = 21, - ACTIONS(658), 1, + [42132] = 21, + ACTIONS(692), 1, sym_identifier, - ACTIONS(660), 1, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(702), 1, + anon_sym_not, + ACTIONS(706), 1, + anon_sym_lambda, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(818), 1, - anon_sym_not, - ACTIONS(820), 1, - anon_sym_lambda, - ACTIONS(1108), 1, + ACTIONS(1154), 1, anon_sym_STAR, - STATE(1095), 1, + STATE(1062), 1, sym_string, - STATE(1101), 1, + STATE(1102), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1894), 1, + STATE(1489), 1, sym_expression, - STATE(2489), 1, + STATE(2380), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, + ACTIONS(698), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(680), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62685,7 +61427,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62702,56 +61444,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42101] = 21, - ACTIONS(314), 1, + [42227] = 21, + ACTIONS(638), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(650), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(654), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1084), 1, anon_sym_STAR, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(1033), 1, sym_primary_expression, - STATE(1366), 1, - sym_list_splat_pattern, - STATE(1627), 1, + STATE(1036), 1, + sym_string, + STATE(1299), 1, sym_expression, - STATE(2379), 1, + STATE(1304), 1, + sym_list_splat_pattern, + STATE(2404), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62759,7 +61501,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62776,56 +61518,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42196] = 21, - ACTIONS(606), 1, + [42322] = 21, + ACTIONS(638), 1, sym_identifier, - ACTIONS(608), 1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(650), 1, + anon_sym_not, + ACTIONS(654), 1, + anon_sym_lambda, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(628), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(630), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(914), 1, + ACTIONS(1084), 1, anon_sym_STAR, - ACTIONS(920), 1, - anon_sym_not, - ACTIONS(922), 1, - anon_sym_lambda, - STATE(1032), 1, - sym_string, STATE(1033), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1036), 1, + sym_string, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1290), 1, + STATE(1375), 1, sym_expression, - STATE(2363), 1, + STATE(2404), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(618), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(612), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(626), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1343), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62833,7 +61575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1341), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62850,56 +61592,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42291] = 21, - ACTIONS(606), 1, + [42417] = 21, + ACTIONS(692), 1, sym_identifier, - ACTIONS(608), 1, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(628), 1, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(630), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(914), 1, - anon_sym_STAR, - ACTIONS(920), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(922), 1, + ACTIONS(966), 1, anon_sym_lambda, - STATE(1032), 1, + ACTIONS(1154), 1, + anon_sym_STAR, + STATE(1062), 1, sym_string, - STATE(1033), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1805), 1, sym_expression, - STATE(2363), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(618), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(612), 4, + ACTIONS(698), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(626), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1343), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62907,7 +61649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1341), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62924,56 +61666,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42386] = 21, - ACTIONS(314), 1, + [42512] = 21, + ACTIONS(612), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(324), 1, - anon_sym_not, - ACTIONS(330), 1, - anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(634), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(636), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(754), 1, + anon_sym_not, + ACTIONS(756), 1, + anon_sym_lambda, + ACTIONS(1090), 1, anon_sym_STAR, - STATE(1071), 1, + STATE(975), 1, sym_string, - STATE(1079), 1, + STATE(976), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(2010), 1, + STATE(1280), 1, sym_expression, - STATE(2379), 1, + STATE(2333), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(618), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(632), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1262), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62981,7 +61723,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62998,56 +61740,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42481] = 21, - ACTIONS(716), 1, + [42607] = 21, + ACTIONS(666), 1, sym_identifier, - ACTIONS(718), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(738), 1, + ACTIONS(688), 1, anon_sym_await, - ACTIONS(740), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(954), 1, + ACTIONS(774), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(776), 1, anon_sym_lambda, - ACTIONS(1168), 1, + ACTIONS(1114), 1, anon_sym_STAR, - STATE(1152), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1157), 1, + STATE(1012), 1, sym_string, - STATE(1516), 1, + STATE(1381), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1762), 1, sym_expression, - STATE(2406), 1, + STATE(2387), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(722), 4, + ACTIONS(672), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1606), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63055,7 +61797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63072,56 +61814,130 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42576] = 21, - ACTIONS(314), 1, + [42702] = 21, + ACTIONS(638), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(650), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(654), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1084), 1, anon_sym_STAR, - STATE(1071), 1, + STATE(1033), 1, + sym_primary_expression, + STATE(1036), 1, sym_string, - STATE(1079), 1, + STATE(1302), 1, + sym_expression, + STATE(1304), 1, + sym_list_splat_pattern, + STATE(2404), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(656), 2, + sym_ellipsis, + sym_float, + ACTIONS(652), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(644), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(660), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1321), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1316), 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, + [42797] = 21, + ACTIONS(638), 1, + sym_identifier, + ACTIONS(640), 1, + anon_sym_LPAREN, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, + anon_sym_LBRACE, + ACTIONS(662), 1, + anon_sym_await, + ACTIONS(664), 1, + sym_string_start, + ACTIONS(804), 1, + anon_sym_not, + ACTIONS(806), 1, + anon_sym_lambda, + ACTIONS(1084), 1, + anon_sym_STAR, + STATE(1035), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1036), 1, + sym_string, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1996), 1, + STATE(1802), 1, sym_expression, - STATE(2379), 1, + STATE(2436), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(660), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63129,7 +61945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63146,56 +61962,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42671] = 21, - ACTIONS(742), 1, + [42892] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(744), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(756), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(760), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1172), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1107), 1, + STATE(994), 1, sym_primary_expression, - STATE(1132), 1, + STATE(996), 1, sym_string, - STATE(1545), 1, - sym_expression, - STATE(1598), 1, + STATE(1406), 1, sym_list_splat_pattern, - STATE(2405), 1, + STATE(1843), 1, + sym_expression, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(748), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1581), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63203,7 +62019,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1580), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63220,56 +62036,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42766] = 21, - ACTIONS(606), 1, + [42987] = 21, + ACTIONS(579), 1, sym_identifier, - ACTIONS(608), 1, + ACTIONS(581), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(616), 1, - anon_sym_not, - ACTIONS(620), 1, - anon_sym_lambda, - ACTIONS(624), 1, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(628), 1, + ACTIONS(601), 1, anon_sym_await, - ACTIONS(630), 1, + ACTIONS(603), 1, sym_string_start, - ACTIONS(914), 1, + ACTIONS(890), 1, anon_sym_STAR, - STATE(1032), 1, - sym_string, - STATE(1044), 1, + ACTIONS(896), 1, + anon_sym_not, + ACTIONS(898), 1, + anon_sym_lambda, + STATE(983), 1, sym_primary_expression, - STATE(1227), 1, - sym_expression, - STATE(1236), 1, + STATE(984), 1, + sym_string, + STATE(1164), 1, sym_list_splat_pattern, - STATE(2395), 1, + STATE(1720), 1, + sym_expression, + STATE(2438), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - ACTIONS(618), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(612), 4, + ACTIONS(585), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(626), 4, + ACTIONS(599), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1343), 7, + STATE(1195), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63277,7 +62093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1341), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63294,56 +62110,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42861] = 21, - ACTIONS(658), 1, + [43082] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(660), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(316), 1, + anon_sym_not, + ACTIONS(322), 1, + anon_sym_lambda, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(818), 1, - anon_sym_not, - ACTIONS(820), 1, - anon_sym_lambda, - ACTIONS(1108), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1095), 1, - sym_string, - STATE(1101), 1, + STATE(994), 1, sym_primary_expression, - STATE(1407), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1814), 1, + STATE(1910), 1, sym_expression, - STATE(2489), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(680), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63351,7 +62167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63368,56 +62184,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42956] = 21, - ACTIONS(690), 1, + [43177] = 21, + ACTIONS(718), 1, sym_identifier, - ACTIONS(692), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(708), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(712), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(714), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(798), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(800), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1098), 1, + ACTIONS(1128), 1, anon_sym_STAR, - STATE(1058), 1, - sym_string, - STATE(1063), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1397), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1805), 1, + STATE(1845), 1, sym_expression, - STATE(2526), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(696), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(710), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1506), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63425,7 +62241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63442,56 +62258,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43051] = 21, - ACTIONS(658), 1, + [43272] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(660), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(316), 1, + anon_sym_not, + ACTIONS(322), 1, + anon_sym_lambda, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(818), 1, - anon_sym_not, - ACTIONS(820), 1, - anon_sym_lambda, - ACTIONS(1108), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1095), 1, - sym_string, - STATE(1101), 1, + STATE(994), 1, sym_primary_expression, - STATE(1371), 1, - sym_expression, - STATE(1407), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(2489), 1, + STATE(1858), 1, + sym_expression, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(680), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63499,7 +62315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63516,56 +62332,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43146] = 21, - ACTIONS(314), 1, + [43367] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(2006), 1, + STATE(1963), 1, sym_expression, - STATE(2379), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63573,7 +62389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63590,56 +62406,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43241] = 21, - ACTIONS(690), 1, + [43462] = 21, + ACTIONS(718), 1, sym_identifier, - ACTIONS(692), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(708), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(712), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(714), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(798), 1, + ACTIONS(1110), 1, anon_sym_not, - ACTIONS(800), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(1098), 1, + ACTIONS(1128), 1, anon_sym_STAR, - STATE(1058), 1, - sym_string, - STATE(1063), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1397), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1830), 1, + STATE(1901), 1, sym_expression, - STATE(2526), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(696), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(710), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1506), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63647,7 +62463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63664,59 +62480,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43336] = 22, - ACTIONS(608), 1, + [43557] = 21, + ACTIONS(638), 1, + sym_identifier, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(624), 1, - anon_sym_LBRACE, - ACTIONS(630), 1, - sym_string_start, - ACTIONS(914), 1, - anon_sym_STAR, - ACTIONS(920), 1, + ACTIONS(650), 1, anon_sym_not, - ACTIONS(922), 1, + ACTIONS(654), 1, anon_sym_lambda, - ACTIONS(1378), 1, - sym_identifier, - ACTIONS(1382), 1, + ACTIONS(658), 1, + anon_sym_LBRACE, + ACTIONS(662), 1, anon_sym_await, - STATE(1032), 1, - sym_string, + ACTIONS(664), 1, + sym_string_start, + ACTIONS(1084), 1, + anon_sym_STAR, STATE(1033), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1036), 1, + sym_string, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1960), 1, + STATE(1306), 1, sym_expression, - STATE(2363), 1, + STATE(2404), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - STATE(1609), 2, - sym_attribute, - sym_subscript, - ACTIONS(618), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(626), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1380), 4, + ACTIONS(644), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1343), 7, + ACTIONS(660), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1321), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63724,9 +62537,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1341), 14, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -63739,56 +62554,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43433] = 21, - ACTIONS(690), 1, - sym_identifier, + [43652] = 21, ACTIONS(692), 1, + sym_identifier, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(708), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(712), 1, - anon_sym_await, ACTIONS(714), 1, + anon_sym_await, + ACTIONS(716), 1, sym_string_start, - ACTIONS(798), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(800), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(1098), 1, + ACTIONS(1154), 1, anon_sym_STAR, - STATE(1058), 1, + STATE(1062), 1, sym_string, - STATE(1063), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1397), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1452), 1, + STATE(1833), 1, sym_expression, - STATE(2526), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(696), 4, + ACTIONS(698), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(710), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1506), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63796,7 +62611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63813,56 +62628,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43528] = 21, - ACTIONS(690), 1, + [43747] = 21, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(270), 1, sym_identifier, - ACTIONS(692), 1, + ACTIONS(304), 1, + anon_sym_await, + ACTIONS(334), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(338), 1, anon_sym_LBRACK, - ACTIONS(708), 1, - anon_sym_LBRACE, - ACTIONS(712), 1, - anon_sym_await, - ACTIONS(714), 1, - sym_string_start, - ACTIONS(798), 1, + ACTIONS(340), 1, anon_sym_not, - ACTIONS(800), 1, + ACTIONS(344), 1, anon_sym_lambda, - ACTIONS(1098), 1, + ACTIONS(1148), 1, anon_sym_STAR, - STATE(1058), 1, - sym_string, - STATE(1063), 1, + STATE(974), 1, sym_primary_expression, - STATE(1397), 1, - sym_list_splat_pattern, - STATE(1828), 1, + STATE(977), 1, + sym_string, + STATE(1291), 1, sym_expression, - STATE(2526), 1, + STATE(1295), 1, + sym_list_splat_pattern, + STATE(2390), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(696), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(710), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1506), 7, + ACTIONS(285), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63870,7 +62685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63887,56 +62702,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43623] = 21, - ACTIONS(314), 1, + [43842] = 21, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(270), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(304), 1, + anon_sym_await, + ACTIONS(334), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(338), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(340), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(344), 1, anon_sym_lambda, - ACTIONS(334), 1, - anon_sym_LBRACE, - ACTIONS(338), 1, - anon_sym_await, - ACTIONS(340), 1, - sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1148), 1, anon_sym_STAR, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(974), 1, sym_primary_expression, - STATE(1366), 1, - sym_list_splat_pattern, - STATE(1910), 1, + STATE(977), 1, + sym_string, + STATE(1287), 1, sym_expression, - STATE(2379), 1, + STATE(1295), 1, + sym_list_splat_pattern, + STATE(2390), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + ACTIONS(285), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63944,7 +62759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63961,56 +62776,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43718] = 21, - ACTIONS(63), 1, + [43937] = 21, + ACTIONS(306), 1, + sym_identifier, + ACTIONS(308), 1, + anon_sym_LPAREN, + ACTIONS(314), 1, + anon_sym_LBRACK, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(67), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(266), 1, - sym_identifier, - ACTIONS(300), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(302), 1, - anon_sym_LPAREN, - ACTIONS(306), 1, - anon_sym_LBRACK, - ACTIONS(1160), 1, + ACTIONS(332), 1, + sym_string_start, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1034), 1, - sym_string, - STATE(1036), 1, + STATE(994), 1, sym_primary_expression, - STATE(1172), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1794), 1, + STATE(1566), 1, sym_expression, - STATE(2504), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(75), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(281), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1329), 7, + ACTIONS(328), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -64018,7 +62833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -64035,56 +62850,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43813] = 21, - ACTIONS(690), 1, + [44032] = 21, + ACTIONS(666), 1, sym_identifier, - ACTIONS(692), 1, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(708), 1, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(712), 1, + ACTIONS(688), 1, anon_sym_await, - ACTIONS(714), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(798), 1, + ACTIONS(774), 1, anon_sym_not, - ACTIONS(800), 1, + ACTIONS(776), 1, anon_sym_lambda, - ACTIONS(1098), 1, + ACTIONS(1114), 1, anon_sym_STAR, - STATE(1058), 1, - sym_string, - STATE(1063), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1397), 1, + STATE(1012), 1, + sym_string, + STATE(1381), 1, sym_list_splat_pattern, - STATE(1813), 1, + STATE(1391), 1, sym_expression, - STATE(2526), 1, + STATE(2387), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(696), 4, + ACTIONS(672), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(710), 4, + ACTIONS(686), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1506), 7, + STATE(1402), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -64092,7 +62907,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -64109,56 +62924,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43908] = 21, - ACTIONS(658), 1, + [44127] = 21, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(270), 1, sym_identifier, - ACTIONS(660), 1, + ACTIONS(304), 1, + anon_sym_await, + ACTIONS(334), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(338), 1, anon_sym_LBRACK, - ACTIONS(678), 1, - anon_sym_LBRACE, - ACTIONS(682), 1, - anon_sym_await, - ACTIONS(684), 1, - sym_string_start, - ACTIONS(818), 1, + ACTIONS(340), 1, anon_sym_not, - ACTIONS(820), 1, + ACTIONS(344), 1, anon_sym_lambda, - ACTIONS(1108), 1, + ACTIONS(1148), 1, anon_sym_STAR, - STATE(1095), 1, - sym_string, - STATE(1101), 1, + STATE(974), 1, sym_primary_expression, - STATE(1407), 1, - sym_list_splat_pattern, - STATE(1809), 1, + STATE(977), 1, + sym_string, + STATE(1242), 1, sym_expression, - STATE(2489), 1, + STATE(1295), 1, + sym_list_splat_pattern, + STATE(2390), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(680), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1454), 7, + ACTIONS(285), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -64166,7 +62981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1385), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -64183,56 +62998,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44003] = 21, - ACTIONS(314), 1, + [44222] = 21, + ACTIONS(692), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(324), 1, - anon_sym_not, - ACTIONS(330), 1, - anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(964), 1, + anon_sym_not, + ACTIONS(966), 1, + anon_sym_lambda, + ACTIONS(1154), 1, anon_sym_STAR, - STATE(1071), 1, + STATE(1062), 1, sym_string, - STATE(1079), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1991), 1, + STATE(1826), 1, sym_expression, - STATE(2379), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(698), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -64240,7 +63055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -64257,56 +63072,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44098] = 21, - ACTIONS(314), 1, + [44317] = 21, + ACTIONS(692), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(324), 1, - anon_sym_not, - ACTIONS(330), 1, - anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(964), 1, + anon_sym_not, + ACTIONS(966), 1, + anon_sym_lambda, + ACTIONS(1154), 1, anon_sym_STAR, - STATE(1071), 1, + STATE(1062), 1, sym_string, - STATE(1079), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1822), 1, + STATE(1857), 1, sym_expression, - STATE(2379), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(698), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -64314,7 +63129,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -64331,56 +63146,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44193] = 21, - ACTIONS(690), 1, + [44412] = 21, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(270), 1, sym_identifier, - ACTIONS(692), 1, + ACTIONS(304), 1, + anon_sym_await, + ACTIONS(334), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(338), 1, anon_sym_LBRACK, - ACTIONS(708), 1, - anon_sym_LBRACE, - ACTIONS(712), 1, - anon_sym_await, - ACTIONS(714), 1, - sym_string_start, - ACTIONS(798), 1, + ACTIONS(340), 1, anon_sym_not, - ACTIONS(800), 1, + ACTIONS(344), 1, anon_sym_lambda, - ACTIONS(1098), 1, + ACTIONS(1148), 1, anon_sym_STAR, - STATE(1058), 1, - sym_string, - STATE(1063), 1, + STATE(974), 1, sym_primary_expression, - STATE(1397), 1, - sym_list_splat_pattern, - STATE(1806), 1, + STATE(977), 1, + sym_string, + STATE(1290), 1, sym_expression, - STATE(2526), 1, + STATE(1295), 1, + sym_list_splat_pattern, + STATE(2390), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(696), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(710), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1506), 7, + ACTIONS(285), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -64388,7 +63203,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1507), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -64405,56 +63220,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44288] = 21, - ACTIONS(314), 1, + [44507] = 21, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + sym_string_start, + ACTIONS(270), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(304), 1, + anon_sym_await, + ACTIONS(334), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(338), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(340), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(344), 1, anon_sym_lambda, - ACTIONS(334), 1, - anon_sym_LBRACE, - ACTIONS(338), 1, - anon_sym_await, - ACTIONS(340), 1, - sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1148), 1, anon_sym_STAR, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(974), 1, sym_primary_expression, - STATE(1366), 1, - sym_list_splat_pattern, - STATE(2009), 1, + STATE(977), 1, + sym_string, + STATE(1289), 1, sym_expression, - STATE(2379), 1, + STATE(1295), 1, + sym_list_splat_pattern, + STATE(2390), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(75), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + ACTIONS(285), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1259), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -64462,7 +63277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -64479,56 +63294,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44383] = 21, - ACTIONS(63), 1, - anon_sym_not, - ACTIONS(67), 1, - anon_sym_lambda, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(266), 1, + [44602] = 21, + ACTIONS(612), 1, sym_identifier, - ACTIONS(300), 1, - anon_sym_await, - ACTIONS(302), 1, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(1160), 1, + ACTIONS(630), 1, + anon_sym_LBRACE, + ACTIONS(634), 1, + anon_sym_await, + ACTIONS(636), 1, + sym_string_start, + ACTIONS(754), 1, + anon_sym_not, + ACTIONS(756), 1, + anon_sym_lambda, + ACTIONS(1090), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(975), 1, sym_string, - STATE(1036), 1, + STATE(976), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1799), 1, + STATE(1728), 1, sym_expression, - STATE(2504), 1, + STATE(2333), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(75), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(281), 4, + ACTIONS(618), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1329), 7, + ACTIONS(632), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1262), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -64536,7 +63351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -64553,56 +63368,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44478] = 21, - ACTIONS(314), 1, + [44697] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(2003), 1, + STATE(1955), 1, sym_expression, - STATE(2379), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -64610,7 +63425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -64627,59 +63442,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44573] = 22, - ACTIONS(718), 1, + [44792] = 22, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(954), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(956), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(1168), 1, + ACTIONS(1154), 1, anon_sym_STAR, - ACTIONS(1372), 1, - anon_sym_await, - ACTIONS(1384), 1, + ACTIONS(1354), 1, sym_identifier, - STATE(1152), 1, - sym_primary_expression, - STATE(1157), 1, + ACTIONS(1358), 1, + anon_sym_await, + STATE(1062), 1, sym_string, - STATE(1516), 1, + STATE(1083), 1, + sym_primary_expression, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1923), 1, + STATE(1868), 1, sym_expression, - STATE(2406), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - STATE(1607), 2, + STATE(1561), 2, sym_attribute, sym_subscript, - ACTIONS(728), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(736), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1386), 4, + ACTIONS(1356), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1606), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -64687,7 +63502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1552), 14, + STATE(1469), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -64702,56 +63517,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44670] = 21, - ACTIONS(314), 1, + [44889] = 21, + ACTIONS(718), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(324), 1, - anon_sym_not, - ACTIONS(330), 1, - anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(740), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1110), 1, + anon_sym_not, + ACTIONS(1112), 1, + anon_sym_lambda, + ACTIONS(1128), 1, anon_sym_STAR, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1099), 1, + sym_string, + STATE(1480), 1, sym_list_splat_pattern, - STATE(1988), 1, + STATE(1519), 1, sym_expression, - STATE(2379), 1, + STATE(2352), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(724), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(738), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1530), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -64759,7 +63574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -64776,56 +63591,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44765] = 21, - ACTIONS(314), 1, + [44984] = 21, + ACTIONS(579), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(581), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(324), 1, - anon_sym_not, - ACTIONS(330), 1, - anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(601), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(603), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(890), 1, anon_sym_STAR, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + ACTIONS(896), 1, + anon_sym_not, + ACTIONS(898), 1, + anon_sym_lambda, + STATE(983), 1, sym_primary_expression, - STATE(1366), 1, + STATE(984), 1, + sym_string, + STATE(1164), 1, sym_list_splat_pattern, - STATE(1626), 1, + STATE(1738), 1, sym_expression, - STATE(2379), 1, + STATE(2438), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(585), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(599), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1195), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -64833,7 +63648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -64850,56 +63665,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44860] = 21, - ACTIONS(314), 1, + [45079] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1995), 1, + STATE(1937), 1, sym_expression, - STATE(2379), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -64907,7 +63722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -64924,118 +63739,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44955] = 9, - ACTIONS(1360), 1, - anon_sym_else, - ACTIONS(1364), 1, - anon_sym_finally, - ACTIONS(1366), 1, - anon_sym_except_STAR, - STATE(751), 1, - sym_else_clause, - STATE(831), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(667), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1340), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1338), 31, - 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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [45026] = 21, - ACTIONS(314), 1, + [45174] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(2028), 1, + STATE(1914), 1, sym_expression, - STATE(2379), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -65043,7 +63796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -65060,59 +63813,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [45121] = 22, - ACTIONS(608), 1, + [45269] = 21, + ACTIONS(306), 1, + sym_identifier, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(624), 1, - anon_sym_LBRACE, - ACTIONS(630), 1, - sym_string_start, - ACTIONS(914), 1, - anon_sym_STAR, - ACTIONS(920), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(922), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(1382), 1, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(1388), 1, - sym_identifier, - STATE(1032), 1, + ACTIONS(332), 1, + sym_string_start, + ACTIONS(1202), 1, + anon_sym_STAR, + STATE(994), 1, + sym_primary_expression, + STATE(996), 1, sym_string, - STATE(1236), 1, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1316), 1, - sym_primary_expression, - STATE(1960), 1, + STATE(1565), 1, sym_expression, - STATE(2363), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - STATE(1186), 2, - sym_attribute, - sym_subscript, - ACTIONS(618), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(626), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1390), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1343), 7, + ACTIONS(328), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -65120,9 +63870,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1341), 14, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -65135,56 +63887,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [45218] = 21, - ACTIONS(63), 1, + [45364] = 21, + ACTIONS(306), 1, + sym_identifier, + ACTIONS(308), 1, + anon_sym_LPAREN, + ACTIONS(314), 1, + anon_sym_LBRACK, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(67), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(266), 1, - sym_identifier, - ACTIONS(300), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(302), 1, - anon_sym_LPAREN, - ACTIONS(306), 1, - anon_sym_LBRACK, - ACTIONS(1160), 1, + ACTIONS(332), 1, + sym_string_start, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1034), 1, - sym_string, - STATE(1036), 1, + STATE(994), 1, sym_primary_expression, - STATE(1172), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1786), 1, + STATE(1934), 1, sym_expression, - STATE(2504), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(75), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(281), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1329), 7, + ACTIONS(328), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -65192,7 +63944,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -65209,56 +63961,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [45313] = 21, - ACTIONS(314), 1, + [45459] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1994), 1, + STATE(1563), 1, sym_expression, - STATE(2379), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -65266,7 +64018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -65283,56 +64035,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [45408] = 21, - ACTIONS(314), 1, + [45554] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1984), 1, + STATE(1449), 1, sym_expression, - STATE(2379), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -65340,7 +64092,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -65357,56 +64109,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [45503] = 21, - ACTIONS(314), 1, + [45649] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1953), 1, + STATE(1564), 1, sym_expression, - STATE(2379), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -65414,7 +64166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -65431,56 +64183,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [45598] = 21, - ACTIONS(632), 1, - sym_identifier, - ACTIONS(634), 1, + [45744] = 22, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(640), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(650), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(654), 1, - anon_sym_await, - ACTIONS(656), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(778), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(780), 1, + ACTIONS(966), 1, anon_sym_lambda, - ACTIONS(1138), 1, + ACTIONS(1154), 1, anon_sym_STAR, - STATE(1037), 1, + ACTIONS(1358), 1, + anon_sym_await, + ACTIONS(1360), 1, + sym_identifier, + STATE(1062), 1, sym_string, - STATE(1038), 1, + STATE(1239), 1, sym_primary_expression, - STATE(1338), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1853), 1, + STATE(1868), 1, sym_expression, - STATE(2420), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + STATE(1350), 2, + sym_attribute, + sym_subscript, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(638), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(652), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1278), 7, + ACTIONS(1362), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -65488,11 +64243,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1277), 16, + STATE(1469), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -65505,56 +64258,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [45693] = 21, - ACTIONS(314), 1, + [45841] = 21, + ACTIONS(692), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(324), 1, - anon_sym_not, - ACTIONS(330), 1, - anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(964), 1, + anon_sym_not, + ACTIONS(966), 1, + anon_sym_lambda, + ACTIONS(1154), 1, anon_sym_STAR, - STATE(1071), 1, + STATE(1062), 1, sym_string, - STATE(1079), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1976), 1, + STATE(1823), 1, sym_expression, - STATE(2379), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(698), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -65562,7 +64315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -65579,56 +64332,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [45788] = 21, - ACTIONS(314), 1, + [45936] = 21, + ACTIONS(692), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(324), 1, - anon_sym_not, - ACTIONS(330), 1, - anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(964), 1, + anon_sym_not, + ACTIONS(966), 1, + anon_sym_lambda, + ACTIONS(1154), 1, anon_sym_STAR, - STATE(1071), 1, + STATE(1062), 1, sym_string, - STATE(1079), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1979), 1, + STATE(1522), 1, sym_expression, - STATE(2379), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(698), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -65636,7 +64389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -65653,56 +64406,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [45883] = 21, - ACTIONS(63), 1, + [46031] = 21, + ACTIONS(306), 1, + sym_identifier, + ACTIONS(308), 1, + anon_sym_LPAREN, + ACTIONS(314), 1, + anon_sym_LBRACK, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(67), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(266), 1, - sym_identifier, - ACTIONS(300), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(302), 1, - anon_sym_LPAREN, - ACTIONS(306), 1, - anon_sym_LBRACK, - ACTIONS(1160), 1, + ACTIONS(332), 1, + sym_string_start, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1034), 1, - sym_string, - STATE(1036), 1, + STATE(994), 1, sym_primary_expression, - STATE(1172), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1842), 1, + STATE(1932), 1, sym_expression, - STATE(2504), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(75), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(281), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1329), 7, + ACTIONS(328), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -65710,7 +64463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -65727,118 +64480,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [45978] = 9, - ACTIONS(1360), 1, - anon_sym_else, - ACTIONS(1362), 1, - anon_sym_except, - ACTIONS(1364), 1, - anon_sym_finally, - STATE(751), 1, - sym_else_clause, - STATE(831), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(665), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1340), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1338), 31, - 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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [46049] = 21, - ACTIONS(314), 1, + [46126] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(1926), 1, sym_expression, - STATE(2379), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -65846,7 +64537,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -65863,130 +64554,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [46144] = 21, - ACTIONS(314), 1, + [46221] = 21, + ACTIONS(306), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, - sym_list_splat_pattern, - STATE(1624), 1, - sym_expression, - STATE(2379), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(332), 2, - sym_ellipsis, - sym_float, - ACTIONS(328), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(320), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(336), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1456), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1455), 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, - [46239] = 21, - ACTIONS(314), 1, - sym_identifier, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_LBRACK, - ACTIONS(324), 1, - anon_sym_not, - ACTIONS(330), 1, - anon_sym_lambda, - ACTIONS(334), 1, - anon_sym_LBRACE, - ACTIONS(338), 1, - anon_sym_await, - ACTIONS(340), 1, - sym_string_start, - ACTIONS(1204), 1, - anon_sym_STAR, - STATE(1071), 1, + STATE(996), 1, sym_string, - STATE(1079), 1, - sym_primary_expression, - STATE(1366), 1, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1974), 1, + STATE(1906), 1, sym_expression, - STATE(2379), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -65994,7 +64611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -66011,204 +64628,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [46334] = 21, - ACTIONS(63), 1, - anon_sym_not, - ACTIONS(67), 1, - anon_sym_lambda, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(266), 1, - sym_identifier, - ACTIONS(300), 1, - anon_sym_await, - ACTIONS(302), 1, - anon_sym_LPAREN, + [46316] = 21, ACTIONS(306), 1, - anon_sym_LBRACK, - ACTIONS(1160), 1, - anon_sym_STAR, - STATE(1034), 1, - sym_string, - STATE(1036), 1, - sym_primary_expression, - STATE(1172), 1, - sym_list_splat_pattern, - STATE(1311), 1, - sym_expression, - STATE(2504), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(71), 2, - sym_ellipsis, - sym_float, - ACTIONS(65), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(75), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(281), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1329), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1344), 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, - [46429] = 21, - ACTIONS(314), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_not, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(330), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - STATE(1071), 1, - sym_string, - STATE(1079), 1, + STATE(994), 1, sym_primary_expression, - STATE(1366), 1, + STATE(996), 1, + sym_string, + STATE(1406), 1, sym_list_splat_pattern, STATE(1918), 1, sym_expression, - STATE(2379), 1, + STATE(2513), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(312), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1456), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1455), 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, - [46524] = 21, - ACTIONS(63), 1, - anon_sym_not, - ACTIONS(67), 1, - anon_sym_lambda, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(266), 1, - sym_identifier, - ACTIONS(300), 1, - anon_sym_await, - ACTIONS(302), 1, - anon_sym_LPAREN, - ACTIONS(306), 1, - anon_sym_LBRACK, - ACTIONS(1160), 1, - anon_sym_STAR, - STATE(1034), 1, - sym_string, - STATE(1036), 1, - sym_primary_expression, - STATE(1172), 1, - sym_list_splat_pattern, - STATE(1798), 1, - sym_expression, - STATE(2504), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(71), 2, - sym_ellipsis, - sym_float, - ACTIONS(65), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(75), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(281), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1329), 7, + STATE(1427), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -66216,7 +64685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1344), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -66233,56 +64702,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [46619] = 21, - ACTIONS(314), 1, + [46411] = 21, + ACTIONS(692), 1, sym_identifier, - ACTIONS(316), 1, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(324), 1, - anon_sym_not, - ACTIONS(330), 1, - anon_sym_lambda, - ACTIONS(334), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(338), 1, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(340), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(964), 1, + anon_sym_not, + ACTIONS(966), 1, + anon_sym_lambda, + ACTIONS(1154), 1, anon_sym_STAR, - STATE(1071), 1, + STATE(1062), 1, sym_string, - STATE(1079), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1456), 1, sym_list_splat_pattern, - STATE(1997), 1, + STATE(1824), 1, sym_expression, - STATE(2379), 1, + STATE(2494), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(698), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 4, + ACTIONS(712), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1456), 7, + STATE(1470), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -66290,7 +64759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1455), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -66307,92 +64776,77 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [46714] = 21, - ACTIONS(63), 1, - anon_sym_not, - ACTIONS(67), 1, - anon_sym_lambda, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(266), 1, - sym_identifier, - ACTIONS(300), 1, - anon_sym_await, - ACTIONS(302), 1, - anon_sym_LPAREN, - ACTIONS(306), 1, - anon_sym_LBRACK, - ACTIONS(1160), 1, - anon_sym_STAR, - STATE(1034), 1, - sym_string, - STATE(1036), 1, - sym_primary_expression, - STATE(1172), 1, - sym_list_splat_pattern, - STATE(2029), 1, - sym_expression, - STATE(2504), 1, - sym__named_expression_lhs, + [46506] = 7, + ACTIONS(1366), 1, + anon_sym_COMMA, + ACTIONS(1371), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, - sym_ellipsis, - sym_float, - ACTIONS(65), 3, + ACTIONS(1373), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1375), 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(1369), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(75), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(281), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1329), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1344), 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, - [46809] = 7, - ACTIONS(1394), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1364), 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46572] = 7, + ACTIONS(279), 1, anon_sym_COMMA, - ACTIONS(1399), 1, + ACTIONS(289), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1401), 2, + ACTIONS(291), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(1403), 13, + ACTIONS(302), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -66406,7 +64860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1397), 15, + ACTIONS(274), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -66422,7 +64876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 17, + ACTIONS(272), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -66440,18 +64894,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [46875] = 7, - ACTIONS(275), 1, - anon_sym_COMMA, - ACTIONS(285), 1, - anon_sym_COLON_EQ, + [46638] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(287), 2, + ACTIONS(1379), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1377), 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [46695] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1383), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1389), 3, anon_sym_EQ, - ACTIONS(298), 13, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1386), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1381), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -66465,11 +65004,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(270), 15, + [46756] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1393), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -66481,13 +65025,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(268), 17, + ACTIONS(1391), 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, @@ -66499,21 +65045,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [46941] = 8, - ACTIONS(1360), 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, + [46813] = 8, + ACTIONS(1322), 1, anon_sym_else, - ACTIONS(1409), 1, + ACTIONS(1399), 1, anon_sym_elif, - STATE(654), 1, + STATE(661), 1, aux_sym_if_statement_repeat1, - STATE(768), 1, + STATE(724), 1, sym_elif_clause, - STATE(829), 1, + STATE(842), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1405), 12, + ACTIONS(1395), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -66526,7 +65085,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1407), 31, + ACTIONS(1397), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66558,16 +65117,34 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47008] = 3, + [46880] = 6, + ACTIONS(1403), 1, + anon_sym_COMMA, + ACTIONS(1410), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1413), 16, + ACTIONS(1408), 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(1406), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -66579,15 +65156,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1411), 32, + ACTIONS(1401), 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, @@ -66599,34 +65174,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [47065] = 8, - ACTIONS(1360), 1, + [46943] = 8, + ACTIONS(1322), 1, anon_sym_else, - ACTIONS(1409), 1, + ACTIONS(1399), 1, anon_sym_elif, - STATE(679), 1, + STATE(655), 1, aux_sym_if_statement_repeat1, - STATE(768), 1, + STATE(724), 1, sym_elif_clause, - STATE(852), 1, + STATE(833), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1415), 12, + ACTIONS(1412), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -66639,7 +65201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1417), 31, + ACTIONS(1414), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66671,21 +65233,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47132] = 8, - ACTIONS(1342), 1, + [47010] = 8, + ACTIONS(1314), 1, anon_sym_else, - ACTIONS(1419), 1, + ACTIONS(1420), 1, anon_sym_elif, - STATE(683), 1, + STATE(662), 1, aux_sym_if_statement_repeat1, - STATE(761), 1, + STATE(726), 1, sym_elif_clause, - STATE(879), 1, + STATE(776), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1415), 12, + ACTIONS(1418), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -66698,7 +65260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1417), 31, + ACTIONS(1416), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66730,21 +65292,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47199] = 8, - ACTIONS(1360), 1, + [47077] = 8, + ACTIONS(1322), 1, anon_sym_else, - ACTIONS(1409), 1, + ACTIONS(1399), 1, anon_sym_elif, - STATE(662), 1, + STATE(639), 1, aux_sym_if_statement_repeat1, - STATE(768), 1, + STATE(724), 1, sym_elif_clause, - STATE(880), 1, + STATE(795), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1421), 12, + ACTIONS(1422), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -66757,7 +65319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1423), 31, + ACTIONS(1424), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66789,303 +65351,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47266] = 5, + [47144] = 5, + ACTIONS(1430), 1, + anon_sym_except_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1427), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1433), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1430), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1425), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [47327] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(347), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(603), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(344), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(342), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [47388] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1437), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1435), 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [47445] = 6, - ACTIONS(1441), 1, - anon_sym_COMMA, - ACTIONS(1448), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1446), 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(1444), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1439), 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [47508] = 6, - ACTIONS(1401), 1, - anon_sym_EQ, - ACTIONS(1452), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1403), 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(1455), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1450), 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [47571] = 8, - ACTIONS(1360), 1, - anon_sym_else, - ACTIONS(1409), 1, - anon_sym_elif, - STATE(679), 1, - aux_sym_if_statement_repeat1, - STATE(768), 1, - sym_elif_clause, - STATE(830), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1457), 12, + STATE(644), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1428), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -67096,7 +65373,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1459), 31, + ACTIONS(1426), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67108,11 +65385,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67128,77 +65407,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47638] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1463), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1461), 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [47695] = 8, - ACTIONS(1342), 1, - anon_sym_else, - ACTIONS(1419), 1, - anon_sym_elif, - STATE(669), 1, - aux_sym_if_statement_repeat1, - STATE(761), 1, - sym_elif_clause, - STATE(885), 1, - sym_else_clause, + [47205] = 5, + ACTIONS(1437), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1421), 12, - sym__dedent, + STATE(645), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1433), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -67209,7 +65429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1423), 31, + ACTIONS(1435), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67221,11 +65441,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67241,16 +65463,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47762] = 5, - ACTIONS(1469), 1, - anon_sym_except, + [47266] = 5, + ACTIONS(1440), 1, + anon_sym_except_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(665), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1465), 12, + STATE(646), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1428), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -67263,7 +65485,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1467), 33, + ACTIONS(1426), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67297,75 +65519,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47823] = 6, - ACTIONS(1394), 1, - anon_sym_COMMA, - ACTIONS(1401), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1403), 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(1397), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1392), 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [47886] = 5, - ACTIONS(1476), 1, - anon_sym_except_STAR, + [47327] = 5, + ACTIONS(1443), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(667), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1472), 12, + STATE(647), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1433), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -67376,7 +65541,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1474), 33, + ACTIONS(1435), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67410,16 +65575,23 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47947] = 3, + [47388] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1481), 16, + ACTIONS(351), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(605), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(348), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -67429,19 +65601,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1479), 32, + ACTIONS(346), 29, 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, @@ -67464,21 +65631,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [48004] = 8, - ACTIONS(1342), 1, + [47449] = 8, + ACTIONS(1314), 1, anon_sym_else, - ACTIONS(1419), 1, + ACTIONS(1420), 1, anon_sym_elif, - STATE(683), 1, + STATE(642), 1, aux_sym_if_statement_repeat1, - STATE(761), 1, + STATE(726), 1, sym_elif_clause, - STATE(834), 1, + STATE(814), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1457), 12, + ACTIONS(1412), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -67491,7 +65658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1459), 31, + ACTIONS(1414), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67523,21 +65690,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48071] = 8, - ACTIONS(1342), 1, + [47516] = 8, + ACTIONS(1314), 1, anon_sym_else, - ACTIONS(1419), 1, + ACTIONS(1420), 1, anon_sym_elif, - STATE(655), 1, + STATE(662), 1, aux_sym_if_statement_repeat1, - STATE(761), 1, + STATE(726), 1, sym_elif_clause, - STATE(835), 1, + STATE(817), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1405), 12, + ACTIONS(1395), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -67550,7 +65717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1407), 31, + ACTIONS(1397), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67582,11 +65749,68 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48138] = 3, + [47583] = 6, + ACTIONS(1448), 1, + anon_sym_COMMA, + ACTIONS(1455), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1453), 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(1451), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1446), 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47646] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1481), 16, + ACTIONS(1459), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -67603,7 +65827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1479), 32, + ACTIONS(1457), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -67636,11 +65860,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [48195] = 3, + [47703] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1413), 16, + ACTIONS(1463), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -67657,7 +65881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1411), 32, + ACTIONS(1461), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -67690,11 +65914,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [48252] = 3, + [47760] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1485), 16, + ACTIONS(1463), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -67711,7 +65935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1483), 32, + ACTIONS(1461), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -67744,18 +65968,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [48309] = 5, - ACTIONS(1487), 1, - anon_sym_except, + [47817] = 8, + ACTIONS(1322), 1, + anon_sym_else, + ACTIONS(1399), 1, + anon_sym_elif, + STATE(661), 1, + aux_sym_if_statement_repeat1, + STATE(724), 1, + sym_elif_clause, + STATE(793), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(674), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1465), 12, - sym__dedent, + ACTIONS(1418), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -67766,7 +65995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1467), 33, + ACTIONS(1416), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67778,13 +66007,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67800,30 +66027,143 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48370] = 6, - ACTIONS(1492), 1, - anon_sym_COMMA, - ACTIONS(1499), 1, - anon_sym_EQ, + [47884] = 8, + ACTIONS(1314), 1, + anon_sym_else, + ACTIONS(1420), 1, + anon_sym_elif, + STATE(650), 1, + aux_sym_if_statement_repeat1, + STATE(726), 1, + sym_elif_clause, + STATE(759), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1497), 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, + ACTIONS(1422), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1424), 31, + 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_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [47951] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1379), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1377), 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [48008] = 6, + ACTIONS(1373), 1, + anon_sym_EQ, + ACTIONS(1467), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1375), 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(1495), 15, + ACTIONS(1470), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -67839,7 +66179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1490), 17, + ACTIONS(1465), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -67857,18 +66197,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [48433] = 5, - ACTIONS(1501), 1, - anon_sym_except_STAR, + [48071] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(676), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1472), 12, - sym__dedent, + ACTIONS(1474), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1472), 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [48128] = 6, + ACTIONS(1366), 1, + anon_sym_COMMA, + ACTIONS(1373), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1375), 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(1369), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1364), 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [48191] = 6, + ACTIONS(1480), 1, + anon_sym_elif, + STATE(661), 1, + aux_sym_if_statement_repeat1, + STATE(724), 1, + sym_elif_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1476), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -67879,7 +66331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1474), 33, + ACTIONS(1478), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67897,7 +66349,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, @@ -67913,11 +66364,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48494] = 3, + [48253] = 6, + ACTIONS(1483), 1, + anon_sym_elif, + STATE(662), 1, + aux_sym_if_statement_repeat1, + STATE(726), 1, + sym_elif_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1506), 12, + ACTIONS(1476), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -67930,7 +66387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1504), 35, + ACTIONS(1478), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67942,15 +66399,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67966,13 +66420,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48550] = 3, + [48315] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1510), 12, - sym__dedent, + ACTIONS(1486), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -67983,7 +66437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1508), 35, + ACTIONS(1488), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67995,14 +66449,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_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -68019,19 +66472,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48606] = 6, - ACTIONS(1516), 1, - anon_sym_elif, - STATE(679), 1, - aux_sym_if_statement_repeat1, - STATE(768), 1, - sym_elif_clause, + [48370] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1512), 12, + ACTIONS(1492), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -68042,7 +66489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1514), 32, + ACTIONS(1490), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68054,12 +66501,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_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -68075,13 +66524,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48668] = 3, + [48425] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1510), 12, + ACTIONS(1496), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -68092,7 +66541,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1508), 35, + ACTIONS(1494), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68104,14 +66553,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_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -68128,11 +66576,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48724] = 3, + [48480] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1519), 12, + ACTIONS(1492), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68145,7 +66593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1521), 35, + ACTIONS(1490), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68160,7 +66608,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_elif, anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -68181,15 +66628,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48780] = 3, + [48535] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1519), 12, - sym__dedent, + ACTIONS(1498), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -68198,7 +66646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1521), 35, + ACTIONS(1500), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68210,10 +66658,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_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -68234,19 +66680,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48836] = 6, - ACTIONS(1523), 1, - anon_sym_elif, - STATE(683), 1, - aux_sym_if_statement_repeat1, - STATE(761), 1, - sym_elif_clause, + [48590] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1512), 12, - sym__dedent, + ACTIONS(1502), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -68257,7 +66697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1514), 32, + ACTIONS(1504), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68275,6 +66715,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, @@ -68290,15 +66732,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48898] = 3, + [48645] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1526), 12, + ACTIONS(1502), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -68307,7 +66750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1528), 35, + ACTIONS(1504), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68319,10 +66762,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_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -68343,13 +66784,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48954] = 3, + [48700] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1530), 12, + ACTIONS(1502), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -68360,7 +66801,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1532), 35, + ACTIONS(1504), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68372,14 +66813,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_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -68396,13 +66836,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49010] = 3, + [48755] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1526), 12, - sym__dedent, + ACTIONS(1506), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -68413,7 +66853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1528), 35, + ACTIONS(1508), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68425,14 +66865,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_case, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -68449,7 +66888,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49066] = 3, + [48810] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -68466,7 +66905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1504), 35, + ACTIONS(1508), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68481,7 +66920,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_elif, anon_sym_else, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -68502,15 +66940,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49122] = 3, + [48865] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1530), 12, + ACTIONS(1512), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -68519,7 +66958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1532), 35, + ACTIONS(1510), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68531,10 +66970,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_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -68555,11 +66992,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49178] = 3, + [48920] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1510), 12, + ACTIONS(1516), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68572,7 +67009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1508), 34, + ACTIONS(1514), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68607,13 +67044,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49233] = 3, + [48975] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1506), 13, + ACTIONS(1520), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -68625,7 +67062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1504), 33, + ACTIONS(1518), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68659,11 +67096,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49288] = 3, + [49030] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1534), 12, + ACTIONS(1522), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68676,7 +67113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1536), 34, + ACTIONS(1524), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68711,13 +67148,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49343] = 3, + [49085] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1538), 13, + ACTIONS(1528), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -68729,7 +67166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1540), 33, + ACTIONS(1526), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68763,15 +67200,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49398] = 3, + [49140] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1534), 12, - sym__dedent, + ACTIONS(1530), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -68780,7 +67218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1536), 34, + ACTIONS(1532), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68798,7 +67236,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, @@ -68815,13 +67252,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49453] = 3, + [49195] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1506), 12, - sym__dedent, + ACTIONS(1502), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -68844,13 +67281,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, @@ -68867,16 +67304,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49508] = 3, + [49250] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 13, + ACTIONS(1516), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -68885,7 +67321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1542), 33, + ACTIONS(1514), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68897,6 +67333,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, @@ -68919,15 +67356,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49563] = 3, + [49305] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1548), 12, + ACTIONS(1498), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -68936,7 +67374,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1546), 34, + ACTIONS(1500), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68954,7 +67392,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, @@ -68971,15 +67408,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49618] = 3, + [49360] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1526), 12, + ACTIONS(1492), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -68988,7 +67426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1528), 34, + ACTIONS(1490), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69006,7 +67444,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, @@ -69023,21 +67460,85 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49673] = 6, - ACTIONS(1554), 1, - anon_sym_case, - STATE(747), 1, - aux_sym_match_statement_repeat2, - STATE(797), 1, - sym_case_clause, + [49415] = 20, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(332), 1, + sym_string_start, + ACTIONS(1534), 1, + sym_identifier, + ACTIONS(1536), 1, + anon_sym_LPAREN, + ACTIONS(1538), 1, + anon_sym_STAR, + ACTIONS(1542), 1, + anon_sym_LBRACK, + ACTIONS(1544), 1, + anon_sym_await, + STATE(996), 1, + sym_string, + STATE(1572), 1, + sym_list_splat_pattern, + STATE(1603), 1, + sym_primary_expression, + STATE(1917), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1550), 12, + ACTIONS(324), 2, + sym_ellipsis, + sym_float, + STATE(1569), 2, + sym_attribute, + sym_subscript, + STATE(1960), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(880), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(328), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(868), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1540), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1426), 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, + [49504] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1516), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -69046,7 +67547,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1552), 31, + ACTIONS(1514), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69058,11 +67559,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -69078,16 +67581,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49734] = 3, + [49559] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1558), 13, + ACTIONS(1486), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -69096,7 +67598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1556), 33, + ACTIONS(1488), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69114,6 +67616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -69130,15 +67633,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49789] = 3, + [49614] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1562), 12, - sym__dedent, + ACTIONS(1516), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -69147,7 +67651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1560), 34, + ACTIONS(1514), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69165,7 +67669,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, @@ -69182,15 +67685,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49844] = 3, + [49669] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1506), 12, + ACTIONS(1502), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -69199,7 +67703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1504), 34, + ACTIONS(1504), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69217,7 +67721,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, @@ -69234,11 +67737,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49899] = 3, + [49724] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1530), 12, + ACTIONS(1548), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69251,7 +67754,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1532), 34, + ACTIONS(1546), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69286,16 +67789,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49954] = 3, + [49779] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1566), 13, + ACTIONS(1552), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -69304,7 +67806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1564), 33, + ACTIONS(1550), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69322,6 +67824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -69338,11 +67841,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50009] = 3, + [49834] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 12, + ACTIONS(1498), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69355,7 +67858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1568), 34, + ACTIONS(1500), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69367,13 +67870,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, @@ -69390,15 +67893,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50064] = 3, + [49889] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1574), 12, - sym__dedent, + ACTIONS(1528), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -69407,7 +67911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1572), 34, + ACTIONS(1526), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69425,7 +67929,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, @@ -69442,11 +67945,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50119] = 3, + [49944] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1519), 12, + ACTIONS(1506), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69459,7 +67962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1521), 34, + ACTIONS(1508), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69494,13 +67997,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50174] = 3, + [49999] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1578), 12, - sym__dedent, + ACTIONS(1516), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -69511,7 +68014,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1576), 34, + ACTIONS(1514), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69523,13 +68026,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, @@ -69546,17 +68049,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50229] = 6, - ACTIONS(1584), 1, - anon_sym_case, - STATE(721), 1, - aux_sym_match_statement_repeat2, - STATE(795), 1, - sym_case_clause, + [50054] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1582), 12, + ACTIONS(1492), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69569,7 +68066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1580), 31, + ACTIONS(1490), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69581,11 +68078,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, @@ -69601,90 +68101,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50290] = 20, - ACTIONS(334), 1, - anon_sym_LBRACE, - ACTIONS(340), 1, - sym_string_start, - ACTIONS(1586), 1, - sym_identifier, - ACTIONS(1588), 1, - anon_sym_LPAREN, - ACTIONS(1590), 1, - anon_sym_STAR, - ACTIONS(1594), 1, - anon_sym_LBRACK, - ACTIONS(1596), 1, - anon_sym_await, - STATE(1071), 1, - sym_string, - STATE(1630), 1, - sym_list_splat_pattern, - STATE(1653), 1, - sym_primary_expression, - STATE(2004), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(332), 2, - sym_ellipsis, - sym_float, - STATE(1632), 2, - sym_attribute, - sym_subscript, - STATE(1980), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(904), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(336), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(908), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(1592), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1455), 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, - [50379] = 6, - ACTIONS(1554), 1, - anon_sym_case, - STATE(738), 1, - aux_sym_match_statement_repeat2, - STATE(797), 1, - sym_case_clause, + [50109] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1582), 12, + ACTIONS(1530), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -69693,7 +68119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1580), 31, + ACTIONS(1532), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69705,11 +68131,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -69725,16 +68153,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50440] = 3, + [50164] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 13, + ACTIONS(1516), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -69743,7 +68170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1542), 33, + ACTIONS(1514), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69761,6 +68188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -69777,13 +68205,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50495] = 3, + [50219] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1548), 12, + ACTIONS(1506), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -69794,7 +68222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1546), 34, + ACTIONS(1508), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69806,13 +68234,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, @@ -69829,11 +68257,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50550] = 3, + [50274] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1530), 13, + ACTIONS(1512), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69847,7 +68275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1532), 33, + ACTIONS(1510), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69881,7 +68309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50605] = 3, + [50329] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -69899,7 +68327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1504), 33, + ACTIONS(1508), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69933,15 +68361,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50660] = 3, + [50384] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1578), 12, + ACTIONS(1492), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -69950,7 +68379,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1576), 34, + ACTIONS(1490), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69968,7 +68397,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, @@ -69985,16 +68413,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50715] = 3, + [50439] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1526), 13, + ACTIONS(1498), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -70003,7 +68430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1528), 33, + ACTIONS(1500), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70021,6 +68448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -70037,19 +68465,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50770] = 6, - ACTIONS(1584), 1, - anon_sym_case, - STATE(721), 1, - aux_sym_match_statement_repeat2, - STATE(795), 1, - sym_case_clause, + [50494] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1600), 12, - sym__dedent, + ACTIONS(1496), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -70060,7 +68482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1598), 31, + ACTIONS(1494), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70072,11 +68494,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, @@ -70092,13 +68517,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50831] = 3, + [50549] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1538), 13, - sym__dedent, + ACTIONS(1506), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -70110,7 +68535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1540), 33, + ACTIONS(1508), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70144,19 +68569,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50886] = 6, - ACTIONS(1584), 1, - anon_sym_case, - STATE(708), 1, - aux_sym_match_statement_repeat2, - STATE(795), 1, - sym_case_clause, + [50604] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1604), 12, - sym__dedent, + ACTIONS(1492), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -70167,7 +68586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1602), 31, + ACTIONS(1490), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70179,11 +68598,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, @@ -70199,16 +68621,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50947] = 3, + [50659] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1526), 13, + ACTIONS(1556), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -70217,7 +68638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1528), 33, + ACTIONS(1554), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70235,6 +68656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -70251,19 +68673,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51002] = 6, - ACTIONS(1610), 1, - anon_sym_case, - STATE(721), 1, - aux_sym_match_statement_repeat2, - STATE(795), 1, - sym_case_clause, + [50714] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1608), 12, - sym__dedent, + ACTIONS(1498), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -70274,7 +68690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1606), 31, + ACTIONS(1500), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70286,11 +68702,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, @@ -70306,17 +68725,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51063] = 6, - ACTIONS(1584), 1, - anon_sym_case, - STATE(721), 1, - aux_sym_match_statement_repeat2, - STATE(795), 1, - sym_case_clause, + [50769] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1615), 12, + ACTIONS(1502), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70329,7 +68742,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1613), 31, + ACTIONS(1504), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70341,11 +68754,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_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -70361,61 +68777,61 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51124] = 20, - ACTIONS(334), 1, + [50824] = 20, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1586), 1, + ACTIONS(1534), 1, sym_identifier, - ACTIONS(1588), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_STAR, - ACTIONS(1594), 1, + ACTIONS(1542), 1, anon_sym_LBRACK, - ACTIONS(1596), 1, + ACTIONS(1544), 1, anon_sym_await, - STATE(1071), 1, + STATE(996), 1, sym_string, - STATE(1630), 1, + STATE(1572), 1, sym_list_splat_pattern, - STATE(1653), 1, + STATE(1603), 1, sym_primary_expression, - STATE(2004), 1, + STATE(1917), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - STATE(1632), 2, + STATE(1569), 2, sym_attribute, sym_subscript, - STATE(1980), 2, + STATE(1960), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(904), 3, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(892), 4, + ACTIONS(884), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(1592), 4, + ACTIONS(1540), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1455), 14, + STATE(1426), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -70430,16 +68846,15 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [51213] = 3, + [50913] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1519), 13, + ACTIONS(1552), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -70448,59 +68863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1521), 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_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - 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, - [51268] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1510), 13, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_except_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1508), 33, + ACTIONS(1550), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70518,6 +68881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -70534,66 +68898,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51323] = 6, - ACTIONS(1554), 1, - anon_sym_case, - STATE(736), 1, - aux_sym_match_statement_repeat2, - STATE(797), 1, - sym_case_clause, + [50968] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1619), 31, - 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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [51384] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1530), 12, + ACTIONS(1548), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70606,7 +68915,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1532), 34, + ACTIONS(1546), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70641,13 +68950,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51439] = 3, + [51023] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1519), 13, - sym__dedent, + ACTIONS(1520), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -70659,7 +68968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1521), 33, + ACTIONS(1518), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70693,16 +69002,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51494] = 3, + [51078] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1510), 13, + ACTIONS(1556), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -70711,7 +69019,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1508), 33, + ACTIONS(1554), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70729,6 +69037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -70745,11 +69054,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51549] = 3, + [51133] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1526), 12, + ACTIONS(1498), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70762,7 +69071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1528), 34, + ACTIONS(1500), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70774,13 +69083,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, @@ -70797,72 +69106,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51604] = 6, - ACTIONS(1584), 1, - anon_sym_case, - STATE(717), 1, - aux_sym_match_statement_repeat2, - STATE(795), 1, - sym_case_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1617), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1619), 31, - 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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [51665] = 6, - ACTIONS(1584), 1, - anon_sym_case, - STATE(721), 1, - aux_sym_match_statement_repeat2, - STATE(795), 1, - sym_case_clause, + [51188] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1623), 12, + ACTIONS(1522), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70875,7 +69123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1621), 31, + ACTIONS(1524), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70887,11 +69135,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, @@ -70907,17 +69158,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51726] = 6, - ACTIONS(1584), 1, - anon_sym_case, - STATE(722), 1, - aux_sym_match_statement_repeat2, - STATE(795), 1, - sym_case_clause, + [51243] = 5, + ACTIONS(1314), 1, + anon_sym_else, + STATE(764), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1627), 12, + ACTIONS(1560), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70930,7 +69179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1625), 31, + ACTIONS(1558), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70962,63 +69211,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51787] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1574), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1572), 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, + [51301] = 5, + ACTIONS(1322), 1, 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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [51842] = 3, + STATE(826), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 12, + ACTIONS(1562), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71031,7 +69232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1568), 34, + ACTIONS(1564), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71043,14 +69244,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, @@ -71066,17 +69264,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51897] = 6, - ACTIONS(1554), 1, - anon_sym_case, - STATE(738), 1, - aux_sym_match_statement_repeat2, - STATE(797), 1, - sym_case_clause, + [51359] = 5, + ACTIONS(1322), 1, + anon_sym_else, + STATE(770), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1600), 12, + ACTIONS(1566), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71089,7 +69285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1598), 31, + ACTIONS(1568), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71121,19 +69317,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51958] = 6, - ACTIONS(1554), 1, - anon_sym_case, - STATE(710), 1, - aux_sym_match_statement_repeat2, - STATE(797), 1, - sym_case_clause, + [51417] = 5, + ACTIONS(1318), 1, + anon_sym_finally, + STATE(799), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1604), 12, + ACTIONS(1572), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -71144,7 +69338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1602), 31, + ACTIONS(1570), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71176,17 +69370,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52019] = 6, - ACTIONS(1629), 1, - anon_sym_case, - STATE(738), 1, - aux_sym_match_statement_repeat2, - STATE(797), 1, - sym_case_clause, + [51475] = 5, + ACTIONS(1322), 1, + anon_sym_else, + STATE(803), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1608), 12, + ACTIONS(1574), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71199,7 +69391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1606), 31, + ACTIONS(1576), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71231,19 +69423,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52080] = 6, - ACTIONS(1554), 1, - anon_sym_case, - STATE(738), 1, - aux_sym_match_statement_repeat2, - STATE(797), 1, - sym_case_clause, + [51533] = 5, + ACTIONS(1314), 1, + anon_sym_else, + STATE(805), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1615), 12, + ACTIONS(1574), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -71254,7 +69444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1613), 31, + ACTIONS(1576), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71286,19 +69476,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52141] = 6, - ACTIONS(1584), 1, - anon_sym_case, - STATE(732), 1, - aux_sym_match_statement_repeat2, - STATE(795), 1, - sym_case_clause, + [51591] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1550), 12, - sym__dedent, + ACTIONS(1578), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -71309,7 +69493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1552), 31, + ACTIONS(1580), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71321,6 +69505,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, @@ -71341,16 +69527,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52202] = 3, + [51645] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1530), 13, + ACTIONS(1578), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -71359,7 +69544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1532), 33, + ACTIONS(1580), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71371,13 +69556,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -71393,16 +69578,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52257] = 3, + [51699] = 5, + ACTIONS(1314), 1, + anon_sym_else, + STATE(758), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1566), 13, + ACTIONS(1566), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -71411,7 +69599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1564), 33, + ACTIONS(1568), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71423,13 +69611,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -71445,16 +69631,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52312] = 3, + [51757] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1558), 13, + ACTIONS(1582), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_PLUS, @@ -71463,7 +69648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1556), 33, + ACTIONS(1584), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71475,13 +69660,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -71497,13 +69682,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52367] = 3, + [51811] = 5, + ACTIONS(1318), 1, + anon_sym_finally, + STATE(769), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1562), 12, + ACTIONS(1588), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -71514,7 +69703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1560), 34, + ACTIONS(1586), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71526,14 +69715,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, @@ -71549,13 +69735,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52422] = 3, + [51869] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1510), 12, + ACTIONS(1582), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -71566,7 +69752,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1508), 34, + ACTIONS(1584), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71578,14 +69764,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, anon_sym_global, @@ -71601,17 +69786,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52477] = 6, - ACTIONS(1554), 1, - anon_sym_case, - STATE(739), 1, - aux_sym_match_statement_repeat2, - STATE(797), 1, - sym_case_clause, + [51923] = 5, + ACTIONS(1326), 1, + anon_sym_finally, + STATE(744), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1627), 12, + ACTIONS(1572), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71624,7 +69807,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1625), 31, + ACTIONS(1570), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71656,17 +69839,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52538] = 6, - ACTIONS(1554), 1, - anon_sym_case, - STATE(738), 1, - aux_sym_match_statement_repeat2, - STATE(797), 1, - sym_case_clause, + [51981] = 5, + ACTIONS(1322), 1, + anon_sym_else, + STATE(781), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1623), 12, + ACTIONS(1590), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71679,7 +69860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1621), 31, + ACTIONS(1592), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71711,13 +69892,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52599] = 3, + [52039] = 5, + ACTIONS(1314), 1, + anon_sym_else, + STATE(774), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1519), 12, + ACTIONS(1596), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -71728,7 +69913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1521), 34, + ACTIONS(1594), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71740,14 +69925,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, @@ -71763,13 +69945,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52654] = 3, + [52097] = 5, + ACTIONS(1314), 1, + anon_sym_else, + STATE(762), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1632), 12, + ACTIONS(1590), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -71780,7 +69966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1634), 33, + ACTIONS(1592), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71792,8 +69978,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, @@ -71814,17 +69998,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52708] = 5, - ACTIONS(1346), 1, - anon_sym_finally, - STATE(898), 1, - sym_finally_clause, + [52155] = 5, + ACTIONS(1322), 1, + anon_sym_else, + STATE(779), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1638), 12, - sym__dedent, + ACTIONS(1560), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -71835,7 +70019,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1636), 31, + ACTIONS(1558), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71867,17 +70051,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52766] = 5, - ACTIONS(1364), 1, - anon_sym_finally, - STATE(823), 1, - sym_finally_clause, + [52213] = 5, + ACTIONS(1314), 1, + anon_sym_else, + STATE(837), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1638), 12, + ACTIONS(1562), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -71888,7 +70072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1636), 31, + ACTIONS(1564), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71920,15 +70104,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52824] = 5, - ACTIONS(1360), 1, + [52271] = 5, + ACTIONS(1322), 1, anon_sym_else, - STATE(836), 1, + STATE(791), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1640), 12, + ACTIONS(1596), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71941,7 +70125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1642), 31, + ACTIONS(1594), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71973,15 +70157,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52882] = 5, - ACTIONS(1360), 1, - anon_sym_else, - STATE(868), 1, - sym_else_clause, + [52329] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1644), 12, + ACTIONS(1598), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71994,7 +70174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1646), 31, + ACTIONS(1600), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72006,6 +70186,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, @@ -72026,17 +70208,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52940] = 5, - ACTIONS(1364), 1, - anon_sym_finally, - STATE(886), 1, - sym_finally_clause, + [52383] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1648), 12, + ACTIONS(1598), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -72047,7 +70225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1650), 31, + ACTIONS(1600), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72059,6 +70237,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, @@ -72079,13 +70259,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52998] = 3, + [52437] = 5, + ACTIONS(1326), 1, + anon_sym_finally, + STATE(787), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1654), 12, - sym__dedent, + ACTIONS(1588), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -72096,7 +70280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1652), 33, + ACTIONS(1586), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72108,8 +70292,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, @@ -72130,68 +70312,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53052] = 5, - ACTIONS(1342), 1, - anon_sym_else, - STATE(828), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1658), 12, - sym__dedent, + [52495] = 21, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(332), 1, sym_string_start, + ACTIONS(1602), 1, + sym_identifier, + ACTIONS(1604), 1, anon_sym_LPAREN, + ACTIONS(1606), 1, + anon_sym_RPAREN, + ACTIONS(1608), 1, anon_sym_STAR, - anon_sym_AT, + ACTIONS(1612), 1, anon_sym_LBRACK, + ACTIONS(1614), 1, + anon_sym_await, + STATE(996), 1, + sym_string, + STATE(1600), 1, + sym_primary_expression, + STATE(1621), 1, + sym_list_splat_pattern, + STATE(2021), 1, + sym_pattern, + STATE(2472), 1, + sym__patterns, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(324), 2, + sym_ellipsis, + sym_float, + STATE(1627), 2, + sym_attribute, + sym_subscript, + STATE(2275), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1656), 31, - 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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(328), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [53110] = 5, - ACTIONS(1342), 1, - anon_sym_else, - STATE(893), 1, - sym_else_clause, + ACTIONS(1610), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1426), 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, + [52584] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1640), 12, + ACTIONS(1618), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -72204,7 +70397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1642), 31, + ACTIONS(1616), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72221,6 +70414,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, @@ -72236,13 +70430,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53168] = 3, + [52637] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1654), 12, + ACTIONS(1622), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -72253,7 +70447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1652), 33, + ACTIONS(1620), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72265,13 +70459,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -72287,68 +70480,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53222] = 5, - ACTIONS(1342), 1, - anon_sym_else, - STATE(901), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1644), 12, - sym__dedent, + [52690] = 21, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(332), 1, sym_string_start, + ACTIONS(1602), 1, + sym_identifier, + ACTIONS(1604), 1, anon_sym_LPAREN, + ACTIONS(1608), 1, anon_sym_STAR, - anon_sym_AT, + ACTIONS(1612), 1, anon_sym_LBRACK, + ACTIONS(1614), 1, + anon_sym_await, + ACTIONS(1624), 1, + anon_sym_RPAREN, + STATE(996), 1, + sym_string, + STATE(1600), 1, + sym_primary_expression, + STATE(1621), 1, + sym_list_splat_pattern, + STATE(2021), 1, + sym_pattern, + STATE(2426), 1, + sym__patterns, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(324), 2, + sym_ellipsis, + sym_float, + STATE(1627), 2, + sym_attribute, + sym_subscript, + STATE(2275), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1646), 31, - 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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(328), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [53280] = 5, - ACTIONS(1360), 1, - anon_sym_else, - STATE(877), 1, - sym_else_clause, + ACTIONS(1610), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1426), 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, + [52779] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1658), 12, + ACTIONS(1618), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72361,7 +70565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1656), 31, + ACTIONS(1616), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72378,6 +70582,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, @@ -72393,13 +70598,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53338] = 3, + [52832] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1662), 12, - sym__dedent, + ACTIONS(1622), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -72410,7 +70615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1660), 33, + ACTIONS(1620), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72422,13 +70627,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -72444,15 +70648,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53392] = 5, - ACTIONS(1360), 1, - anon_sym_else, - STATE(846), 1, - sym_else_clause, + [52885] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 12, + ACTIONS(1626), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72465,7 +70665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1666), 31, + ACTIONS(1628), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72497,15 +70697,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53450] = 5, - ACTIONS(1360), 1, - anon_sym_else, - STATE(821), 1, - sym_else_clause, + [52937] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 12, + ACTIONS(1630), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72518,7 +70714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1670), 31, + ACTIONS(1632), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72550,15 +70746,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53508] = 5, - ACTIONS(1342), 1, - anon_sym_else, - STATE(875), 1, - sym_else_clause, + [52989] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1674), 12, + ACTIONS(1636), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -72571,7 +70763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1672), 31, + ACTIONS(1634), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72603,11 +70795,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53566] = 3, + [53041] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1632), 12, + ACTIONS(1640), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -72620,7 +70812,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1634), 33, + ACTIONS(1638), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72632,8 +70824,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, @@ -72654,15 +70844,77 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53620] = 5, - ACTIONS(1342), 1, - anon_sym_else, - STATE(844), 1, - sym_else_clause, + [53093] = 20, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(332), 1, + sym_string_start, + ACTIONS(1202), 1, + anon_sym_STAR, + ACTIONS(1642), 1, + sym_identifier, + ACTIONS(1644), 1, + anon_sym_LPAREN, + ACTIONS(1648), 1, + anon_sym_LBRACK, + ACTIONS(1650), 1, + anon_sym_await, + STATE(996), 1, + sym_string, + STATE(1593), 1, + sym_primary_expression, + STATE(1604), 1, + sym_list_splat_pattern, + STATE(2006), 1, + sym_pattern, + STATE(2514), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 12, + ACTIONS(324), 2, + sym_ellipsis, + sym_float, + STATE(1585), 2, + sym_attribute, + sym_subscript, + STATE(1642), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(880), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(328), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1646), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1426), 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, + [53179] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1338), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -72675,7 +70927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1670), 31, + ACTIONS(1336), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72707,15 +70959,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53678] = 5, - ACTIONS(1360), 1, - anon_sym_else, - STATE(881), 1, - sym_else_clause, + [53231] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1674), 12, + ACTIONS(1652), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72728,7 +70976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1672), 31, + ACTIONS(1654), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72760,11 +71008,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53736] = 3, + [53283] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1662), 12, + ACTIONS(1656), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72777,7 +71025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1660), 33, + ACTIONS(1658), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72789,8 +71037,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, @@ -72811,17 +71057,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53790] = 5, - ACTIONS(1342), 1, - anon_sym_else, - STATE(841), 1, - sym_else_clause, + [53335] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 12, - sym__dedent, + ACTIONS(1338), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -72832,7 +71074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1666), 31, + ACTIONS(1336), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72864,17 +71106,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53848] = 5, - ACTIONS(1346), 1, - anon_sym_finally, - STATE(872), 1, - sym_finally_clause, + [53387] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1648), 12, - sym__dedent, + ACTIONS(1660), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -72885,7 +71123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1650), 31, + ACTIONS(1662), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72917,13 +71155,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53906] = 3, + [53439] = 20, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(332), 1, + sym_string_start, + ACTIONS(1202), 1, + anon_sym_STAR, + ACTIONS(1642), 1, + sym_identifier, + ACTIONS(1644), 1, + anon_sym_LPAREN, + ACTIONS(1648), 1, + anon_sym_LBRACK, + ACTIONS(1650), 1, + anon_sym_await, + STATE(996), 1, + sym_string, + STATE(1593), 1, + sym_primary_expression, + STATE(1604), 1, + sym_list_splat_pattern, + STATE(2007), 1, + sym_pattern, + STATE(2510), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1678), 12, - sym__dedent, + ACTIONS(324), 2, + sym_ellipsis, + sym_float, + STATE(1585), 2, + sym_attribute, + sym_subscript, + STATE(1642), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(880), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(328), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1646), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1426), 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, + [53525] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1640), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -72934,7 +71238,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1676), 32, + ACTIONS(1638), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72951,7 +71255,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, @@ -72967,11 +71270,143 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53959] = 3, + [53577] = 20, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(332), 1, + sym_string_start, + ACTIONS(1202), 1, + anon_sym_STAR, + ACTIONS(1642), 1, + sym_identifier, + ACTIONS(1644), 1, + anon_sym_LPAREN, + ACTIONS(1648), 1, + anon_sym_LBRACK, + ACTIONS(1650), 1, + anon_sym_await, + STATE(996), 1, + sym_string, + STATE(1593), 1, + sym_primary_expression, + STATE(1604), 1, + sym_list_splat_pattern, + STATE(2027), 1, + sym_pattern, + STATE(2443), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 12, + ACTIONS(324), 2, + sym_ellipsis, + sym_float, + STATE(1585), 2, + sym_attribute, + sym_subscript, + STATE(1642), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(880), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(328), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1646), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1426), 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, + [53663] = 20, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(332), 1, + sym_string_start, + ACTIONS(1202), 1, + anon_sym_STAR, + ACTIONS(1642), 1, + sym_identifier, + ACTIONS(1644), 1, + anon_sym_LPAREN, + ACTIONS(1648), 1, + anon_sym_LBRACK, + ACTIONS(1650), 1, + anon_sym_await, + ACTIONS(1664), 1, + anon_sym_in, + STATE(996), 1, + sym_string, + STATE(1593), 1, + sym_primary_expression, + STATE(1604), 1, + sym_list_splat_pattern, + STATE(1630), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(324), 2, + sym_ellipsis, + sym_float, + STATE(1585), 2, + sym_attribute, + sym_subscript, + STATE(1642), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(880), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(328), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1646), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1426), 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, + [53749] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1668), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -72984,7 +71419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1680), 32, + ACTIONS(1666), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72997,7 +71432,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -73017,13 +71451,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54012] = 3, + [53801] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1684), 12, + ACTIONS(1672), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -73034,7 +71468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1686), 32, + ACTIONS(1670), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73047,7 +71481,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -73067,13 +71500,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54065] = 3, + [53853] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1688), 12, + ACTIONS(1676), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -73084,7 +71517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1690), 32, + ACTIONS(1674), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73097,7 +71530,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -73117,13 +71549,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54118] = 3, + [53905] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1678), 12, + ACTIONS(1680), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -73134,7 +71566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1676), 32, + ACTIONS(1678), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73151,7 +71583,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, @@ -73167,13 +71598,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54171] = 3, + [53957] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1692), 12, + ACTIONS(1656), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -73184,7 +71615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1694), 32, + ACTIONS(1658), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73197,7 +71628,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -73217,13 +71647,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54224] = 3, + [54009] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1692), 12, + ACTIONS(1684), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -73234,7 +71664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1694), 32, + ACTIONS(1682), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73247,7 +71677,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -73267,13 +71696,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54277] = 3, + [54061] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 12, + ACTIONS(1626), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -73284,7 +71713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1698), 32, + ACTIONS(1628), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73297,7 +71726,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -73317,13 +71745,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54330] = 3, + [54113] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1700), 12, + ACTIONS(1688), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -73334,7 +71762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1702), 32, + ACTIONS(1686), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73347,7 +71775,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -73367,13 +71794,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54383] = 3, + [54165] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1700), 12, + ACTIONS(1652), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -73384,7 +71811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1702), 32, + ACTIONS(1654), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73397,7 +71824,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -73417,11 +71843,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54436] = 3, + [54217] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1706), 12, + ACTIONS(1692), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73434,7 +71860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1704), 32, + ACTIONS(1690), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73451,7 +71877,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, @@ -73467,11 +71892,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54489] = 3, + [54269] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1710), 12, + ACTIONS(1696), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73484,7 +71909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1708), 32, + ACTIONS(1694), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73497,7 +71922,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -73517,13 +71941,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54542] = 3, + [54321] = 20, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(332), 1, + sym_string_start, + ACTIONS(1202), 1, + anon_sym_STAR, + ACTIONS(1642), 1, + sym_identifier, + ACTIONS(1644), 1, + anon_sym_LPAREN, + ACTIONS(1648), 1, + anon_sym_LBRACK, + ACTIONS(1650), 1, + anon_sym_await, + STATE(996), 1, + sym_string, + STATE(1593), 1, + sym_primary_expression, + STATE(1604), 1, + sym_list_splat_pattern, + STATE(2030), 1, + sym_pattern, + STATE(2441), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1710), 12, + ACTIONS(324), 2, + sym_ellipsis, + sym_float, + STATE(1585), 2, + sym_attribute, + sym_subscript, + STATE(1642), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(880), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(328), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1646), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1426), 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, + [54407] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1700), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -73534,7 +72024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1708), 32, + ACTIONS(1698), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73547,7 +72037,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -73567,13 +72056,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54595] = 3, + [54459] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1714), 12, - sym__dedent, + ACTIONS(1672), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -73584,7 +72073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1712), 32, + ACTIONS(1670), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73597,7 +72086,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -73617,13 +72105,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54648] = 3, + [54511] = 20, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(332), 1, + sym_string_start, + ACTIONS(1202), 1, + anon_sym_STAR, + ACTIONS(1642), 1, + sym_identifier, + ACTIONS(1644), 1, + anon_sym_LPAREN, + ACTIONS(1648), 1, + anon_sym_LBRACK, + ACTIONS(1650), 1, + anon_sym_await, + STATE(996), 1, + sym_string, + STATE(1593), 1, + sym_primary_expression, + STATE(1604), 1, + sym_list_splat_pattern, + STATE(2055), 1, + sym_pattern, + STATE(2403), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1684), 12, - sym__dedent, + ACTIONS(324), 2, + sym_ellipsis, + sym_float, + STATE(1585), 2, + sym_attribute, + sym_subscript, + STATE(1642), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(880), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(328), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1646), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1426), 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, + [54597] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1702), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -73634,7 +72188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1686), 32, + ACTIONS(1704), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73647,7 +72201,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -73667,13 +72220,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54701] = 3, + [54649] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1716), 12, + ACTIONS(1708), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -73684,7 +72237,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1718), 32, + ACTIONS(1706), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73697,7 +72250,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -73717,11 +72269,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54754] = 3, + [54701] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 12, + ACTIONS(1712), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73734,7 +72286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1720), 32, + ACTIONS(1710), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73747,7 +72299,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -73767,13 +72318,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54807] = 3, + [54753] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1724), 12, + ACTIONS(1716), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -73784,7 +72335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1726), 32, + ACTIONS(1714), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73797,7 +72348,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -73817,13 +72367,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54860] = 3, + [54805] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1728), 12, + ACTIONS(1720), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -73834,7 +72384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1730), 32, + ACTIONS(1718), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73847,7 +72397,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -73867,13 +72416,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54913] = 3, + [54857] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1734), 12, - sym__dedent, + ACTIONS(1668), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -73884,7 +72433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1732), 32, + ACTIONS(1666), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73897,7 +72446,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -73917,13 +72465,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54966] = 3, + [54909] = 20, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(332), 1, + sym_string_start, + ACTIONS(1722), 1, + sym_identifier, + ACTIONS(1724), 1, + anon_sym_LPAREN, + ACTIONS(1726), 1, + anon_sym_STAR, + ACTIONS(1730), 1, + anon_sym_LBRACK, + ACTIONS(1732), 1, + anon_sym_RBRACK, + ACTIONS(1734), 1, + anon_sym_await, + STATE(996), 1, + sym_string, + STATE(1622), 1, + sym_list_splat_pattern, + STATE(1624), 1, + sym_primary_expression, + STATE(2274), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 12, - sym__dedent, + ACTIONS(324), 2, + sym_ellipsis, + sym_float, + STATE(1613), 2, + sym_attribute, + sym_subscript, + STATE(2306), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(880), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(328), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1728), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1426), 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, + [54995] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1688), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -73934,7 +72548,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1680), 32, + ACTIONS(1686), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73947,7 +72561,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -73967,11 +72580,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55019] = 3, + [55047] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1714), 12, + ACTIONS(1680), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73984,7 +72597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1712), 32, + ACTIONS(1678), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73997,7 +72610,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -74017,11 +72629,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55072] = 3, + [55099] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 12, + ACTIONS(1684), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74034,7 +72646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1720), 32, + ACTIONS(1682), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74047,7 +72659,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -74067,11 +72678,77 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55125] = 3, + [55151] = 20, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(332), 1, + sym_string_start, + ACTIONS(1202), 1, + anon_sym_STAR, + ACTIONS(1642), 1, + sym_identifier, + ACTIONS(1644), 1, + anon_sym_LPAREN, + ACTIONS(1648), 1, + anon_sym_LBRACK, + ACTIONS(1650), 1, + anon_sym_await, + STATE(996), 1, + sym_string, + STATE(1593), 1, + sym_primary_expression, + STATE(1604), 1, + sym_list_splat_pattern, + STATE(2052), 1, + sym_pattern, + STATE(2415), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(324), 2, + sym_ellipsis, + sym_float, + STATE(1585), 2, + sym_attribute, + sym_subscript, + STATE(1642), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(880), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(328), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1646), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1426), 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, + [55237] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1734), 12, + ACTIONS(1736), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74084,7 +72761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1732), 32, + ACTIONS(1738), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74097,7 +72774,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -74117,113 +72793,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55178] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1738), 12, - sym__dedent, + [55289] = 20, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(332), 1, sym_string_start, + ACTIONS(1602), 1, + sym_identifier, + ACTIONS(1604), 1, anon_sym_LPAREN, + ACTIONS(1608), 1, anon_sym_STAR, - anon_sym_AT, + ACTIONS(1612), 1, anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1736), 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_case, - 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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(1614), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [55231] = 3, + ACTIONS(1732), 1, + anon_sym_RPAREN, + STATE(996), 1, + sym_string, + STATE(1600), 1, + sym_primary_expression, + STATE(1621), 1, + sym_list_splat_pattern, + STATE(2260), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(324), 2, + sym_ellipsis, + sym_float, + STATE(1627), 2, + sym_attribute, + sym_subscript, + STATE(2275), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1680), 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_case, - 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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(328), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [55284] = 3, + ACTIONS(1610), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1426), 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, + [55375] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1738), 12, + ACTIONS(1742), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -74234,7 +72876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1736), 32, + ACTIONS(1740), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74247,7 +72889,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -74267,11 +72908,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55337] = 3, + [55427] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1728), 12, + ACTIONS(1692), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74284,7 +72925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1730), 32, + ACTIONS(1690), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74297,7 +72938,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -74317,11 +72957,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55390] = 3, + [55479] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1740), 12, + ACTIONS(1700), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74334,7 +72974,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1742), 32, + ACTIONS(1698), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74347,7 +72987,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -74367,13 +73006,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55443] = 3, + [55531] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1746), 12, - sym__dedent, + ACTIONS(1708), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -74384,7 +73023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1744), 32, + ACTIONS(1706), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74397,7 +73036,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -74417,13 +73055,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55496] = 3, + [55583] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(1746), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -74434,7 +73072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1744), 32, + ACTIONS(1744), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74447,7 +73085,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -74467,13 +73104,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55549] = 3, + [55635] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 12, + ACTIONS(1588), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -74484,7 +73121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1680), 32, + ACTIONS(1586), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74497,7 +73134,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -74517,13 +73153,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55602] = 3, + [55687] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1740), 12, - sym__dedent, + ACTIONS(1712), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -74534,7 +73170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1742), 32, + ACTIONS(1710), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74547,7 +73183,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -74567,81 +73202,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55655] = 21, - ACTIONS(334), 1, - anon_sym_LBRACE, - ACTIONS(340), 1, - sym_string_start, - ACTIONS(1748), 1, - sym_identifier, - ACTIONS(1750), 1, - anon_sym_LPAREN, - ACTIONS(1752), 1, - anon_sym_RPAREN, - ACTIONS(1754), 1, - anon_sym_STAR, - ACTIONS(1758), 1, - anon_sym_LBRACK, - ACTIONS(1760), 1, - anon_sym_await, - STATE(1071), 1, - sym_string, - STATE(1662), 1, - sym_primary_expression, - STATE(1675), 1, - sym_list_splat_pattern, - STATE(2142), 1, - sym_pattern, - STATE(2423), 1, - sym__patterns, + [55739] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, - sym_ellipsis, - sym_float, - STATE(1680), 2, - sym_attribute, - sym_subscript, - STATE(2327), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(904), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(336), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1756), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1455), 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, - [55744] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1700), 12, - sym__dedent, + ACTIONS(1716), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -74652,7 +73219,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1702), 32, + ACTIONS(1714), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74665,7 +73232,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -74685,13 +73251,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55797] = 3, + [55791] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1728), 12, - sym__dedent, + ACTIONS(1720), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -74702,7 +73268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1730), 32, + ACTIONS(1718), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74715,7 +73281,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -74735,11 +73300,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55850] = 3, + [55843] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1728), 12, + ACTIONS(1750), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74752,7 +73317,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1730), 32, + ACTIONS(1748), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74765,7 +73330,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -74785,13 +73349,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55903] = 3, + [55895] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1724), 12, - sym__dedent, + ACTIONS(1676), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -74802,7 +73366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1726), 32, + ACTIONS(1674), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74815,7 +73379,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -74835,13 +73398,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55956] = 3, + [55947] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1700), 12, - sym__dedent, + ACTIONS(1742), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -74852,7 +73415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1702), 32, + ACTIONS(1740), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74865,7 +73428,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -74885,13 +73447,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56009] = 3, + [55999] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 12, - sym__dedent, + ACTIONS(1746), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -74902,7 +73464,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1698), 32, + ACTIONS(1744), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74915,7 +73477,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -74935,81 +73496,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56062] = 21, - ACTIONS(334), 1, - anon_sym_LBRACE, - ACTIONS(340), 1, - sym_string_start, - ACTIONS(1748), 1, - sym_identifier, - ACTIONS(1750), 1, - anon_sym_LPAREN, - ACTIONS(1754), 1, - anon_sym_STAR, - ACTIONS(1758), 1, - anon_sym_LBRACK, - ACTIONS(1760), 1, - anon_sym_await, - ACTIONS(1762), 1, - anon_sym_RPAREN, - STATE(1071), 1, - sym_string, - STATE(1662), 1, - sym_primary_expression, - STATE(1675), 1, - sym_list_splat_pattern, - STATE(2142), 1, - sym_pattern, - STATE(2486), 1, - sym__patterns, + [56051] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, - sym_ellipsis, - sym_float, - STATE(1680), 2, - sym_attribute, - sym_subscript, - STATE(2327), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(904), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(336), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1756), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1455), 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, - [56151] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1716), 12, - sym__dedent, + ACTIONS(1588), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -75020,7 +73513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1718), 32, + ACTIONS(1586), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75033,7 +73526,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -75053,13 +73545,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56204] = 3, + [56103] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1764), 12, + ACTIONS(1630), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -75070,7 +73562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1766), 32, + ACTIONS(1632), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75083,7 +73575,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -75103,63 +73594,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56257] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1692), 12, - sym__dedent, + [56155] = 20, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(332), 1, sym_string_start, + ACTIONS(1722), 1, + sym_identifier, + ACTIONS(1724), 1, anon_sym_LPAREN, + ACTIONS(1726), 1, anon_sym_STAR, - anon_sym_AT, + ACTIONS(1730), 1, anon_sym_LBRACK, + ACTIONS(1734), 1, + anon_sym_await, + ACTIONS(1752), 1, + anon_sym_RBRACK, + STATE(996), 1, + sym_string, + STATE(1622), 1, + sym_list_splat_pattern, + STATE(1624), 1, + sym_primary_expression, + STATE(2274), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(324), 2, + sym_ellipsis, + sym_float, + STATE(1613), 2, + sym_attribute, + sym_subscript, + STATE(2306), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1694), 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_case, - 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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(328), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [56310] = 3, + ACTIONS(1728), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1426), 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, + [56241] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1706), 12, + ACTIONS(1756), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -75170,7 +73677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1704), 32, + ACTIONS(1754), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75187,7 +73694,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, @@ -75203,13 +73709,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56363] = 3, + [56293] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1692), 12, - sym__dedent, + ACTIONS(1756), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -75220,7 +73726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1694), 32, + ACTIONS(1754), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75233,7 +73739,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -75253,13 +73758,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56416] = 3, + [56345] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1688), 12, - sym__dedent, + ACTIONS(1758), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -75270,7 +73775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1690), 32, + ACTIONS(1760), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75283,7 +73788,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -75303,13 +73807,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56469] = 3, + [56397] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1764), 12, - sym__dedent, + ACTIONS(1750), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -75320,7 +73824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1766), 32, + ACTIONS(1748), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75333,7 +73837,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_if, anon_sym_match, - anon_sym_case, anon_sym_async, anon_sym_for, anon_sym_while, @@ -75353,11 +73856,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56522] = 3, + [56449] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1770), 12, + ACTIONS(1758), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -75370,7 +73873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1768), 31, + ACTIONS(1760), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75402,58 +73905,58 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56574] = 20, - ACTIONS(334), 1, + [56501] = 20, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1772), 1, + ACTIONS(1642), 1, sym_identifier, - ACTIONS(1774), 1, + ACTIONS(1644), 1, anon_sym_LPAREN, - ACTIONS(1778), 1, + ACTIONS(1648), 1, anon_sym_LBRACK, - ACTIONS(1780), 1, + ACTIONS(1650), 1, anon_sym_await, - STATE(1071), 1, + ACTIONS(1762), 1, + anon_sym_in, + STATE(996), 1, sym_string, - STATE(1647), 1, - sym_list_splat_pattern, - STATE(1672), 1, + STATE(1593), 1, sym_primary_expression, - STATE(2200), 1, + STATE(1604), 1, + sym_list_splat_pattern, + STATE(1630), 1, sym_pattern, - STATE(2360), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - STATE(1686), 2, + STATE(1585), 2, sym_attribute, sym_subscript, - STATE(1693), 2, + STATE(1642), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(904), 3, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1776), 4, + ACTIONS(1646), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1455), 14, + STATE(1426), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75468,11 +73971,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [56660] = 3, + [56587] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1782), 12, + ACTIONS(1764), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -75485,7 +73988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1784), 31, + ACTIONS(1766), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75517,13 +74020,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56712] = 3, + [56639] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1786), 12, + ACTIONS(1770), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -75534,7 +74037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1788), 31, + ACTIONS(1768), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75566,13 +74069,145 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56764] = 3, + [56691] = 20, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(332), 1, + sym_string_start, + ACTIONS(1202), 1, + anon_sym_STAR, + ACTIONS(1642), 1, + sym_identifier, + ACTIONS(1644), 1, + anon_sym_LPAREN, + ACTIONS(1648), 1, + anon_sym_LBRACK, + ACTIONS(1650), 1, + anon_sym_await, + STATE(996), 1, + sym_string, + STATE(1593), 1, + sym_primary_expression, + STATE(1604), 1, + sym_list_splat_pattern, + STATE(2050), 1, + sym_pattern, + STATE(2419), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1790), 12, + ACTIONS(324), 2, + sym_ellipsis, + sym_float, + STATE(1585), 2, + sym_attribute, + sym_subscript, + STATE(1642), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(880), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(328), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1646), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1426), 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, + [56777] = 20, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(332), 1, + sym_string_start, + ACTIONS(1202), 1, + anon_sym_STAR, + ACTIONS(1642), 1, + sym_identifier, + ACTIONS(1644), 1, + anon_sym_LPAREN, + ACTIONS(1648), 1, + anon_sym_LBRACK, + ACTIONS(1650), 1, + anon_sym_await, + STATE(996), 1, + sym_string, + STATE(1593), 1, + sym_primary_expression, + STATE(1604), 1, + sym_list_splat_pattern, + STATE(2054), 1, + sym_pattern, + STATE(2412), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(324), 2, + sym_ellipsis, + sym_float, + STATE(1585), 2, + sym_attribute, + sym_subscript, + STATE(1642), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(880), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(328), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1646), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1426), 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, + [56863] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1774), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -75583,7 +74218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1792), 31, + ACTIONS(1772), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75615,13 +74250,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56816] = 3, + [56915] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1794), 12, + ACTIONS(1778), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -75632,7 +74267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1796), 31, + ACTIONS(1776), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75664,13 +74299,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56868] = 3, + [56967] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1798), 12, + ACTIONS(1782), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -75681,7 +74316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1800), 31, + ACTIONS(1780), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75713,13 +74348,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56920] = 3, + [57019] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1802), 12, + ACTIONS(1786), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -75730,7 +74365,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1804), 31, + ACTIONS(1784), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75762,13 +74397,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56972] = 3, + [57071] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1808), 12, - sym__dedent, + ACTIONS(1770), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -75779,7 +74414,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1806), 31, + ACTIONS(1768), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75811,13 +74446,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57024] = 3, + [57123] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1812), 12, - sym__dedent, + ACTIONS(1774), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -75828,7 +74463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1810), 31, + ACTIONS(1772), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75860,13 +74495,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57076] = 3, + [57175] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1814), 12, + ACTIONS(1790), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -75877,7 +74512,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1816), 31, + ACTIONS(1788), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75909,11 +74544,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57128] = 3, + [57227] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1818), 12, + ACTIONS(1696), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -75926,7 +74561,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1820), 31, + ACTIONS(1694), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75958,13 +74593,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57180] = 3, + [57279] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1638), 12, + ACTIONS(1764), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -75975,7 +74610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1636), 31, + ACTIONS(1766), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76007,11 +74642,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57232] = 3, + [57331] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1822), 12, + ACTIONS(1636), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -76024,7 +74659,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1824), 31, + ACTIONS(1634), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76056,13 +74691,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57284] = 3, + [57383] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1340), 12, + ACTIONS(1702), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -76073,7 +74708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1338), 31, + ACTIONS(1704), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76105,11 +74740,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57336] = 3, + [57435] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1818), 12, + ACTIONS(1736), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -76122,7 +74757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1820), 31, + ACTIONS(1738), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76154,11 +74789,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57388] = 3, + [57487] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1814), 12, + ACTIONS(1794), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -76171,7 +74806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1816), 31, + ACTIONS(1792), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76203,13 +74838,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57440] = 3, + [57539] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1826), 12, + ACTIONS(1798), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -76220,7 +74855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1828), 31, + ACTIONS(1796), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76252,11 +74887,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57492] = 3, + [57591] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1830), 12, + ACTIONS(1800), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -76269,7 +74904,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1832), 31, + ACTIONS(1802), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76301,11 +74936,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57544] = 3, + [57643] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1834), 12, + ACTIONS(1804), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -76318,7 +74953,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1836), 31, + ACTIONS(1806), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76350,11 +74985,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57596] = 3, + [57695] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1838), 12, + ACTIONS(1572), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -76367,7 +75002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1840), 31, + ACTIONS(1570), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76399,79 +75034,62 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57648] = 20, - ACTIONS(334), 1, - anon_sym_LBRACE, - ACTIONS(340), 1, + [57747] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1312), 12, + sym__dedent, sym_string_start, - ACTIONS(1842), 1, - sym_identifier, - ACTIONS(1844), 1, anon_sym_LPAREN, - ACTIONS(1846), 1, anon_sym_STAR, - ACTIONS(1850), 1, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(1852), 1, - anon_sym_RBRACK, - ACTIONS(1854), 1, - anon_sym_await, - STATE(1071), 1, - sym_string, - STATE(1652), 1, - sym_primary_expression, - STATE(1679), 1, - sym_list_splat_pattern, - STATE(2303), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(332), 2, - sym_ellipsis, - sym_float, - STATE(1678), 2, - sym_attribute, - sym_subscript, - STATE(2326), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(904), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(336), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1848), 4, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1310), 31, + 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, - STATE(1455), 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, - [57734] = 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, + [57799] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1858), 12, - sym__dedent, + ACTIONS(1312), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -76482,7 +75100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1856), 31, + ACTIONS(1310), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76514,11 +75132,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57786] = 3, + [57851] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1862), 12, + ACTIONS(1572), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -76531,7 +75149,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1860), 31, + ACTIONS(1570), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76563,79 +75181,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57838] = 20, - ACTIONS(334), 1, - anon_sym_LBRACE, - ACTIONS(340), 1, - sym_string_start, - ACTIONS(1204), 1, - anon_sym_STAR, - ACTIONS(1772), 1, - sym_identifier, - ACTIONS(1774), 1, - anon_sym_LPAREN, - ACTIONS(1778), 1, - anon_sym_LBRACK, - ACTIONS(1780), 1, - anon_sym_await, - STATE(1071), 1, - sym_string, - STATE(1647), 1, - sym_list_splat_pattern, - STATE(1672), 1, - sym_primary_expression, - STATE(2069), 1, - sym_pattern, - STATE(2540), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(332), 2, - sym_ellipsis, - sym_float, - STATE(1686), 2, - sym_attribute, - sym_subscript, - STATE(1693), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(904), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(336), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1776), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1455), 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, - [57924] = 3, + [57903] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1782), 12, - sym__dedent, + ACTIONS(1778), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -76646,7 +75198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1784), 31, + ACTIONS(1776), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76678,11 +75230,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57976] = 3, + [57955] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1864), 12, + ACTIONS(1782), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -76695,7 +75247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1866), 31, + ACTIONS(1780), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76727,11 +75279,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [58028] = 3, + [58007] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1858), 12, + ACTIONS(1786), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -76744,7 +75296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1856), 31, + ACTIONS(1784), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76776,58 +75328,58 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [58080] = 20, - ACTIONS(334), 1, + [58059] = 20, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1748), 1, + ACTIONS(1202), 1, + anon_sym_STAR, + ACTIONS(1642), 1, sym_identifier, - ACTIONS(1750), 1, + ACTIONS(1644), 1, anon_sym_LPAREN, - ACTIONS(1754), 1, - anon_sym_STAR, - ACTIONS(1758), 1, + ACTIONS(1648), 1, anon_sym_LBRACK, - ACTIONS(1760), 1, + ACTIONS(1650), 1, anon_sym_await, - ACTIONS(1868), 1, - anon_sym_RPAREN, - STATE(1071), 1, + STATE(996), 1, sym_string, - STATE(1662), 1, + STATE(1593), 1, sym_primary_expression, - STATE(1675), 1, + STATE(1604), 1, sym_list_splat_pattern, - STATE(2269), 1, + STATE(2211), 1, sym_pattern, + STATE(2516), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - STATE(1680), 2, + STATE(1585), 2, sym_attribute, sym_subscript, - STATE(2327), 2, + STATE(1642), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(904), 3, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1756), 4, + ACTIONS(1646), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1455), 14, + STATE(1426), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76842,11 +75394,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58166] = 3, + [58145] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1770), 12, + ACTIONS(1798), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -76859,7 +75411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1768), 31, + ACTIONS(1796), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76891,11 +75443,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [58218] = 3, + [58197] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1870), 12, + ACTIONS(1794), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -76908,7 +75460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1872), 31, + ACTIONS(1792), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76940,11 +75492,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [58270] = 3, + [58249] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1340), 12, + ACTIONS(1804), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -76957,7 +75509,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1338), 31, + ACTIONS(1806), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76989,79 +75541,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [58322] = 20, - ACTIONS(334), 1, - anon_sym_LBRACE, - ACTIONS(340), 1, - sym_string_start, - ACTIONS(1204), 1, - anon_sym_STAR, - ACTIONS(1772), 1, - sym_identifier, - ACTIONS(1774), 1, - anon_sym_LPAREN, - ACTIONS(1778), 1, - anon_sym_LBRACK, - ACTIONS(1780), 1, - anon_sym_await, - STATE(1071), 1, - sym_string, - STATE(1647), 1, - sym_list_splat_pattern, - STATE(1672), 1, - sym_primary_expression, - STATE(2220), 1, - sym_pattern, - STATE(2342), 1, - sym_pattern_list, + [58301] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, - sym_ellipsis, - sym_float, - STATE(1686), 2, - sym_attribute, - sym_subscript, - STATE(1693), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(904), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(336), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1776), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1455), 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, - [58408] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1874), 12, + ACTIONS(1800), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_AT, @@ -77072,7 +75558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1876), 31, + ACTIONS(1802), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -77104,58 +75590,58 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [58460] = 20, - ACTIONS(334), 1, + [58353] = 20, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, - anon_sym_STAR, - ACTIONS(1772), 1, + ACTIONS(1602), 1, sym_identifier, - ACTIONS(1774), 1, + ACTIONS(1604), 1, anon_sym_LPAREN, - ACTIONS(1778), 1, + ACTIONS(1608), 1, + anon_sym_STAR, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1780), 1, + ACTIONS(1614), 1, anon_sym_await, - STATE(1071), 1, + ACTIONS(1752), 1, + anon_sym_RPAREN, + STATE(996), 1, sym_string, - STATE(1647), 1, - sym_list_splat_pattern, - STATE(1672), 1, + STATE(1600), 1, sym_primary_expression, - STATE(2067), 1, + STATE(1621), 1, + sym_list_splat_pattern, + STATE(2260), 1, sym_pattern, - STATE(2541), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - STATE(1686), 2, + STATE(1627), 2, sym_attribute, sym_subscript, - STATE(1693), 2, + STATE(2275), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(904), 3, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1776), 4, + ACTIONS(1610), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1455), 14, + STATE(1426), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -77170,11 +75656,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58546] = 3, + [58439] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1822), 12, + ACTIONS(1660), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -77187,7 +75673,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1824), 31, + ACTIONS(1662), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -77219,11 +75705,77 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [58598] = 3, + [58491] = 20, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(332), 1, + sym_string_start, + ACTIONS(1202), 1, + anon_sym_STAR, + ACTIONS(1642), 1, + sym_identifier, + ACTIONS(1644), 1, + anon_sym_LPAREN, + ACTIONS(1648), 1, + anon_sym_LBRACK, + ACTIONS(1650), 1, + anon_sym_await, + STATE(996), 1, + sym_string, + STATE(1593), 1, + sym_primary_expression, + STATE(1604), 1, + sym_list_splat_pattern, + STATE(2105), 1, + sym_pattern, + STATE(2355), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1356), 12, + ACTIONS(324), 2, + sym_ellipsis, + sym_float, + STATE(1585), 2, + sym_attribute, + sym_subscript, + STATE(1642), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(880), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(328), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1646), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1426), 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, + [58577] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1790), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -77236,7 +75788,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_LBRACE, sym_float, - ACTIONS(1358), 31, + ACTIONS(1788), 31, anon_sym_import, anon_sym_from, anon_sym_print, @@ -77268,58 +75820,56 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [58650] = 20, - ACTIONS(334), 1, + [58629] = 19, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, - anon_sym_STAR, - ACTIONS(1772), 1, + ACTIONS(902), 1, sym_identifier, - ACTIONS(1774), 1, + ACTIONS(904), 1, anon_sym_LPAREN, - ACTIONS(1778), 1, + ACTIONS(910), 1, anon_sym_LBRACK, - ACTIONS(1780), 1, + ACTIONS(912), 1, anon_sym_await, - STATE(1071), 1, + ACTIONS(1808), 1, + anon_sym_STAR, + STATE(996), 1, sym_string, - STATE(1647), 1, + STATE(1559), 1, sym_list_splat_pattern, - STATE(1672), 1, + STATE(1597), 1, sym_primary_expression, - STATE(2068), 1, + STATE(1630), 1, sym_pattern, - STATE(2537), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - STATE(1686), 2, + STATE(1556), 2, sym_attribute, sym_subscript, - STATE(1693), 2, + STATE(1642), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(904), 3, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1776), 4, + ACTIONS(908), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1455), 14, + STATE(1426), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -77334,156 +75884,120 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58736] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1802), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, + [58712] = 19, + ACTIONS(17), 1, anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, + ACTIONS(326), 1, anon_sym_LBRACE, - sym_float, - ACTIONS(1804), 31, - 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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(332), 1, + sym_string_start, + ACTIONS(866), 1, sym_identifier, + ACTIONS(870), 1, + anon_sym_LPAREN, + ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(882), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [58788] = 3, + STATE(996), 1, + sym_string, + STATE(1387), 1, + sym_list_splat_pattern, + STATE(1586), 1, + sym_pattern, + STATE(1592), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1830), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(324), 2, + sym_ellipsis, + sym_float, + STATE(1382), 2, + sym_attribute, + sym_subscript, + STATE(1611), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1832), 31, - 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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(328), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [58840] = 20, - ACTIONS(334), 1, + ACTIONS(874), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1426), 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, + [58795] = 19, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, - anon_sym_STAR, - ACTIONS(1772), 1, + ACTIONS(1534), 1, sym_identifier, - ACTIONS(1774), 1, + ACTIONS(1536), 1, anon_sym_LPAREN, - ACTIONS(1778), 1, + ACTIONS(1538), 1, + anon_sym_STAR, + ACTIONS(1542), 1, anon_sym_LBRACK, - ACTIONS(1780), 1, + ACTIONS(1544), 1, anon_sym_await, - STATE(1071), 1, + STATE(996), 1, sym_string, - STATE(1647), 1, + STATE(1572), 1, sym_list_splat_pattern, - STATE(1672), 1, + STATE(1603), 1, sym_primary_expression, - STATE(2107), 1, + STATE(1917), 1, sym_pattern, - STATE(2470), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - STATE(1686), 2, + STATE(1569), 2, sym_attribute, sym_subscript, - STATE(1693), 2, + STATE(1960), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(904), 3, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1776), 4, + ACTIONS(1540), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1455), 14, + STATE(1426), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -77498,58 +76012,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58926] = 20, - ACTIONS(334), 1, + [58878] = 19, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, - anon_sym_STAR, - ACTIONS(1772), 1, + ACTIONS(1722), 1, sym_identifier, - ACTIONS(1774), 1, + ACTIONS(1724), 1, anon_sym_LPAREN, - ACTIONS(1778), 1, + ACTIONS(1726), 1, + anon_sym_STAR, + ACTIONS(1730), 1, anon_sym_LBRACK, - ACTIONS(1780), 1, + ACTIONS(1734), 1, anon_sym_await, - STATE(1071), 1, + STATE(996), 1, sym_string, - STATE(1647), 1, + STATE(1622), 1, sym_list_splat_pattern, - STATE(1672), 1, + STATE(1624), 1, sym_primary_expression, - STATE(2108), 1, + STATE(2274), 1, sym_pattern, - STATE(2468), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - STATE(1686), 2, + STATE(1613), 2, sym_attribute, sym_subscript, - STATE(1693), 2, + STATE(2306), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(904), 3, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1776), 4, + ACTIONS(1728), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1455), 14, + STATE(1426), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -77564,156 +76076,120 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59012] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1878), 12, + [58961] = 19, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(332), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(1202), 1, anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1880), 31, - 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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(1642), 1, sym_identifier, + ACTIONS(1644), 1, + anon_sym_LPAREN, + ACTIONS(1648), 1, + anon_sym_LBRACK, + ACTIONS(1650), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [59064] = 3, + STATE(996), 1, + sym_string, + STATE(1593), 1, + sym_primary_expression, + STATE(1604), 1, + sym_list_splat_pattern, + STATE(1630), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1808), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(324), 2, + sym_ellipsis, + sym_float, + STATE(1585), 2, + sym_attribute, + sym_subscript, + STATE(1642), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1806), 31, - 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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(328), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [59116] = 20, - ACTIONS(334), 1, + ACTIONS(1646), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1426), 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, + [59044] = 19, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, - anon_sym_STAR, - ACTIONS(1772), 1, + ACTIONS(1602), 1, sym_identifier, - ACTIONS(1774), 1, + ACTIONS(1604), 1, anon_sym_LPAREN, - ACTIONS(1778), 1, + ACTIONS(1608), 1, + anon_sym_STAR, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1780), 1, + ACTIONS(1614), 1, anon_sym_await, - ACTIONS(1882), 1, - anon_sym_in, - STATE(1071), 1, + STATE(996), 1, sym_string, - STATE(1647), 1, - sym_list_splat_pattern, - STATE(1672), 1, + STATE(1600), 1, sym_primary_expression, - STATE(1717), 1, + STATE(1621), 1, + sym_list_splat_pattern, + STATE(2260), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - STATE(1686), 2, + STATE(1627), 2, sym_attribute, sym_subscript, - STATE(1693), 2, + STATE(2275), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(904), 3, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1776), 4, + ACTIONS(1610), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1455), 14, + STATE(1426), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -77728,58 +76204,54 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59202] = 20, - ACTIONS(334), 1, + [59127] = 18, + ACTIONS(308), 1, + anon_sym_LPAREN, + ACTIONS(314), 1, + anon_sym_LBRACK, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1772), 1, + ACTIONS(1810), 1, sym_identifier, - ACTIONS(1774), 1, - anon_sym_LPAREN, - ACTIONS(1778), 1, - anon_sym_LBRACK, - ACTIONS(1780), 1, + ACTIONS(1816), 1, anon_sym_await, - STATE(1071), 1, + STATE(996), 1, sym_string, - STATE(1647), 1, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1672), 1, + STATE(1593), 1, sym_primary_expression, - STATE(2063), 1, - sym_pattern, - STATE(2450), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - STATE(1686), 2, + ACTIONS(1812), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(1587), 2, sym_attribute, sym_subscript, - STATE(1693), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(904), 3, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1776), 4, + ACTIONS(1814), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1455), 14, + STATE(1426), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -77794,58 +76266,54 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59288] = 20, - ACTIONS(334), 1, + [59207] = 18, + ACTIONS(308), 1, + anon_sym_LPAREN, + ACTIONS(314), 1, + anon_sym_LBRACK, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1748), 1, - sym_identifier, - ACTIONS(1750), 1, - anon_sym_LPAREN, - ACTIONS(1754), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1758), 1, - anon_sym_LBRACK, - ACTIONS(1760), 1, + ACTIONS(1818), 1, + sym_identifier, + ACTIONS(1822), 1, anon_sym_await, - ACTIONS(1852), 1, - anon_sym_RPAREN, - STATE(1071), 1, + STATE(996), 1, sym_string, - STATE(1662), 1, - sym_primary_expression, - STATE(1675), 1, + STATE(1406), 1, sym_list_splat_pattern, - STATE(2269), 1, - sym_pattern, + STATE(1600), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - STATE(1680), 2, + ACTIONS(1812), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(1580), 2, sym_attribute, sym_subscript, - STATE(2327), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(904), 3, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1756), 4, + ACTIONS(1820), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1455), 14, + STATE(1426), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -77860,844 +76328,867 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59374] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1798), 12, - sym__dedent, + [59287] = 16, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, sym_string_start, + ACTIONS(334), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(338), 1, anon_sym_LBRACK, + ACTIONS(1148), 1, + anon_sym_STAR, + ACTIONS(1826), 1, + anon_sym_not, + ACTIONS(1828), 1, + anon_sym_await, + STATE(977), 1, + sym_string, + STATE(1010), 1, + sym_primary_expression, + STATE(1295), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(71), 2, + sym_ellipsis, + sym_float, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1800), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(1824), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(75), 5, sym_integer, sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [59426] = 3, + STATE(1272), 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, + [59362] = 16, + ACTIONS(720), 1, + anon_sym_LPAREN, + ACTIONS(726), 1, + anon_sym_LBRACK, + ACTIONS(736), 1, + anon_sym_LBRACE, + ACTIONS(742), 1, + sym_string_start, + ACTIONS(1128), 1, + anon_sym_STAR, + ACTIONS(1832), 1, + anon_sym_not, + ACTIONS(1834), 1, + anon_sym_await, + STATE(1099), 1, + sym_string, + STATE(1194), 1, + sym_primary_expression, + STATE(1480), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1886), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(734), 2, + sym_ellipsis, + sym_float, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1884), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(1830), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(738), 5, sym_integer, sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [59478] = 3, + STATE(1531), 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, + [59437] = 16, + ACTIONS(614), 1, + anon_sym_LPAREN, + ACTIONS(620), 1, + anon_sym_LBRACK, + ACTIONS(630), 1, + anon_sym_LBRACE, + ACTIONS(636), 1, + sym_string_start, + ACTIONS(1090), 1, + anon_sym_STAR, + ACTIONS(1838), 1, + anon_sym_not, + ACTIONS(1840), 1, + anon_sym_await, + STATE(975), 1, + sym_string, + STATE(1029), 1, + sym_primary_expression, + STATE(1238), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1888), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(628), 2, + sym_ellipsis, + sym_float, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1890), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(1836), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(632), 5, sym_integer, sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [59530] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1892), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1894), 31, - 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_class, + STATE(1261), 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, + [59512] = 16, + ACTIONS(581), 1, + anon_sym_LPAREN, + ACTIONS(587), 1, + anon_sym_LBRACK, + ACTIONS(597), 1, + anon_sym_LBRACE, + ACTIONS(603), 1, + sym_string_start, + ACTIONS(890), 1, + anon_sym_STAR, + ACTIONS(1844), 1, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(1846), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [59582] = 3, + STATE(984), 1, + sym_string, + STATE(988), 1, + sym_primary_expression, + STATE(1164), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1794), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(595), 2, + sym_ellipsis, + sym_float, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1796), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(1842), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(599), 5, sym_integer, sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [59634] = 3, + STATE(1196), 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, + [59587] = 16, + ACTIONS(308), 1, + anon_sym_LPAREN, + ACTIONS(314), 1, + anon_sym_LBRACK, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(332), 1, + sym_string_start, + ACTIONS(1202), 1, + anon_sym_STAR, + ACTIONS(1850), 1, + anon_sym_not, + ACTIONS(1852), 1, + anon_sym_await, + STATE(996), 1, + sym_string, + STATE(1079), 1, + sym_primary_expression, + STATE(1406), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1864), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(324), 2, + sym_ellipsis, + sym_float, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1866), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(1848), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(328), 5, sym_integer, sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [59686] = 3, + STATE(1426), 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, + [59662] = 16, + ACTIONS(640), 1, + anon_sym_LPAREN, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(658), 1, + anon_sym_LBRACE, + ACTIONS(664), 1, + sym_string_start, + ACTIONS(1084), 1, + anon_sym_STAR, + ACTIONS(1856), 1, + anon_sym_not, + ACTIONS(1858), 1, + anon_sym_await, + STATE(1036), 1, + sym_string, + STATE(1057), 1, + sym_primary_expression, + STATE(1304), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1898), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(656), 2, + sym_ellipsis, + sym_float, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1896), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(1854), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(660), 5, sym_integer, sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [59738] = 3, + STATE(1316), 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, + [59737] = 16, + ACTIONS(694), 1, + anon_sym_LPAREN, + ACTIONS(700), 1, + anon_sym_LBRACK, + ACTIONS(710), 1, + anon_sym_LBRACE, + ACTIONS(716), 1, + sym_string_start, + ACTIONS(1154), 1, + anon_sym_STAR, + ACTIONS(1862), 1, + anon_sym_not, + ACTIONS(1864), 1, + anon_sym_await, + STATE(1062), 1, + sym_string, + STATE(1221), 1, + sym_primary_expression, + STATE(1456), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1902), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(708), 2, + sym_ellipsis, + sym_float, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1900), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(1860), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(712), 5, sym_integer, sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [59790] = 3, + STATE(1469), 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, + [59812] = 16, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(674), 1, + anon_sym_LBRACK, + ACTIONS(684), 1, + anon_sym_LBRACE, + ACTIONS(690), 1, + sym_string_start, + ACTIONS(1114), 1, + anon_sym_STAR, + ACTIONS(1868), 1, + anon_sym_not, + ACTIONS(1870), 1, + anon_sym_await, + STATE(1012), 1, + sym_string, + STATE(1077), 1, + sym_primary_expression, + STATE(1381), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1904), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(682), 2, + sym_ellipsis, + sym_float, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1906), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(1866), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(686), 5, sym_integer, sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [59842] = 3, + STATE(1403), 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, + [59887] = 17, + ACTIONS(308), 1, + anon_sym_LPAREN, + ACTIONS(314), 1, + anon_sym_LBRACK, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(332), 1, + sym_string_start, + ACTIONS(1202), 1, + anon_sym_STAR, + ACTIONS(1872), 1, + sym_identifier, + ACTIONS(1876), 1, + anon_sym_await, + STATE(996), 1, + sym_string, + STATE(1406), 1, + sym_list_splat_pattern, + STATE(1593), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1910), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(324), 2, + sym_ellipsis, + sym_float, + STATE(1428), 2, + sym_attribute, + sym_subscript, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1908), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(328), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1874), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + STATE(1426), 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, + [59963] = 15, + ACTIONS(581), 1, + anon_sym_LPAREN, + ACTIONS(587), 1, + anon_sym_LBRACK, + ACTIONS(597), 1, + anon_sym_LBRACE, + ACTIONS(603), 1, + sym_string_start, + ACTIONS(890), 1, + anon_sym_STAR, + ACTIONS(1846), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [59894] = 3, + STATE(984), 1, + sym_string, + STATE(988), 1, + sym_primary_expression, + STATE(1164), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1892), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(595), 2, + sym_ellipsis, + sym_float, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1894), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(1842), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(599), 5, sym_integer, sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [59946] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1812), 12, - sym_string_start, - ts_builtin_sym_end, + STATE(1196), 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, + [60035] = 15, + ACTIONS(668), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(674), 1, anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, + ACTIONS(684), 1, anon_sym_LBRACE, - sym_float, - ACTIONS(1810), 31, - 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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(690), 1, + sym_string_start, + ACTIONS(1114), 1, + anon_sym_STAR, + ACTIONS(1870), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [59998] = 3, + STATE(1012), 1, + sym_string, + STATE(1072), 1, + sym_primary_expression, + STATE(1381), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1648), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(682), 2, + sym_ellipsis, + sym_float, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1650), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(1866), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(686), 5, sym_integer, sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [60050] = 3, + STATE(1403), 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, + [60107] = 15, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(674), 1, + anon_sym_LBRACK, + ACTIONS(684), 1, + anon_sym_LBRACE, + ACTIONS(690), 1, + sym_string_start, + ACTIONS(1114), 1, + anon_sym_STAR, + ACTIONS(1870), 1, + anon_sym_await, + STATE(1012), 1, + sym_string, + STATE(1073), 1, + sym_primary_expression, + STATE(1381), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1874), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(682), 2, + sym_ellipsis, + sym_float, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1876), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(1866), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(686), 5, sym_integer, sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [60102] = 3, + STATE(1403), 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, + [60179] = 15, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(674), 1, + anon_sym_LBRACK, + ACTIONS(684), 1, + anon_sym_LBRACE, + ACTIONS(690), 1, + sym_string_start, + ACTIONS(1114), 1, + anon_sym_STAR, + ACTIONS(1870), 1, + anon_sym_await, + STATE(1012), 1, + sym_string, + STATE(1074), 1, + sym_primary_expression, + STATE(1381), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1912), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(682), 2, + sym_ellipsis, + sym_float, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1914), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(1866), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(686), 5, sym_integer, sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [60154] = 3, + STATE(1403), 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, + [60251] = 15, + ACTIONS(720), 1, + anon_sym_LPAREN, + ACTIONS(726), 1, + anon_sym_LBRACK, + ACTIONS(736), 1, + anon_sym_LBRACE, + ACTIONS(742), 1, + sym_string_start, + ACTIONS(1128), 1, + anon_sym_STAR, + ACTIONS(1834), 1, + anon_sym_await, + STATE(1099), 1, + sym_string, + STATE(1210), 1, + sym_primary_expression, + STATE(1480), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1910), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(734), 2, + sym_ellipsis, + sym_float, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1908), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(1830), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(738), 5, sym_integer, sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [60206] = 20, - ACTIONS(334), 1, + STATE(1531), 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, + [60323] = 15, + ACTIONS(720), 1, + anon_sym_LPAREN, + ACTIONS(726), 1, + anon_sym_LBRACK, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1772), 1, - sym_identifier, - ACTIONS(1774), 1, - anon_sym_LPAREN, - ACTIONS(1778), 1, - anon_sym_LBRACK, - ACTIONS(1780), 1, + ACTIONS(1834), 1, anon_sym_await, - STATE(1071), 1, + STATE(1099), 1, sym_string, - STATE(1647), 1, - sym_list_splat_pattern, - STATE(1672), 1, + STATE(1209), 1, sym_primary_expression, - STATE(2133), 1, - sym_pattern, - STATE(2431), 1, - sym_pattern_list, + STATE(1480), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - STATE(1686), 2, - sym_attribute, - sym_subscript, - STATE(1693), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(904), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(336), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1776), 4, + ACTIONS(1830), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1455), 14, + ACTIONS(738), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -78710,109 +77201,108 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60292] = 3, + [60395] = 15, + ACTIONS(720), 1, + anon_sym_LPAREN, + ACTIONS(726), 1, + anon_sym_LBRACK, + ACTIONS(736), 1, + anon_sym_LBRACE, + ACTIONS(742), 1, + sym_string_start, + ACTIONS(1128), 1, + anon_sym_STAR, + ACTIONS(1834), 1, + anon_sym_await, + STATE(1099), 1, + sym_string, + STATE(1206), 1, + sym_primary_expression, + STATE(1480), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1902), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(734), 2, + sym_ellipsis, + sym_float, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1900), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(1830), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(738), 5, sym_integer, sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [60344] = 20, - ACTIONS(334), 1, + STATE(1531), 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, + [60467] = 15, + ACTIONS(720), 1, + anon_sym_LPAREN, + ACTIONS(726), 1, + anon_sym_LBRACK, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1772), 1, - sym_identifier, - ACTIONS(1774), 1, - anon_sym_LPAREN, - ACTIONS(1778), 1, - anon_sym_LBRACK, - ACTIONS(1780), 1, + ACTIONS(1834), 1, anon_sym_await, - STATE(1071), 1, + STATE(1099), 1, sym_string, - STATE(1647), 1, - sym_list_splat_pattern, - STATE(1672), 1, + STATE(1204), 1, sym_primary_expression, - STATE(2129), 1, - sym_pattern, - STATE(2438), 1, - sym_pattern_list, + STATE(1480), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - STATE(1686), 2, - sym_attribute, - sym_subscript, - STATE(1693), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(904), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(336), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1776), 4, + ACTIONS(1830), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1455), 14, + ACTIONS(738), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -78825,501 +77315,507 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60430] = 3, + [60539] = 15, + ACTIONS(720), 1, + anon_sym_LPAREN, + ACTIONS(726), 1, + anon_sym_LBRACK, + ACTIONS(736), 1, + anon_sym_LBRACE, + ACTIONS(742), 1, + sym_string_start, + ACTIONS(1128), 1, + anon_sym_STAR, + ACTIONS(1834), 1, + anon_sym_await, + STATE(1099), 1, + sym_string, + STATE(1200), 1, + sym_primary_expression, + STATE(1480), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1912), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(734), 2, + sym_ellipsis, + sym_float, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1914), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(1830), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(738), 5, sym_integer, sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [60482] = 3, + STATE(1531), 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, + [60611] = 15, + ACTIONS(720), 1, + anon_sym_LPAREN, + ACTIONS(726), 1, + anon_sym_LBRACK, + ACTIONS(736), 1, + anon_sym_LBRACE, + ACTIONS(742), 1, + sym_string_start, + ACTIONS(1128), 1, + anon_sym_STAR, + ACTIONS(1834), 1, + anon_sym_await, + STATE(1099), 1, + sym_string, + STATE(1194), 1, + sym_primary_expression, + STATE(1480), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1898), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(734), 2, + sym_ellipsis, + sym_float, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1896), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(1830), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(738), 5, sym_integer, sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [60534] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1886), 12, - sym_string_start, - ts_builtin_sym_end, + STATE(1531), 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, + [60683] = 15, + ACTIONS(720), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(726), 1, anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, + ACTIONS(736), 1, anon_sym_LBRACE, - sym_float, - ACTIONS(1884), 31, - 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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(742), 1, + sym_string_start, + ACTIONS(1128), 1, + anon_sym_STAR, + ACTIONS(1834), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [60586] = 3, + STATE(1099), 1, + sym_string, + STATE(1193), 1, + sym_primary_expression, + STATE(1480), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1862), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(734), 2, + sym_ellipsis, + sym_float, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1860), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(1830), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(738), 5, sym_integer, sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [60638] = 3, + STATE(1531), 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, + [60755] = 15, + ACTIONS(720), 1, + anon_sym_LPAREN, + ACTIONS(726), 1, + anon_sym_LBRACK, + ACTIONS(736), 1, + anon_sym_LBRACE, + ACTIONS(742), 1, + sym_string_start, + ACTIONS(1128), 1, + anon_sym_STAR, + ACTIONS(1834), 1, + anon_sym_await, + STATE(1099), 1, + sym_string, + STATE(1191), 1, + sym_primary_expression, + STATE(1480), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1786), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(734), 2, + sym_ellipsis, + sym_float, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1788), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(1830), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(738), 5, sym_integer, sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [60690] = 3, + STATE(1531), 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, + [60827] = 15, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(674), 1, + anon_sym_LBRACK, + ACTIONS(684), 1, + anon_sym_LBRACE, + ACTIONS(690), 1, + sym_string_start, + ACTIONS(1114), 1, + anon_sym_STAR, + ACTIONS(1870), 1, + anon_sym_await, + STATE(1012), 1, + sym_string, + STATE(1075), 1, + sym_primary_expression, + STATE(1381), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1904), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(682), 2, + sym_ellipsis, + sym_float, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1906), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(1866), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(686), 5, sym_integer, sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [60742] = 3, + STATE(1403), 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, + [60899] = 15, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(674), 1, + anon_sym_LBRACK, + ACTIONS(684), 1, + anon_sym_LBRACE, + ACTIONS(690), 1, + sym_string_start, + ACTIONS(1114), 1, + anon_sym_STAR, + ACTIONS(1870), 1, + anon_sym_await, + STATE(1012), 1, + sym_string, + STATE(1076), 1, + sym_primary_expression, + STATE(1381), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1648), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(682), 2, + sym_ellipsis, + sym_float, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1650), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(1866), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(686), 5, sym_integer, sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [60794] = 3, + STATE(1403), 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, + [60971] = 15, + ACTIONS(614), 1, + anon_sym_LPAREN, + ACTIONS(620), 1, + anon_sym_LBRACK, + ACTIONS(630), 1, + anon_sym_LBRACE, + ACTIONS(636), 1, + sym_string_start, + ACTIONS(1090), 1, + anon_sym_STAR, + ACTIONS(1840), 1, + anon_sym_await, + STATE(975), 1, + sym_string, + STATE(1024), 1, + sym_primary_expression, + STATE(1238), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1918), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(628), 2, + sym_ellipsis, + sym_float, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1916), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(1836), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(632), 5, sym_integer, sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [60846] = 3, + STATE(1261), 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, + [61043] = 15, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(674), 1, + anon_sym_LBRACK, + ACTIONS(684), 1, + anon_sym_LBRACE, + ACTIONS(690), 1, + sym_string_start, + ACTIONS(1114), 1, + anon_sym_STAR, + ACTIONS(1870), 1, + anon_sym_await, + STATE(1012), 1, + sym_string, + STATE(1077), 1, + sym_primary_expression, + STATE(1381), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1826), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(682), 2, + sym_ellipsis, + sym_float, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1828), 31, - anon_sym_import, - anon_sym_from, + ACTIONS(1866), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(686), 5, sym_integer, sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [60898] = 20, - ACTIONS(334), 1, + STATE(1403), 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, + [61115] = 15, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(674), 1, + anon_sym_LBRACK, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(1842), 1, - sym_identifier, - ACTIONS(1844), 1, - anon_sym_LPAREN, - ACTIONS(1846), 1, + ACTIONS(1114), 1, anon_sym_STAR, - ACTIONS(1850), 1, - anon_sym_LBRACK, - ACTIONS(1854), 1, + ACTIONS(1870), 1, anon_sym_await, - ACTIONS(1868), 1, - anon_sym_RBRACK, - STATE(1071), 1, + STATE(1012), 1, sym_string, - STATE(1652), 1, + STATE(1078), 1, sym_primary_expression, - STATE(1679), 1, + STATE(1381), 1, sym_list_splat_pattern, - STATE(2303), 1, - sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - STATE(1678), 2, - sym_attribute, - sym_subscript, - STATE(2326), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(904), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(336), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1848), 4, + ACTIONS(1866), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1455), 14, + ACTIONS(686), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -79332,60 +77828,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60984] = 20, - ACTIONS(334), 1, + [61187] = 15, + ACTIONS(668), 1, + anon_sym_LPAREN, + ACTIONS(674), 1, + anon_sym_LBRACK, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1114), 1, anon_sym_STAR, - ACTIONS(1772), 1, - sym_identifier, - ACTIONS(1774), 1, - anon_sym_LPAREN, - ACTIONS(1778), 1, - anon_sym_LBRACK, - ACTIONS(1780), 1, + ACTIONS(1870), 1, anon_sym_await, - ACTIONS(1920), 1, - anon_sym_in, - STATE(1071), 1, + STATE(1012), 1, sym_string, - STATE(1647), 1, - sym_list_splat_pattern, - STATE(1672), 1, + STATE(1080), 1, sym_primary_expression, - STATE(1717), 1, - sym_pattern, + STATE(1381), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - STATE(1686), 2, - sym_attribute, - sym_subscript, - STATE(1693), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(904), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(336), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1776), 4, + ACTIONS(1866), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1455), 14, + ACTIONS(686), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -79398,497 +77885,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61070] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1638), 12, - sym__dedent, - sym_string_start, + [61259] = 17, + ACTIONS(308), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1636), 31, - 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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [61122] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1918), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1916), 31, - 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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [61174] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1790), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1792), 31, - 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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [61226] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1356), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1358), 31, - 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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [61278] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1878), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1880), 31, - 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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [61330] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1888), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1890), 31, - 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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [61382] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1834), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1836), 31, - 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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [61434] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1870), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1872), 31, - 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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [61486] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1838), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_AT, + ACTIONS(314), 1, anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1840), 31, - 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_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [61538] = 19, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1772), 1, + ACTIONS(1878), 1, sym_identifier, - ACTIONS(1774), 1, - anon_sym_LPAREN, - ACTIONS(1778), 1, - anon_sym_LBRACK, - ACTIONS(1780), 1, + ACTIONS(1882), 1, anon_sym_await, - STATE(1071), 1, + STATE(996), 1, sym_string, - STATE(1647), 1, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1672), 1, + STATE(1593), 1, sym_primary_expression, - STATE(1717), 1, - sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - STATE(1686), 2, + STATE(1602), 2, sym_attribute, sym_subscript, - STATE(1693), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(904), 3, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1776), 4, + ACTIONS(1880), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1455), 14, + STATE(1426), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -79903,56 +77944,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61621] = 19, - ACTIONS(334), 1, + [61335] = 17, + ACTIONS(308), 1, + anon_sym_LPAREN, + ACTIONS(314), 1, + anon_sym_LBRACK, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(960), 1, + ACTIONS(1202), 1, + anon_sym_STAR, + ACTIONS(1884), 1, sym_identifier, - ACTIONS(962), 1, - anon_sym_LPAREN, - ACTIONS(968), 1, - anon_sym_LBRACK, - ACTIONS(970), 1, + ACTIONS(1888), 1, anon_sym_await, - ACTIONS(1922), 1, - anon_sym_STAR, - STATE(1071), 1, + STATE(996), 1, sym_string, - STATE(1618), 1, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1664), 1, + STATE(1597), 1, sym_primary_expression, - STATE(1717), 1, - sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - STATE(1615), 2, + STATE(1549), 2, sym_attribute, sym_subscript, - STATE(1693), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(904), 3, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(966), 4, + ACTIONS(1886), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1455), 14, + STATE(1426), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -79967,58 +78003,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61704] = 19, - ACTIONS(334), 1, + [61411] = 15, + ACTIONS(308), 1, + anon_sym_LPAREN, + ACTIONS(314), 1, + anon_sym_LBRACK, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1842), 1, - sym_identifier, - ACTIONS(1844), 1, - anon_sym_LPAREN, - ACTIONS(1846), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1850), 1, - anon_sym_LBRACK, - ACTIONS(1854), 1, + ACTIONS(1852), 1, anon_sym_await, - STATE(1071), 1, + STATE(996), 1, sym_string, - STATE(1652), 1, + STATE(1095), 1, sym_primary_expression, - STATE(1679), 1, + STATE(1406), 1, sym_list_splat_pattern, - STATE(2303), 1, - sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - STATE(1678), 2, - sym_attribute, - sym_subscript, - STATE(2326), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(904), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(336), 4, - sym_integer, - sym_true, - sym_false, - sym_none, ACTIONS(1848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1455), 14, + ACTIONS(328), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -80031,56 +78060,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61787] = 19, - ACTIONS(334), 1, + [61483] = 17, + ACTIONS(308), 1, + anon_sym_LPAREN, + ACTIONS(314), 1, + anon_sym_LBRACK, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1748), 1, - sym_identifier, - ACTIONS(1750), 1, - anon_sym_LPAREN, - ACTIONS(1754), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1758), 1, - anon_sym_LBRACK, - ACTIONS(1760), 1, + ACTIONS(1890), 1, + sym_identifier, + ACTIONS(1894), 1, anon_sym_await, - STATE(1071), 1, + STATE(996), 1, sym_string, - STATE(1662), 1, - sym_primary_expression, - STATE(1675), 1, + STATE(1406), 1, sym_list_splat_pattern, - STATE(2269), 1, - sym_pattern, + STATE(1603), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - STATE(1680), 2, + STATE(1265), 2, sym_attribute, sym_subscript, - STATE(2327), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(904), 3, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1756), 4, + ACTIONS(1892), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1455), 14, + STATE(1426), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -80095,58 +78119,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61870] = 19, - ACTIONS(334), 1, + [61559] = 15, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(79), 1, sym_string_start, - ACTIONS(1586), 1, - sym_identifier, - ACTIONS(1588), 1, + ACTIONS(334), 1, anon_sym_LPAREN, - ACTIONS(1590), 1, - anon_sym_STAR, - ACTIONS(1594), 1, + ACTIONS(338), 1, anon_sym_LBRACK, - ACTIONS(1596), 1, + ACTIONS(1148), 1, + anon_sym_STAR, + ACTIONS(1828), 1, anon_sym_await, - STATE(1071), 1, + STATE(977), 1, sym_string, - STATE(1630), 1, - sym_list_splat_pattern, - STATE(1653), 1, + STATE(1007), 1, sym_primary_expression, - STATE(2004), 1, - sym_pattern, + STATE(1295), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - STATE(1632), 2, - sym_attribute, - sym_subscript, - STATE(1980), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(904), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(336), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1592), 4, + ACTIONS(1824), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1455), 14, + ACTIONS(75), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -80159,58 +78176,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61953] = 19, - ACTIONS(17), 1, - anon_sym_STAR, - ACTIONS(334), 1, + [61631] = 15, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(79), 1, sym_string_start, - ACTIONS(890), 1, - sym_identifier, - ACTIONS(894), 1, + ACTIONS(334), 1, anon_sym_LPAREN, - ACTIONS(900), 1, + ACTIONS(338), 1, anon_sym_LBRACK, - ACTIONS(906), 1, + ACTIONS(1148), 1, + anon_sym_STAR, + ACTIONS(1828), 1, anon_sym_await, - STATE(1071), 1, + STATE(977), 1, sym_string, - STATE(1478), 1, - sym_list_splat_pattern, - STATE(1681), 1, - sym_pattern, - STATE(1682), 1, + STATE(1009), 1, sym_primary_expression, + STATE(1295), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - STATE(1477), 2, - sym_attribute, - sym_subscript, - STATE(1671), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(904), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(336), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(898), 4, + ACTIONS(1824), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1455), 14, + ACTIONS(75), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -80223,56 +78233,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62036] = 18, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_LBRACK, - ACTIONS(334), 1, + [61703] = 15, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(79), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(334), 1, + anon_sym_LPAREN, + ACTIONS(338), 1, + anon_sym_LBRACK, + ACTIONS(1148), 1, anon_sym_STAR, - ACTIONS(1924), 1, - sym_identifier, - ACTIONS(1930), 1, + ACTIONS(1828), 1, anon_sym_await, - STATE(1071), 1, + STATE(977), 1, sym_string, - STATE(1366), 1, - sym_list_splat_pattern, - STATE(1662), 1, + STATE(1010), 1, sym_primary_expression, + STATE(1295), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(1926), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(1641), 2, - sym_attribute, - sym_subscript, - ACTIONS(904), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(336), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1928), 4, + ACTIONS(1824), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1455), 14, + ACTIONS(75), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -80285,56 +78290,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62116] = 18, - ACTIONS(316), 1, + [61775] = 15, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1932), 1, - sym_identifier, - ACTIONS(1936), 1, + ACTIONS(1852), 1, anon_sym_await, - STATE(1071), 1, + STATE(996), 1, sym_string, - STATE(1366), 1, - sym_list_splat_pattern, - STATE(1672), 1, + STATE(1090), 1, sym_primary_expression, + STATE(1406), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(1926), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(1668), 2, - sym_attribute, - sym_subscript, - ACTIONS(904), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(336), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1934), 4, + ACTIONS(1848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1455), 14, + ACTIONS(328), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -80347,49 +78347,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62196] = 16, - ACTIONS(692), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, - ACTIONS(708), 1, + [61847] = 15, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(714), 1, + ACTIONS(79), 1, sym_string_start, - ACTIONS(1098), 1, + ACTIONS(334), 1, + anon_sym_LPAREN, + ACTIONS(338), 1, + anon_sym_LBRACK, + ACTIONS(1148), 1, anon_sym_STAR, - ACTIONS(1940), 1, - anon_sym_not, - ACTIONS(1942), 1, + ACTIONS(1828), 1, anon_sym_await, - STATE(1058), 1, + STATE(977), 1, sym_string, - STATE(1115), 1, + STATE(1025), 1, sym_primary_expression, - STATE(1397), 1, + STATE(1295), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1938), 4, + ACTIONS(1824), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(710), 5, + ACTIONS(75), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1507), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80406,49 +78404,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62271] = 16, - ACTIONS(718), 1, - anon_sym_LPAREN, - ACTIONS(724), 1, - anon_sym_LBRACK, - ACTIONS(734), 1, + [61919] = 15, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(79), 1, sym_string_start, - ACTIONS(1168), 1, + ACTIONS(334), 1, + anon_sym_LPAREN, + ACTIONS(338), 1, + anon_sym_LBRACK, + ACTIONS(1148), 1, anon_sym_STAR, - ACTIONS(1946), 1, - anon_sym_not, - ACTIONS(1948), 1, + ACTIONS(1828), 1, anon_sym_await, - STATE(1157), 1, + STATE(977), 1, sym_string, - STATE(1188), 1, + STATE(1038), 1, sym_primary_expression, - STATE(1516), 1, + STATE(1295), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1944), 4, + ACTIONS(1824), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 5, + ACTIONS(75), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1552), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80465,49 +78461,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62346] = 16, - ACTIONS(744), 1, + [61991] = 15, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(766), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1172), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1952), 1, - anon_sym_not, - ACTIONS(1954), 1, + ACTIONS(1852), 1, anon_sym_await, - STATE(1132), 1, + STATE(996), 1, sym_string, - STATE(1262), 1, + STATE(1089), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1406), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1950), 4, + ACTIONS(1848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 5, + ACTIONS(328), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1580), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80524,49 +78518,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62421] = 16, - ACTIONS(634), 1, + [62063] = 15, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(640), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(650), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(656), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1138), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1958), 1, - anon_sym_not, - ACTIONS(1960), 1, + ACTIONS(1852), 1, anon_sym_await, - STATE(1037), 1, + STATE(996), 1, sym_string, - STATE(1060), 1, + STATE(1096), 1, sym_primary_expression, - STATE(1338), 1, + STATE(1406), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1956), 4, + ACTIONS(1848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(652), 5, + ACTIONS(328), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1277), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80583,49 +78575,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62496] = 16, - ACTIONS(608), 1, + [62135] = 15, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(630), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(914), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1964), 1, - anon_sym_not, - ACTIONS(1966), 1, + ACTIONS(1852), 1, anon_sym_await, - STATE(1032), 1, + STATE(996), 1, sym_string, - STATE(1089), 1, + STATE(1088), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1406), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(618), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1962), 4, + ACTIONS(1848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(626), 5, + ACTIONS(328), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1341), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80642,49 +78632,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62571] = 16, - ACTIONS(316), 1, + [62207] = 15, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1970), 1, - anon_sym_not, - ACTIONS(1972), 1, + ACTIONS(1852), 1, anon_sym_await, - STATE(1071), 1, + STATE(996), 1, sym_string, - STATE(1109), 1, + STATE(1086), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1406), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1968), 4, + ACTIONS(1848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 5, + ACTIONS(328), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1455), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80701,49 +78689,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62646] = 16, - ACTIONS(660), 1, + [62279] = 15, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1108), 1, + ACTIONS(1154), 1, anon_sym_STAR, - ACTIONS(1976), 1, - anon_sym_not, - ACTIONS(1978), 1, + ACTIONS(1864), 1, anon_sym_await, - STATE(1095), 1, + STATE(1062), 1, sym_string, - STATE(1138), 1, + STATE(1168), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1456), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1974), 4, + ACTIONS(1860), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(680), 5, + ACTIONS(712), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1385), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80760,49 +78746,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62721] = 16, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(302), 1, + [62351] = 15, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(1160), 1, + ACTIONS(710), 1, + anon_sym_LBRACE, + ACTIONS(716), 1, + sym_string_start, + ACTIONS(1154), 1, anon_sym_STAR, - ACTIONS(1982), 1, - anon_sym_not, - ACTIONS(1984), 1, + ACTIONS(1864), 1, anon_sym_await, - STATE(1034), 1, + STATE(1062), 1, sym_string, - STATE(1096), 1, + STATE(1112), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1456), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1980), 4, + ACTIONS(1860), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(75), 5, + ACTIONS(712), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1344), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80819,47 +78803,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62796] = 15, - ACTIONS(608), 1, - anon_sym_LPAREN, + [62423] = 15, ACTIONS(614), 1, + anon_sym_LPAREN, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(624), 1, - anon_sym_LBRACE, ACTIONS(630), 1, + anon_sym_LBRACE, + ACTIONS(636), 1, sym_string_start, - ACTIONS(914), 1, + ACTIONS(1090), 1, anon_sym_STAR, - ACTIONS(1966), 1, + ACTIONS(1840), 1, anon_sym_await, - STATE(1032), 1, + STATE(975), 1, sym_string, - STATE(1089), 1, + STATE(1026), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1238), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(618), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1962), 4, + ACTIONS(1836), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(626), 5, + ACTIONS(632), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1341), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80876,47 +78860,104 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62868] = 15, - ACTIONS(73), 1, + [62495] = 15, + ACTIONS(720), 1, + anon_sym_LPAREN, + ACTIONS(726), 1, + anon_sym_LBRACK, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(79), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(302), 1, + ACTIONS(1128), 1, + anon_sym_STAR, + ACTIONS(1834), 1, + anon_sym_await, + STATE(1099), 1, + sym_string, + STATE(1225), 1, + sym_primary_expression, + STATE(1480), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(734), 2, + sym_ellipsis, + sym_float, + ACTIONS(730), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(1830), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(738), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1531), 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, + [62567] = 15, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(1160), 1, + ACTIONS(710), 1, + anon_sym_LBRACE, + ACTIONS(716), 1, + sym_string_start, + ACTIONS(1154), 1, anon_sym_STAR, - ACTIONS(1984), 1, + ACTIONS(1864), 1, anon_sym_await, - STATE(1034), 1, + STATE(1062), 1, sym_string, - STATE(1068), 1, + STATE(1169), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1456), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1980), 4, + ACTIONS(1860), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(75), 5, + ACTIONS(712), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1344), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80933,47 +78974,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62940] = 15, - ACTIONS(692), 1, + [62639] = 15, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(708), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(714), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1098), 1, + ACTIONS(1154), 1, anon_sym_STAR, - ACTIONS(1942), 1, + ACTIONS(1864), 1, anon_sym_await, - STATE(1058), 1, + STATE(1062), 1, sym_string, - STATE(1120), 1, + STATE(1220), 1, sym_primary_expression, - STATE(1397), 1, + STATE(1456), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1938), 4, + ACTIONS(1860), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(710), 5, + ACTIONS(712), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1507), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80990,47 +79031,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63012] = 15, - ACTIONS(744), 1, + [62711] = 15, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(766), 1, + ACTIONS(636), 1, sym_string_start, - ACTIONS(1172), 1, + ACTIONS(1090), 1, anon_sym_STAR, - ACTIONS(1954), 1, + ACTIONS(1840), 1, anon_sym_await, - STATE(1132), 1, + STATE(975), 1, sym_string, - STATE(1260), 1, + STATE(985), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1238), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1950), 4, + ACTIONS(1836), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 5, + ACTIONS(632), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1580), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81047,47 +79088,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63084] = 15, - ACTIONS(718), 1, + [62783] = 15, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1168), 1, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1948), 1, + ACTIONS(1834), 1, anon_sym_await, - STATE(1157), 1, + STATE(1099), 1, sym_string, - STATE(1214), 1, + STATE(1230), 1, sym_primary_expression, - STATE(1516), 1, + STATE(1480), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1944), 4, + ACTIONS(1830), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 5, + ACTIONS(738), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1552), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81104,47 +79145,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63156] = 15, - ACTIONS(718), 1, + [62855] = 15, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(636), 1, sym_string_start, - ACTIONS(1168), 1, + ACTIONS(1090), 1, anon_sym_STAR, - ACTIONS(1948), 1, + ACTIONS(1840), 1, anon_sym_await, - STATE(1157), 1, + STATE(975), 1, sym_string, - STATE(1208), 1, + STATE(1029), 1, sym_primary_expression, - STATE(1516), 1, + STATE(1238), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1944), 4, + ACTIONS(1836), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 5, + ACTIONS(632), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1552), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81161,47 +79202,106 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63228] = 15, - ACTIONS(73), 1, + [62927] = 17, + ACTIONS(308), 1, + anon_sym_LPAREN, + ACTIONS(314), 1, + anon_sym_LBRACK, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(79), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(302), 1, + ACTIONS(1202), 1, + anon_sym_STAR, + ACTIONS(1896), 1, + sym_identifier, + ACTIONS(1900), 1, + anon_sym_await, + STATE(996), 1, + sym_string, + STATE(1406), 1, + sym_list_splat_pattern, + STATE(1595), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(324), 2, + sym_ellipsis, + sym_float, + STATE(1455), 2, + sym_attribute, + sym_subscript, + ACTIONS(880), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(328), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1898), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1426), 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, + [63003] = 15, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(1160), 1, + ACTIONS(684), 1, + anon_sym_LBRACE, + ACTIONS(690), 1, + sym_string_start, + ACTIONS(1114), 1, anon_sym_STAR, - ACTIONS(1984), 1, + ACTIONS(1870), 1, anon_sym_await, - STATE(1034), 1, + STATE(1012), 1, sym_string, - STATE(1049), 1, + STATE(1051), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1381), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1980), 4, + ACTIONS(1866), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(75), 5, + ACTIONS(686), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1344), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81218,47 +79318,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63300] = 15, - ACTIONS(718), 1, + [63075] = 15, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1168), 1, + ACTIONS(1154), 1, anon_sym_STAR, - ACTIONS(1948), 1, + ACTIONS(1864), 1, anon_sym_await, - STATE(1157), 1, + STATE(1062), 1, sym_string, - STATE(1201), 1, + STATE(1221), 1, sym_primary_expression, - STATE(1516), 1, + STATE(1456), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1944), 4, + ACTIONS(1860), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 5, + ACTIONS(712), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1552), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81275,47 +79375,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63372] = 15, - ACTIONS(316), 1, + [63147] = 15, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(334), 1, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1114), 1, anon_sym_STAR, - ACTIONS(1972), 1, + ACTIONS(1870), 1, anon_sym_await, - STATE(1071), 1, + STATE(1012), 1, sym_string, - STATE(1155), 1, + STATE(1049), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1381), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1968), 4, + ACTIONS(1866), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 5, + ACTIONS(686), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1455), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81332,47 +79432,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63444] = 15, - ACTIONS(718), 1, + [63219] = 15, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(1168), 1, + ACTIONS(1084), 1, anon_sym_STAR, - ACTIONS(1948), 1, + ACTIONS(1858), 1, anon_sym_await, - STATE(1157), 1, + STATE(1036), 1, sym_string, - STATE(1200), 1, + STATE(1092), 1, sym_primary_expression, - STATE(1516), 1, + STATE(1304), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1944), 4, + ACTIONS(1854), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 5, + ACTIONS(660), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1552), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81389,47 +79489,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63516] = 15, - ACTIONS(718), 1, + [63291] = 15, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1168), 1, + ACTIONS(1154), 1, anon_sym_STAR, - ACTIONS(1948), 1, + ACTIONS(1864), 1, anon_sym_await, - STATE(1157), 1, + STATE(1062), 1, sym_string, - STATE(1194), 1, + STATE(1222), 1, sym_primary_expression, - STATE(1516), 1, + STATE(1456), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1944), 4, + ACTIONS(1860), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 5, + ACTIONS(712), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1552), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81446,47 +79546,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63588] = 15, - ACTIONS(718), 1, + [63363] = 15, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(636), 1, sym_string_start, - ACTIONS(1168), 1, + ACTIONS(1090), 1, anon_sym_STAR, - ACTIONS(1948), 1, + ACTIONS(1840), 1, anon_sym_await, - STATE(1157), 1, + STATE(975), 1, sym_string, - STATE(1191), 1, + STATE(1018), 1, sym_primary_expression, - STATE(1516), 1, + STATE(1238), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1944), 4, + ACTIONS(1836), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 5, + ACTIONS(632), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1552), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81503,47 +79603,106 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63660] = 15, - ACTIONS(718), 1, + [63435] = 17, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1168), 1, + ACTIONS(1202), 1, + anon_sym_STAR, + ACTIONS(1894), 1, + anon_sym_await, + ACTIONS(1902), 1, + sym_identifier, + STATE(996), 1, + sym_string, + STATE(1406), 1, + sym_list_splat_pattern, + STATE(1589), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(324), 2, + sym_ellipsis, + sym_float, + STATE(1163), 2, + sym_attribute, + sym_subscript, + ACTIONS(880), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(328), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1904), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1426), 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, + [63511] = 15, + ACTIONS(308), 1, + anon_sym_LPAREN, + ACTIONS(314), 1, + anon_sym_LBRACK, + ACTIONS(326), 1, + anon_sym_LBRACE, + ACTIONS(332), 1, + sym_string_start, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1948), 1, + ACTIONS(1852), 1, anon_sym_await, - STATE(1157), 1, + STATE(996), 1, sym_string, - STATE(1190), 1, + STATE(1084), 1, sym_primary_expression, - STATE(1516), 1, + STATE(1406), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1944), 4, + ACTIONS(1848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 5, + ACTIONS(328), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1552), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81560,47 +79719,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63732] = 15, - ACTIONS(718), 1, + [63583] = 15, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(726), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(736), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(742), 1, sym_string_start, - ACTIONS(1168), 1, + ACTIONS(1128), 1, anon_sym_STAR, - ACTIONS(1948), 1, + ACTIONS(1834), 1, anon_sym_await, - STATE(1157), 1, + STATE(1099), 1, sym_string, - STATE(1188), 1, + STATE(1172), 1, sym_primary_expression, - STATE(1516), 1, + STATE(1480), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(734), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + ACTIONS(730), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1944), 4, + ACTIONS(1830), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 5, + ACTIONS(738), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1552), 16, + STATE(1531), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81617,47 +79776,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63804] = 15, - ACTIONS(660), 1, + [63655] = 15, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(1108), 1, + ACTIONS(1084), 1, anon_sym_STAR, - ACTIONS(1978), 1, + ACTIONS(1858), 1, anon_sym_await, - STATE(1095), 1, + STATE(1036), 1, sym_string, - STATE(1136), 1, + STATE(1091), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1304), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1974), 4, + ACTIONS(1854), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(680), 5, + ACTIONS(660), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1385), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81674,47 +79833,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63876] = 15, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_LBRACK, - ACTIONS(334), 1, + [63727] = 15, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(79), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(334), 1, + anon_sym_LPAREN, + ACTIONS(338), 1, + anon_sym_LBRACK, + ACTIONS(1148), 1, anon_sym_STAR, - ACTIONS(1972), 1, + ACTIONS(1828), 1, anon_sym_await, - STATE(1071), 1, + STATE(977), 1, sym_string, - STATE(1131), 1, + STATE(990), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1295), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1968), 4, + ACTIONS(1824), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 5, + ACTIONS(75), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1455), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81731,47 +79890,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63948] = 15, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_LBRACK, - ACTIONS(334), 1, + [63799] = 15, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(79), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(334), 1, + anon_sym_LPAREN, + ACTIONS(338), 1, + anon_sym_LBRACK, + ACTIONS(1148), 1, anon_sym_STAR, - ACTIONS(1972), 1, + ACTIONS(1828), 1, anon_sym_await, - STATE(1071), 1, + STATE(977), 1, sym_string, - STATE(1123), 1, + STATE(1027), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1295), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1968), 4, + ACTIONS(1824), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 5, + ACTIONS(75), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1455), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81788,47 +79947,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64020] = 15, - ACTIONS(316), 1, + [63871] = 15, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(334), 1, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(636), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1090), 1, anon_sym_STAR, - ACTIONS(1972), 1, + ACTIONS(1840), 1, anon_sym_await, - STATE(1071), 1, + STATE(975), 1, sym_string, - STATE(1122), 1, + STATE(1030), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1238), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1968), 4, + ACTIONS(1836), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 5, + ACTIONS(632), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1455), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81845,47 +80004,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64092] = 15, - ACTIONS(744), 1, + [63943] = 15, + ACTIONS(668), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(684), 1, anon_sym_LBRACE, - ACTIONS(766), 1, + ACTIONS(690), 1, sym_string_start, - ACTIONS(1172), 1, + ACTIONS(1114), 1, anon_sym_STAR, - ACTIONS(1954), 1, + ACTIONS(1870), 1, anon_sym_await, - STATE(1132), 1, + STATE(1012), 1, sym_string, - STATE(1262), 1, + STATE(1097), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1381), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(682), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(678), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1950), 4, + ACTIONS(1866), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 5, + ACTIONS(686), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1580), 16, + STATE(1403), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81902,47 +80061,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64164] = 15, - ACTIONS(744), 1, + [64015] = 15, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(766), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1172), 1, + ACTIONS(1154), 1, anon_sym_STAR, - ACTIONS(1954), 1, + ACTIONS(1864), 1, anon_sym_await, - STATE(1132), 1, + STATE(1062), 1, sym_string, - STATE(1263), 1, + STATE(1223), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1456), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1950), 4, + ACTIONS(1860), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 5, + ACTIONS(712), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1580), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81959,47 +80118,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64236] = 15, - ACTIONS(316), 1, + [64087] = 15, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(334), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1154), 1, anon_sym_STAR, - ACTIONS(1972), 1, + ACTIONS(1864), 1, anon_sym_await, - STATE(1071), 1, + STATE(1062), 1, sym_string, - STATE(1119), 1, + STATE(1246), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1456), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1968), 4, + ACTIONS(1860), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 5, + ACTIONS(712), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1455), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82016,47 +80175,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64308] = 15, - ACTIONS(316), 1, + [64159] = 15, + ACTIONS(581), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(334), 1, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(603), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(890), 1, anon_sym_STAR, - ACTIONS(1972), 1, + ACTIONS(1846), 1, anon_sym_await, - STATE(1071), 1, + STATE(984), 1, sym_string, - STATE(1118), 1, + STATE(1013), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1164), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1968), 4, + ACTIONS(1842), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 5, + ACTIONS(599), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1455), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82073,47 +80232,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64380] = 15, - ACTIONS(316), 1, + [64231] = 15, + ACTIONS(581), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(334), 1, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(603), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(890), 1, anon_sym_STAR, - ACTIONS(1972), 1, + ACTIONS(1846), 1, anon_sym_await, - STATE(1071), 1, + STATE(984), 1, sym_string, - STATE(1117), 1, + STATE(987), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1164), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1968), 4, + ACTIONS(1842), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 5, + ACTIONS(599), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1455), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82130,108 +80289,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64452] = 15, - ACTIONS(718), 1, + [64303] = 17, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(734), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(740), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1168), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1948), 1, + ACTIONS(1906), 1, + sym_identifier, + ACTIONS(1910), 1, anon_sym_await, - STATE(1157), 1, + STATE(996), 1, sym_string, - STATE(1187), 1, - sym_primary_expression, - STATE(1516), 1, + STATE(1406), 1, sym_list_splat_pattern, + STATE(1624), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(732), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(728), 3, + STATE(1376), 2, + sym_attribute, + sym_subscript, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1944), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(736), 5, + ACTIONS(328), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1552), 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, - [64524] = 15, - ACTIONS(718), 1, - anon_sym_LPAREN, - ACTIONS(724), 1, - anon_sym_LBRACK, - ACTIONS(734), 1, - anon_sym_LBRACE, - ACTIONS(740), 1, - sym_string_start, - ACTIONS(1168), 1, - anon_sym_STAR, - ACTIONS(1948), 1, - anon_sym_await, - STATE(1157), 1, - sym_string, - STATE(1184), 1, - sym_primary_expression, - STATE(1516), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(732), 2, - sym_ellipsis, - sym_float, - ACTIONS(728), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(1944), 4, + ACTIONS(1908), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1552), 16, + STATE(1426), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -82244,47 +80348,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64596] = 15, - ACTIONS(692), 1, + [64379] = 15, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(708), 1, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(714), 1, + ACTIONS(636), 1, sym_string_start, - ACTIONS(1098), 1, + ACTIONS(1090), 1, anon_sym_STAR, - ACTIONS(1942), 1, + ACTIONS(1840), 1, anon_sym_await, - STATE(1058), 1, + STATE(975), 1, sym_string, - STATE(1121), 1, + STATE(1019), 1, sym_primary_expression, - STATE(1397), 1, + STATE(1238), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1938), 4, + ACTIONS(1836), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(710), 5, + ACTIONS(632), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1507), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82301,47 +80405,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64668] = 15, - ACTIONS(660), 1, + [64451] = 15, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1108), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1978), 1, + ACTIONS(1852), 1, anon_sym_await, - STATE(1095), 1, + STATE(996), 1, sym_string, - STATE(1138), 1, + STATE(1040), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1406), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1974), 4, + ACTIONS(1848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(680), 5, + ACTIONS(328), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1385), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82358,47 +80462,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64740] = 15, - ACTIONS(692), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, - ACTIONS(708), 1, + [64523] = 15, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(714), 1, + ACTIONS(79), 1, sym_string_start, - ACTIONS(1098), 1, + ACTIONS(334), 1, + anon_sym_LPAREN, + ACTIONS(338), 1, + anon_sym_LBRACK, + ACTIONS(1148), 1, anon_sym_STAR, - ACTIONS(1942), 1, + ACTIONS(1828), 1, anon_sym_await, - STATE(1058), 1, + STATE(977), 1, sym_string, - STATE(1115), 1, + STATE(1004), 1, sym_primary_expression, - STATE(1397), 1, + STATE(1295), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1938), 4, + ACTIONS(1824), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(710), 5, + ACTIONS(75), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1507), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82415,47 +80519,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64812] = 15, - ACTIONS(692), 1, + [64595] = 15, + ACTIONS(581), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(708), 1, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(714), 1, + ACTIONS(603), 1, sym_string_start, - ACTIONS(1098), 1, + ACTIONS(890), 1, anon_sym_STAR, - ACTIONS(1942), 1, + ACTIONS(1846), 1, anon_sym_await, - STATE(1058), 1, + STATE(984), 1, sym_string, - STATE(1114), 1, + STATE(1003), 1, sym_primary_expression, - STATE(1397), 1, + STATE(1164), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1938), 4, + ACTIONS(1842), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(710), 5, + ACTIONS(599), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1507), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82472,47 +80576,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64884] = 15, - ACTIONS(692), 1, + [64667] = 15, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(708), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(714), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1098), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1942), 1, + ACTIONS(1912), 1, anon_sym_await, - STATE(1058), 1, + STATE(996), 1, sym_string, - STATE(1113), 1, - sym_primary_expression, - STATE(1397), 1, + STATE(1406), 1, sym_list_splat_pattern, + STATE(1614), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1938), 4, + ACTIONS(1848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(710), 5, + ACTIONS(328), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1507), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82529,47 +80633,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64956] = 15, - ACTIONS(692), 1, + [64739] = 15, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(708), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(714), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1098), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1942), 1, + ACTIONS(1912), 1, anon_sym_await, - STATE(1058), 1, + STATE(996), 1, sym_string, - STATE(1110), 1, - sym_primary_expression, - STATE(1397), 1, + STATE(1406), 1, sym_list_splat_pattern, + STATE(1616), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1938), 4, + ACTIONS(1848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(710), 5, + ACTIONS(328), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1507), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82586,47 +80690,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65028] = 15, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(302), 1, + [64811] = 15, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(1160), 1, + ACTIONS(630), 1, + anon_sym_LBRACE, + ACTIONS(636), 1, + sym_string_start, + ACTIONS(1090), 1, anon_sym_STAR, - ACTIONS(1984), 1, + ACTIONS(1840), 1, anon_sym_await, - STATE(1034), 1, + STATE(975), 1, sym_string, - STATE(1051), 1, + STATE(1031), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1238), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1980), 4, + ACTIONS(1836), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(75), 5, + ACTIONS(632), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1344), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82643,47 +80747,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65100] = 15, - ACTIONS(744), 1, + [64883] = 15, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(766), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1172), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1954), 1, + ACTIONS(1852), 1, anon_sym_await, - STATE(1132), 1, + STATE(996), 1, sym_string, - STATE(1274), 1, + STATE(1079), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1406), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1950), 4, + ACTIONS(1848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 5, + ACTIONS(328), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1580), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82700,51 +80804,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65172] = 15, - ACTIONS(744), 1, + [64955] = 17, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(766), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1172), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1954), 1, + ACTIONS(1914), 1, + sym_identifier, + ACTIONS(1918), 1, anon_sym_await, - STATE(1132), 1, + STATE(996), 1, sym_string, - STATE(1275), 1, - sym_primary_expression, - STATE(1598), 1, + STATE(1406), 1, sym_list_splat_pattern, + STATE(1592), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + STATE(637), 2, + sym_attribute, + sym_subscript, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1950), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(762), 5, + ACTIONS(328), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1580), 16, + ACTIONS(1916), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1426), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -82757,47 +80863,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65244] = 15, - ACTIONS(660), 1, + [65031] = 15, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1108), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1978), 1, + ACTIONS(1852), 1, anon_sym_await, - STATE(1095), 1, + STATE(996), 1, sym_string, - STATE(1135), 1, + STATE(1107), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1406), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1974), 4, + ACTIONS(1848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(680), 5, + ACTIONS(328), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1385), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82814,47 +80920,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65316] = 15, - ACTIONS(692), 1, + [65103] = 15, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(708), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(714), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1098), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1942), 1, + ACTIONS(1912), 1, anon_sym_await, - STATE(1058), 1, + STATE(996), 1, sym_string, - STATE(1103), 1, - sym_primary_expression, - STATE(1397), 1, + STATE(1406), 1, sym_list_splat_pattern, + STATE(1617), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1938), 4, + ACTIONS(1848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(710), 5, + ACTIONS(328), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1507), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82871,47 +80977,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65388] = 15, - ACTIONS(692), 1, + [65175] = 15, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(708), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(714), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1098), 1, + ACTIONS(1154), 1, anon_sym_STAR, - ACTIONS(1942), 1, + ACTIONS(1864), 1, anon_sym_await, - STATE(1058), 1, + STATE(1062), 1, sym_string, - STATE(1102), 1, + STATE(1131), 1, sym_primary_expression, - STATE(1397), 1, + STATE(1456), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1938), 4, + ACTIONS(1860), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(710), 5, + ACTIONS(712), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1507), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82928,47 +81034,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65460] = 15, - ACTIONS(744), 1, + [65247] = 15, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(766), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(1172), 1, + ACTIONS(1084), 1, anon_sym_STAR, - ACTIONS(1954), 1, + ACTIONS(1858), 1, anon_sym_await, - STATE(1132), 1, + STATE(1036), 1, sym_string, - STATE(1281), 1, + STATE(1044), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1304), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1950), 4, + ACTIONS(1854), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 5, + ACTIONS(660), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1580), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82985,47 +81091,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65532] = 15, - ACTIONS(660), 1, + [65319] = 15, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1108), 1, + ACTIONS(1154), 1, anon_sym_STAR, - ACTIONS(1978), 1, + ACTIONS(1864), 1, anon_sym_await, - STATE(1095), 1, + STATE(1062), 1, sym_string, - STATE(1134), 1, + STATE(1138), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1456), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1974), 4, + ACTIONS(1860), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(680), 5, + ACTIONS(712), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1385), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -83042,47 +81148,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65604] = 15, - ACTIONS(744), 1, + [65391] = 15, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(766), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1172), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1954), 1, + ACTIONS(1912), 1, anon_sym_await, - STATE(1132), 1, + STATE(996), 1, sym_string, - STATE(1283), 1, - sym_primary_expression, - STATE(1598), 1, + STATE(1406), 1, sym_list_splat_pattern, + STATE(1590), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1950), 4, + ACTIONS(1848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 5, + ACTIONS(328), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1580), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -83099,51 +81205,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65676] = 15, - ACTIONS(660), 1, + [65463] = 17, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1108), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1978), 1, + ACTIONS(1920), 1, + sym_identifier, + ACTIONS(1924), 1, anon_sym_await, - STATE(1095), 1, + STATE(996), 1, sym_string, - STATE(1133), 1, - sym_primary_expression, - STATE(1407), 1, + STATE(1406), 1, sym_list_splat_pattern, + STATE(1600), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + STATE(1579), 2, + sym_attribute, + sym_subscript, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1974), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(680), 5, + ACTIONS(328), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1385), 16, + ACTIONS(1922), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1426), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -83156,47 +81264,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65748] = 15, - ACTIONS(608), 1, + [65539] = 15, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(630), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(914), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1966), 1, + ACTIONS(1912), 1, anon_sym_await, - STATE(1032), 1, + STATE(996), 1, sym_string, - STATE(1076), 1, - sym_primary_expression, - STATE(1236), 1, + STATE(1406), 1, sym_list_splat_pattern, + STATE(1618), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(618), 3, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1962), 4, + ACTIONS(1848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(626), 5, + ACTIONS(328), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1341), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -83213,47 +81321,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65820] = 15, - ACTIONS(608), 1, + [65611] = 15, + ACTIONS(581), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(630), 1, + ACTIONS(603), 1, sym_string_start, - ACTIONS(914), 1, + ACTIONS(890), 1, anon_sym_STAR, - ACTIONS(1966), 1, + ACTIONS(1846), 1, anon_sym_await, - STATE(1032), 1, + STATE(984), 1, sym_string, - STATE(1080), 1, + STATE(1005), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1164), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - ACTIONS(618), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1962), 4, + ACTIONS(1842), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(626), 5, + ACTIONS(599), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1341), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -83270,47 +81378,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65892] = 15, - ACTIONS(316), 1, + [65683] = 15, + ACTIONS(581), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(334), 1, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(603), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(890), 1, anon_sym_STAR, - ACTIONS(1972), 1, + ACTIONS(1846), 1, anon_sym_await, - STATE(1071), 1, + STATE(984), 1, sym_string, - STATE(1128), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1164), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1968), 4, + ACTIONS(1842), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 5, + ACTIONS(599), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1455), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -83327,47 +81435,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65964] = 15, - ACTIONS(692), 1, + [65755] = 15, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(708), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(714), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1098), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1942), 1, + ACTIONS(1912), 1, anon_sym_await, - STATE(1058), 1, + STATE(996), 1, sym_string, - STATE(1116), 1, - sym_primary_expression, - STATE(1397), 1, + STATE(1406), 1, sym_list_splat_pattern, + STATE(1619), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1938), 4, + ACTIONS(1848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(710), 5, + ACTIONS(328), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1507), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -83384,47 +81492,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66036] = 15, - ACTIONS(692), 1, + [65827] = 15, + ACTIONS(581), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(708), 1, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(714), 1, + ACTIONS(603), 1, sym_string_start, - ACTIONS(1098), 1, + ACTIONS(890), 1, anon_sym_STAR, - ACTIONS(1942), 1, + ACTIONS(1846), 1, anon_sym_await, - STATE(1058), 1, + STATE(984), 1, sym_string, - STATE(1126), 1, + STATE(989), 1, sym_primary_expression, - STATE(1397), 1, + STATE(1164), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1938), 4, + ACTIONS(1842), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(710), 5, + ACTIONS(599), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1507), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -83441,53 +81549,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66108] = 17, - ACTIONS(316), 1, + [65899] = 15, + ACTIONS(581), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(334), 1, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(603), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(890), 1, anon_sym_STAR, - ACTIONS(1986), 1, - sym_identifier, - ACTIONS(1990), 1, + ACTIONS(1846), 1, anon_sym_await, - STATE(1071), 1, + STATE(984), 1, sym_string, - STATE(1366), 1, - sym_list_splat_pattern, - STATE(1657), 1, + STATE(1001), 1, sym_primary_expression, + STATE(1164), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - STATE(1173), 2, - sym_attribute, - sym_subscript, - ACTIONS(904), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(336), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1988), 4, + ACTIONS(1842), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1455), 14, + ACTIONS(599), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -83500,47 +81606,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66184] = 15, - ACTIONS(660), 1, - anon_sym_LPAREN, - ACTIONS(666), 1, - anon_sym_LBRACK, - ACTIONS(678), 1, + [65971] = 15, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(79), 1, sym_string_start, - ACTIONS(1108), 1, + ACTIONS(334), 1, + anon_sym_LPAREN, + ACTIONS(338), 1, + anon_sym_LBRACK, + ACTIONS(1148), 1, anon_sym_STAR, - ACTIONS(1978), 1, + ACTIONS(1828), 1, anon_sym_await, - STATE(1095), 1, + STATE(977), 1, sym_string, - STATE(1130), 1, + STATE(1017), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1295), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(71), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(65), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1974), 4, + ACTIONS(1824), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(680), 5, + ACTIONS(75), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1385), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -83557,47 +81663,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66256] = 15, - ACTIONS(316), 1, + [66043] = 15, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(334), 1, + ACTIONS(630), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(636), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1090), 1, anon_sym_STAR, - ACTIONS(1992), 1, + ACTIONS(1840), 1, anon_sym_await, - STATE(1071), 1, + STATE(975), 1, sym_string, - STATE(1366), 1, - sym_list_splat_pattern, - STATE(1669), 1, + STATE(1022), 1, sym_primary_expression, + STATE(1238), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(904), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1968), 4, + ACTIONS(1836), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 5, + ACTIONS(632), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1455), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -83614,51 +81720,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66328] = 17, - ACTIONS(316), 1, + [66115] = 17, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1994), 1, + ACTIONS(1926), 1, sym_identifier, - ACTIONS(1998), 1, + ACTIONS(1930), 1, anon_sym_await, - STATE(1071), 1, + STATE(996), 1, sym_string, - STATE(1366), 1, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1667), 1, + STATE(1615), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - STATE(1235), 2, + STATE(1156), 2, sym_attribute, sym_subscript, - ACTIONS(904), 3, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1996), 4, + ACTIONS(1928), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1455), 14, + STATE(1426), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -83673,47 +81779,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66404] = 15, - ACTIONS(316), 1, + [66191] = 15, + ACTIONS(581), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(334), 1, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(603), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(890), 1, anon_sym_STAR, - ACTIONS(1972), 1, + ACTIONS(1846), 1, anon_sym_await, - STATE(1071), 1, + STATE(984), 1, sym_string, - STATE(1144), 1, + STATE(1015), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1164), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1968), 4, + ACTIONS(1842), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 5, + ACTIONS(599), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1455), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -83730,47 +81836,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66476] = 15, - ACTIONS(608), 1, + [66263] = 15, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(630), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(914), 1, + ACTIONS(1084), 1, anon_sym_STAR, - ACTIONS(1966), 1, + ACTIONS(1858), 1, anon_sym_await, - STATE(1032), 1, + STATE(1036), 1, sym_string, - STATE(1082), 1, + STATE(1052), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1304), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(618), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1962), 4, + ACTIONS(1854), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(626), 5, + ACTIONS(660), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1341), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -83787,47 +81893,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66548] = 15, - ACTIONS(608), 1, - anon_sym_LPAREN, + [66335] = 15, ACTIONS(614), 1, + anon_sym_LPAREN, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(624), 1, - anon_sym_LBRACE, ACTIONS(630), 1, + anon_sym_LBRACE, + ACTIONS(636), 1, sym_string_start, - ACTIONS(914), 1, + ACTIONS(1090), 1, anon_sym_STAR, - ACTIONS(1966), 1, + ACTIONS(1840), 1, anon_sym_await, - STATE(1032), 1, + STATE(975), 1, sym_string, - STATE(1083), 1, + STATE(1023), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1238), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(618), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1962), 4, + ACTIONS(1836), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(626), 5, + ACTIONS(632), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1341), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -83844,51 +81950,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66620] = 15, - ACTIONS(608), 1, + [66407] = 17, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(630), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(914), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1966), 1, + ACTIONS(1894), 1, anon_sym_await, - STATE(1032), 1, + ACTIONS(1902), 1, + sym_identifier, + STATE(996), 1, sym_string, - STATE(1084), 1, - sym_primary_expression, - STATE(1236), 1, + STATE(1406), 1, sym_list_splat_pattern, + STATE(1603), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(618), 3, + STATE(1163), 2, + sym_attribute, + sym_subscript, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1962), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(626), 5, + ACTIONS(328), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1341), 16, + ACTIONS(1904), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1426), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -83901,51 +82009,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66692] = 17, - ACTIONS(316), 1, + [66483] = 17, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(2000), 1, + ACTIONS(1896), 1, sym_identifier, - ACTIONS(2004), 1, + ACTIONS(1900), 1, anon_sym_await, - STATE(1071), 1, + STATE(996), 1, sym_string, - STATE(1366), 1, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1648), 1, + STATE(1600), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - STATE(1600), 2, + STATE(1455), 2, sym_attribute, sym_subscript, - ACTIONS(904), 3, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(2002), 4, + ACTIONS(1898), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1455), 14, + STATE(1426), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -83960,108 +82068,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66768] = 15, - ACTIONS(692), 1, + [66559] = 17, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(708), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(714), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1098), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1942), 1, + ACTIONS(1910), 1, anon_sym_await, - STATE(1058), 1, + ACTIONS(1932), 1, + sym_identifier, + STATE(996), 1, sym_string, - STATE(1159), 1, - sym_primary_expression, - STATE(1397), 1, + STATE(1406), 1, sym_list_splat_pattern, + STATE(1601), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(706), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(702), 3, + STATE(1537), 2, + sym_attribute, + sym_subscript, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1938), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(710), 5, + ACTIONS(328), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1507), 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, - [66840] = 15, - ACTIONS(608), 1, - anon_sym_LPAREN, - ACTIONS(614), 1, - anon_sym_LBRACK, - ACTIONS(624), 1, - anon_sym_LBRACE, - ACTIONS(630), 1, - sym_string_start, - ACTIONS(914), 1, - anon_sym_STAR, - ACTIONS(1966), 1, - anon_sym_await, - STATE(1032), 1, - sym_string, - STATE(1086), 1, - sym_primary_expression, - STATE(1236), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(622), 2, - sym_ellipsis, - sym_float, - ACTIONS(618), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(1962), 4, + ACTIONS(1934), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(626), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1341), 16, + STATE(1426), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -84074,47 +82127,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66912] = 15, - ACTIONS(634), 1, + [66635] = 15, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(640), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(650), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(656), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1138), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1960), 1, + ACTIONS(1912), 1, anon_sym_await, - STATE(1037), 1, + STATE(996), 1, sym_string, - STATE(1065), 1, - sym_primary_expression, - STATE(1338), 1, + STATE(1406), 1, sym_list_splat_pattern, + STATE(1620), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1956), 4, + ACTIONS(1848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(652), 5, + ACTIONS(328), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1277), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84131,47 +82184,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66984] = 15, - ACTIONS(608), 1, + [66707] = 15, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(630), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(914), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1966), 1, + ACTIONS(1912), 1, anon_sym_await, - STATE(1032), 1, + STATE(996), 1, sym_string, - STATE(1088), 1, - sym_primary_expression, - STATE(1236), 1, + STATE(1406), 1, sym_list_splat_pattern, + STATE(1609), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(618), 3, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1962), 4, + ACTIONS(1848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(626), 5, + ACTIONS(328), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1341), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84188,51 +82241,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [67056] = 17, - ACTIONS(316), 1, + [66779] = 17, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(2004), 1, + ACTIONS(1910), 1, anon_sym_await, - ACTIONS(2006), 1, + ACTIONS(1932), 1, sym_identifier, - STATE(1071), 1, + STATE(996), 1, sym_string, - STATE(1366), 1, + STATE(1406), 1, sym_list_splat_pattern, - STATE(1662), 1, + STATE(1624), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - STATE(1472), 2, + STATE(1537), 2, sym_attribute, sym_subscript, - ACTIONS(904), 3, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(336), 4, + ACTIONS(328), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(2008), 4, + ACTIONS(1934), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1455), 14, + STATE(1426), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -84247,47 +82300,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [67132] = 15, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(302), 1, + [66855] = 15, + ACTIONS(614), 1, anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(620), 1, anon_sym_LBRACK, - ACTIONS(1160), 1, + ACTIONS(630), 1, + anon_sym_LBRACE, + ACTIONS(636), 1, + sym_string_start, + ACTIONS(1090), 1, anon_sym_STAR, - ACTIONS(1984), 1, + ACTIONS(1840), 1, anon_sym_await, - STATE(1034), 1, + STATE(975), 1, sym_string, - STATE(1094), 1, + STATE(1037), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1238), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(628), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(624), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1980), 4, + ACTIONS(1836), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(75), 5, + ACTIONS(632), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1344), 16, + STATE(1261), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84304,47 +82357,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [67204] = 15, - ACTIONS(634), 1, + [66927] = 15, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(640), 1, + ACTIONS(700), 1, anon_sym_LBRACK, - ACTIONS(650), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(656), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1138), 1, + ACTIONS(1154), 1, anon_sym_STAR, - ACTIONS(1960), 1, + ACTIONS(1864), 1, anon_sym_await, - STATE(1037), 1, + STATE(1062), 1, sym_string, - STATE(1078), 1, + STATE(1140), 1, sym_primary_expression, - STATE(1338), 1, + STATE(1456), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(708), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(704), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1956), 4, + ACTIONS(1860), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(652), 5, + ACTIONS(712), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1277), 16, + STATE(1469), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84361,47 +82414,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [67276] = 15, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(302), 1, + [66999] = 15, + ACTIONS(581), 1, anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(1160), 1, + ACTIONS(597), 1, + anon_sym_LBRACE, + ACTIONS(603), 1, + sym_string_start, + ACTIONS(890), 1, anon_sym_STAR, - ACTIONS(1984), 1, + ACTIONS(1846), 1, anon_sym_await, - STATE(1034), 1, + STATE(984), 1, sym_string, - STATE(1093), 1, + STATE(992), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1164), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1980), 4, + ACTIONS(1842), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(75), 5, + ACTIONS(599), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1344), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84418,51 +82471,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [67348] = 15, - ACTIONS(744), 1, + [67071] = 17, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(766), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1172), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1954), 1, + ACTIONS(1900), 1, anon_sym_await, - STATE(1132), 1, + ACTIONS(1936), 1, + sym_identifier, + STATE(996), 1, sym_string, - STATE(1251), 1, - sym_primary_expression, - STATE(1598), 1, + STATE(1406), 1, sym_list_splat_pattern, + STATE(1600), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + STATE(1378), 2, + sym_attribute, + sym_subscript, + ACTIONS(880), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1950), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(762), 5, + ACTIONS(328), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1580), 16, + ACTIONS(1938), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1426), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -84475,24 +82530,24 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [67420] = 15, + [67147] = 15, ACTIONS(73), 1, anon_sym_LBRACE, ACTIONS(79), 1, sym_string_start, - ACTIONS(302), 1, + ACTIONS(334), 1, anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(338), 1, anon_sym_LBRACK, - ACTIONS(1160), 1, + ACTIONS(1148), 1, anon_sym_STAR, - ACTIONS(1984), 1, + ACTIONS(1828), 1, anon_sym_await, - STATE(1034), 1, + STATE(977), 1, sym_string, - STATE(1055), 1, + STATE(986), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1295), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -84504,7 +82559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1980), 4, + ACTIONS(1824), 4, anon_sym_print, anon_sym_match, anon_sym_async, @@ -84515,7 +82570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1344), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84532,24 +82587,24 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [67492] = 15, + [67219] = 15, ACTIONS(73), 1, anon_sym_LBRACE, ACTIONS(79), 1, sym_string_start, - ACTIONS(302), 1, + ACTIONS(334), 1, anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(338), 1, anon_sym_LBRACK, - ACTIONS(1160), 1, + ACTIONS(1148), 1, anon_sym_STAR, - ACTIONS(1984), 1, + ACTIONS(1828), 1, anon_sym_await, - STATE(1034), 1, + STATE(977), 1, sym_string, - STATE(1054), 1, + STATE(1028), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1295), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -84561,7 +82616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1980), 4, + ACTIONS(1824), 4, anon_sym_print, anon_sym_match, anon_sym_async, @@ -84572,7 +82627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1344), 16, + STATE(1272), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84589,47 +82644,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [67564] = 15, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(302), 1, + [67291] = 15, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(306), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1160), 1, + ACTIONS(658), 1, + anon_sym_LBRACE, + ACTIONS(664), 1, + sym_string_start, + ACTIONS(1084), 1, anon_sym_STAR, - ACTIONS(1984), 1, + ACTIONS(1858), 1, anon_sym_await, - STATE(1034), 1, + STATE(1036), 1, sym_string, - STATE(1096), 1, + STATE(1068), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1304), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1980), 4, + ACTIONS(1854), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(75), 5, + ACTIONS(660), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1344), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84646,275 +82701,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [67636] = 15, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(302), 1, - anon_sym_LPAREN, - ACTIONS(306), 1, - anon_sym_LBRACK, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1984), 1, - anon_sym_await, - STATE(1034), 1, - sym_string, - STATE(1064), 1, - sym_primary_expression, - STATE(1172), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(71), 2, - sym_ellipsis, - sym_float, - ACTIONS(65), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(1980), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(75), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1344), 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, - [67708] = 15, - ACTIONS(608), 1, - anon_sym_LPAREN, - ACTIONS(614), 1, - anon_sym_LBRACK, - ACTIONS(624), 1, - anon_sym_LBRACE, - ACTIONS(630), 1, - sym_string_start, - ACTIONS(914), 1, - anon_sym_STAR, - ACTIONS(1966), 1, - anon_sym_await, - STATE(1032), 1, - sym_string, - STATE(1091), 1, - sym_primary_expression, - STATE(1236), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(622), 2, - sym_ellipsis, - sym_float, - ACTIONS(618), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(1962), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(626), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1341), 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, - [67780] = 15, - ACTIONS(660), 1, - anon_sym_LPAREN, - ACTIONS(666), 1, - anon_sym_LBRACK, - ACTIONS(678), 1, - anon_sym_LBRACE, - ACTIONS(684), 1, - sym_string_start, - ACTIONS(1108), 1, - anon_sym_STAR, - ACTIONS(1978), 1, - anon_sym_await, - STATE(1095), 1, - sym_string, - STATE(1150), 1, - sym_primary_expression, - STATE(1407), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(676), 2, - sym_ellipsis, - sym_float, - ACTIONS(672), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(1974), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(680), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1385), 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, - [67852] = 15, - ACTIONS(608), 1, + [67363] = 15, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(630), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(914), 1, + ACTIONS(1084), 1, anon_sym_STAR, - ACTIONS(1966), 1, + ACTIONS(1858), 1, anon_sym_await, - STATE(1032), 1, + STATE(1036), 1, sym_string, - STATE(1092), 1, + STATE(1067), 1, sym_primary_expression, - STATE(1236), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(622), 2, - sym_ellipsis, - sym_float, - ACTIONS(618), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(1962), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(626), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1341), 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, - [67924] = 15, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_LBRACK, - ACTIONS(334), 1, - anon_sym_LBRACE, - ACTIONS(340), 1, - sym_string_start, - ACTIONS(1204), 1, - anon_sym_STAR, - ACTIONS(1992), 1, - anon_sym_await, - STATE(1071), 1, - sym_string, - STATE(1366), 1, + STATE(1304), 1, sym_list_splat_pattern, - STATE(1655), 1, - sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(904), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1968), 4, + ACTIONS(1854), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 5, + ACTIONS(660), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1455), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84931,47 +82758,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [67996] = 15, - ACTIONS(660), 1, + [67435] = 15, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(1108), 1, + ACTIONS(1084), 1, anon_sym_STAR, - ACTIONS(1978), 1, + ACTIONS(1858), 1, anon_sym_await, - STATE(1095), 1, + STATE(1036), 1, sym_string, - STATE(1149), 1, + STATE(1064), 1, sym_primary_expression, - STATE(1407), 1, + STATE(1304), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(672), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1974), 4, + ACTIONS(1854), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(680), 5, + ACTIONS(660), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1385), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84988,47 +82815,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [68068] = 15, - ACTIONS(316), 1, + [67507] = 15, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(334), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(1204), 1, + ACTIONS(1084), 1, anon_sym_STAR, - ACTIONS(1972), 1, + ACTIONS(1858), 1, anon_sym_await, - STATE(1071), 1, + STATE(1036), 1, sym_string, - STATE(1127), 1, + STATE(1063), 1, sym_primary_expression, - STATE(1366), 1, + STATE(1304), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(332), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(328), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1968), 4, + ACTIONS(1854), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(336), 5, + ACTIONS(660), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1455), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -85045,104 +82872,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [68140] = 15, - ACTIONS(316), 1, + [67579] = 15, + ACTIONS(581), 1, anon_sym_LPAREN, - ACTIONS(322), 1, + ACTIONS(587), 1, anon_sym_LBRACK, - ACTIONS(334), 1, - anon_sym_LBRACE, - ACTIONS(340), 1, - sym_string_start, - ACTIONS(1204), 1, - anon_sym_STAR, - ACTIONS(1992), 1, - anon_sym_await, - STATE(1071), 1, - sym_string, - STATE(1366), 1, - sym_list_splat_pattern, - STATE(1654), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(332), 2, - sym_ellipsis, - sym_float, - ACTIONS(904), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(1968), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(336), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1455), 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, - [68212] = 15, - ACTIONS(73), 1, + ACTIONS(597), 1, anon_sym_LBRACE, - ACTIONS(79), 1, + ACTIONS(603), 1, sym_string_start, - ACTIONS(302), 1, - anon_sym_LPAREN, - ACTIONS(306), 1, - anon_sym_LBRACK, - ACTIONS(1160), 1, + ACTIONS(890), 1, anon_sym_STAR, - ACTIONS(1984), 1, + ACTIONS(1846), 1, anon_sym_await, - STATE(1034), 1, + STATE(984), 1, sym_string, - STATE(1067), 1, + STATE(993), 1, sym_primary_expression, - STATE(1172), 1, + STATE(1164), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(71), 2, + ACTIONS(595), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(591), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1980), 4, + ACTIONS(1842), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(75), 5, + ACTIONS(599), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1344), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -85159,106 +82929,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [68284] = 17, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_LBRACK, - ACTIONS(334), 1, - anon_sym_LBRACE, - ACTIONS(340), 1, - sym_string_start, - ACTIONS(1204), 1, - anon_sym_STAR, - ACTIONS(2010), 1, - sym_identifier, - ACTIONS(2014), 1, - anon_sym_await, - STATE(1071), 1, - sym_string, - STATE(1366), 1, - sym_list_splat_pattern, - STATE(1687), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(332), 2, - sym_ellipsis, - sym_float, - STATE(1553), 2, - sym_attribute, - sym_subscript, - ACTIONS(904), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(336), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(2012), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1455), 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, - [68360] = 15, - ACTIONS(608), 1, + [67651] = 15, + ACTIONS(640), 1, anon_sym_LPAREN, - ACTIONS(614), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(624), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(630), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(914), 1, + ACTIONS(1084), 1, anon_sym_STAR, - ACTIONS(1966), 1, + ACTIONS(1858), 1, anon_sym_await, - STATE(1032), 1, + STATE(1036), 1, sym_string, - STATE(1085), 1, + STATE(1059), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1304), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(622), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(618), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1962), 4, + ACTIONS(1854), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(626), 5, + ACTIONS(660), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1341), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -85275,106 +82986,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [68432] = 17, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_LBRACK, - ACTIONS(334), 1, - anon_sym_LBRACE, - ACTIONS(340), 1, - sym_string_start, - ACTIONS(1204), 1, - anon_sym_STAR, - ACTIONS(2016), 1, - sym_identifier, - ACTIONS(2020), 1, - anon_sym_await, - STATE(1071), 1, - sym_string, - STATE(1366), 1, - sym_list_splat_pattern, - STATE(1672), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(332), 2, - sym_ellipsis, - sym_float, - STATE(1663), 2, - sym_attribute, - sym_subscript, - ACTIONS(904), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(336), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(2018), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1455), 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, - [68508] = 15, - ACTIONS(744), 1, + [67723] = 15, + ACTIONS(308), 1, anon_sym_LPAREN, - ACTIONS(750), 1, + ACTIONS(314), 1, anon_sym_LBRACK, - ACTIONS(760), 1, + ACTIONS(326), 1, anon_sym_LBRACE, - ACTIONS(766), 1, + ACTIONS(332), 1, sym_string_start, - ACTIONS(1172), 1, + ACTIONS(1202), 1, anon_sym_STAR, - ACTIONS(1954), 1, + ACTIONS(1852), 1, anon_sym_await, - STATE(1132), 1, + STATE(996), 1, sym_string, - STATE(1292), 1, + STATE(1105), 1, sym_primary_expression, - STATE(1598), 1, + STATE(1406), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(324), 2, sym_ellipsis, sym_float, - ACTIONS(754), 3, + ACTIONS(320), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1950), 4, + ACTIONS(1848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(762), 5, + ACTIONS(328), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1580), 16, + STATE(1426), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -85391,104 +83043,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [68580] = 15, - ACTIONS(634), 1, - anon_sym_LPAREN, + [67795] = 15, ACTIONS(640), 1, - anon_sym_LBRACK, - ACTIONS(650), 1, - anon_sym_LBRACE, - ACTIONS(656), 1, - sym_string_start, - ACTIONS(1138), 1, - anon_sym_STAR, - ACTIONS(1960), 1, - anon_sym_await, - STATE(1037), 1, - sym_string, - STATE(1062), 1, - sym_primary_expression, - STATE(1338), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(648), 2, - sym_ellipsis, - sym_float, - ACTIONS(644), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(1956), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(652), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1277), 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, - [68652] = 15, - ACTIONS(634), 1, anon_sym_LPAREN, - ACTIONS(640), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(650), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(656), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(1138), 1, + ACTIONS(1084), 1, anon_sym_STAR, - ACTIONS(1960), 1, + ACTIONS(1858), 1, anon_sym_await, - STATE(1037), 1, + STATE(1036), 1, sym_string, - STATE(1061), 1, + STATE(1057), 1, sym_primary_expression, - STATE(1338), 1, + STATE(1304), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1956), 4, + ACTIONS(1854), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(652), 5, + ACTIONS(660), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1277), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -85505,47 +83100,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [68724] = 15, - ACTIONS(634), 1, - anon_sym_LPAREN, + [67867] = 15, ACTIONS(640), 1, + anon_sym_LPAREN, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(650), 1, + ACTIONS(658), 1, anon_sym_LBRACE, - ACTIONS(656), 1, + ACTIONS(664), 1, sym_string_start, - ACTIONS(1138), 1, + ACTIONS(1084), 1, anon_sym_STAR, - ACTIONS(1960), 1, + ACTIONS(1858), 1, anon_sym_await, - STATE(1037), 1, + STATE(1036), 1, sym_string, - STATE(1060), 1, + STATE(1053), 1, sym_primary_expression, - STATE(1338), 1, + STATE(1304), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(648), 2, + ACTIONS(656), 2, sym_ellipsis, sym_float, - ACTIONS(644), 3, + ACTIONS(652), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1956), 4, + ACTIONS(1854), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(652), 5, + ACTIONS(660), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1277), 16, + STATE(1316), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -85561,2417 +83156,23 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - sym_await, - [68796] = 15, - ACTIONS(744), 1, - anon_sym_LPAREN, - ACTIONS(750), 1, - anon_sym_LBRACK, - ACTIONS(760), 1, - anon_sym_LBRACE, - ACTIONS(766), 1, - sym_string_start, - ACTIONS(1172), 1, - anon_sym_STAR, - ACTIONS(1954), 1, - anon_sym_await, - STATE(1132), 1, - sym_string, - STATE(1298), 1, - sym_primary_expression, - STATE(1598), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(758), 2, - sym_ellipsis, - sym_float, - ACTIONS(754), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(1950), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(762), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1580), 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, - [68868] = 15, - ACTIONS(660), 1, - anon_sym_LPAREN, - ACTIONS(666), 1, - anon_sym_LBRACK, - ACTIONS(678), 1, - anon_sym_LBRACE, - ACTIONS(684), 1, - sym_string_start, - ACTIONS(1108), 1, - anon_sym_STAR, - ACTIONS(1978), 1, - anon_sym_await, - STATE(1095), 1, - sym_string, - STATE(1140), 1, - sym_primary_expression, - STATE(1407), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(676), 2, - sym_ellipsis, - sym_float, - ACTIONS(672), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(1974), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(680), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1385), 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, - [68940] = 17, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_LBRACK, - ACTIONS(334), 1, - anon_sym_LBRACE, - ACTIONS(340), 1, - sym_string_start, - ACTIONS(1204), 1, - anon_sym_STAR, - ACTIONS(2014), 1, - anon_sym_await, - ACTIONS(2022), 1, - sym_identifier, - STATE(1071), 1, - sym_string, - STATE(1366), 1, - sym_list_splat_pattern, - STATE(1652), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(332), 2, - sym_ellipsis, - sym_float, - STATE(1470), 2, - sym_attribute, - sym_subscript, - ACTIONS(904), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(336), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(2024), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1455), 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, - [69016] = 15, - ACTIONS(718), 1, - anon_sym_LPAREN, - ACTIONS(724), 1, - anon_sym_LBRACK, - ACTIONS(734), 1, - anon_sym_LBRACE, - ACTIONS(740), 1, - sym_string_start, - ACTIONS(1168), 1, - anon_sym_STAR, - ACTIONS(1948), 1, - anon_sym_await, - STATE(1157), 1, - sym_string, - STATE(1182), 1, - sym_primary_expression, - STATE(1516), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(732), 2, - sym_ellipsis, - sym_float, - ACTIONS(728), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(1944), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(736), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1552), 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, - [69088] = 17, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_LBRACK, - ACTIONS(334), 1, - anon_sym_LBRACE, - ACTIONS(340), 1, - sym_string_start, - ACTIONS(1204), 1, - anon_sym_STAR, - ACTIONS(1998), 1, - anon_sym_await, - ACTIONS(2026), 1, - sym_identifier, - STATE(1071), 1, - sym_string, - STATE(1366), 1, - sym_list_splat_pattern, - STATE(1653), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(332), 2, - sym_ellipsis, - sym_float, - STATE(1319), 2, - sym_attribute, - sym_subscript, - ACTIONS(904), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(336), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(2028), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1455), 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, - [69164] = 15, - ACTIONS(744), 1, - anon_sym_LPAREN, - ACTIONS(750), 1, - anon_sym_LBRACK, - ACTIONS(760), 1, - anon_sym_LBRACE, - ACTIONS(766), 1, - sym_string_start, - ACTIONS(1172), 1, - anon_sym_STAR, - ACTIONS(1954), 1, - anon_sym_await, - STATE(1132), 1, - sym_string, - STATE(1239), 1, - sym_primary_expression, - STATE(1598), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(758), 2, - sym_ellipsis, - sym_float, - ACTIONS(754), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(1950), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(762), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1580), 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, - [69236] = 17, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_LBRACK, - ACTIONS(334), 1, - anon_sym_LBRACE, - ACTIONS(340), 1, - sym_string_start, - ACTIONS(1204), 1, - anon_sym_STAR, - ACTIONS(2030), 1, - sym_identifier, - ACTIONS(2034), 1, - anon_sym_await, - STATE(1071), 1, - sym_string, - STATE(1366), 1, - sym_list_splat_pattern, - STATE(1672), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(332), 2, - sym_ellipsis, - sym_float, - STATE(1457), 2, - sym_attribute, - sym_subscript, - ACTIONS(904), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(336), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(2032), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1455), 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, - [69312] = 17, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_LBRACK, - ACTIONS(334), 1, - anon_sym_LBRACE, - ACTIONS(340), 1, - sym_string_start, - ACTIONS(1204), 1, - anon_sym_STAR, - ACTIONS(2036), 1, - sym_identifier, - ACTIONS(2040), 1, - anon_sym_await, - STATE(1071), 1, - sym_string, - STATE(1366), 1, - sym_list_splat_pattern, - STATE(1664), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(332), 2, - sym_ellipsis, - sym_float, - STATE(1612), 2, - sym_attribute, - sym_subscript, - ACTIONS(904), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(336), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(2038), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1455), 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, - [69388] = 15, - ACTIONS(634), 1, - anon_sym_LPAREN, - ACTIONS(640), 1, - anon_sym_LBRACK, - ACTIONS(650), 1, - anon_sym_LBRACE, - ACTIONS(656), 1, - sym_string_start, - ACTIONS(1138), 1, - anon_sym_STAR, - ACTIONS(1960), 1, - anon_sym_await, - STATE(1037), 1, - sym_string, - STATE(1057), 1, - sym_primary_expression, - STATE(1338), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(648), 2, - sym_ellipsis, - sym_float, - ACTIONS(644), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(1956), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(652), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1277), 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, - [69460] = 15, - ACTIONS(634), 1, - anon_sym_LPAREN, - ACTIONS(640), 1, - anon_sym_LBRACK, - ACTIONS(650), 1, - anon_sym_LBRACE, - ACTIONS(656), 1, - sym_string_start, - ACTIONS(1138), 1, - anon_sym_STAR, - ACTIONS(1960), 1, - anon_sym_await, - STATE(1037), 1, - sym_string, - STATE(1056), 1, - sym_primary_expression, - STATE(1338), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(648), 2, - sym_ellipsis, - sym_float, - ACTIONS(644), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(1956), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(652), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1277), 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, - [69532] = 15, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_LBRACK, - ACTIONS(334), 1, - anon_sym_LBRACE, - ACTIONS(340), 1, - sym_string_start, - ACTIONS(1204), 1, - anon_sym_STAR, - ACTIONS(1992), 1, - anon_sym_await, - STATE(1071), 1, - sym_string, - STATE(1366), 1, - sym_list_splat_pattern, - STATE(1658), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(332), 2, - sym_ellipsis, - sym_float, - ACTIONS(904), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(1968), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(336), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1455), 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, - [69604] = 15, - ACTIONS(660), 1, - anon_sym_LPAREN, - ACTIONS(666), 1, - anon_sym_LBRACK, - ACTIONS(678), 1, - anon_sym_LBRACE, - ACTIONS(684), 1, - sym_string_start, - ACTIONS(1108), 1, - anon_sym_STAR, - ACTIONS(1978), 1, - anon_sym_await, - STATE(1095), 1, - sym_string, - STATE(1154), 1, - sym_primary_expression, - STATE(1407), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(676), 2, - sym_ellipsis, - sym_float, - ACTIONS(672), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(1974), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(680), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1385), 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, - [69676] = 15, - ACTIONS(634), 1, - anon_sym_LPAREN, - ACTIONS(640), 1, - anon_sym_LBRACK, - ACTIONS(650), 1, - anon_sym_LBRACE, - ACTIONS(656), 1, - sym_string_start, - ACTIONS(1138), 1, - anon_sym_STAR, - ACTIONS(1960), 1, - anon_sym_await, - STATE(1037), 1, - sym_string, - STATE(1053), 1, - sym_primary_expression, - STATE(1338), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(648), 2, - sym_ellipsis, - sym_float, - ACTIONS(644), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(1956), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(652), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1277), 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, - [69748] = 15, - ACTIONS(634), 1, - anon_sym_LPAREN, - ACTIONS(640), 1, - anon_sym_LBRACK, - ACTIONS(650), 1, - anon_sym_LBRACE, - ACTIONS(656), 1, - sym_string_start, - ACTIONS(1138), 1, - anon_sym_STAR, - ACTIONS(1960), 1, - anon_sym_await, - STATE(1037), 1, - sym_string, - STATE(1052), 1, - sym_primary_expression, - STATE(1338), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(648), 2, - sym_ellipsis, - sym_float, - ACTIONS(644), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(1956), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(652), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1277), 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, - [69820] = 15, - ACTIONS(634), 1, - anon_sym_LPAREN, - ACTIONS(640), 1, - anon_sym_LBRACK, - ACTIONS(650), 1, - anon_sym_LBRACE, - ACTIONS(656), 1, - sym_string_start, - ACTIONS(1138), 1, - anon_sym_STAR, - ACTIONS(1960), 1, - anon_sym_await, - STATE(1037), 1, - sym_string, - STATE(1050), 1, - sym_primary_expression, - STATE(1338), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(648), 2, - sym_ellipsis, - sym_float, - ACTIONS(644), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(1956), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(652), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1277), 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, - [69892] = 15, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_LBRACK, - ACTIONS(334), 1, - anon_sym_LBRACE, - ACTIONS(340), 1, - sym_string_start, - ACTIONS(1204), 1, - anon_sym_STAR, - ACTIONS(1992), 1, - anon_sym_await, - STATE(1071), 1, - sym_string, - STATE(1366), 1, - sym_list_splat_pattern, - STATE(1659), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(332), 2, - sym_ellipsis, - sym_float, - ACTIONS(904), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(1968), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(336), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1455), 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, - [69964] = 15, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_LBRACK, - ACTIONS(334), 1, - anon_sym_LBRACE, - ACTIONS(340), 1, - sym_string_start, - ACTIONS(1204), 1, - anon_sym_STAR, - ACTIONS(1992), 1, - anon_sym_await, - STATE(1071), 1, - sym_string, - STATE(1366), 1, - sym_list_splat_pattern, - STATE(1665), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(332), 2, - sym_ellipsis, - sym_float, - ACTIONS(904), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(1968), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(336), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1455), 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, - [70036] = 15, - ACTIONS(660), 1, - anon_sym_LPAREN, - ACTIONS(666), 1, - anon_sym_LBRACK, - ACTIONS(678), 1, - anon_sym_LBRACE, - ACTIONS(684), 1, - sym_string_start, - ACTIONS(1108), 1, - anon_sym_STAR, - ACTIONS(1978), 1, - anon_sym_await, - STATE(1095), 1, - sym_string, - STATE(1141), 1, - sym_primary_expression, - STATE(1407), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(676), 2, - sym_ellipsis, - sym_float, - ACTIONS(672), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(1974), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(680), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1385), 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, - [70108] = 15, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_LBRACK, - ACTIONS(334), 1, - anon_sym_LBRACE, - ACTIONS(340), 1, - sym_string_start, - ACTIONS(1204), 1, - anon_sym_STAR, - ACTIONS(1972), 1, - anon_sym_await, - STATE(1071), 1, - sym_string, - STATE(1109), 1, - sym_primary_expression, - STATE(1366), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(332), 2, - sym_ellipsis, - sym_float, - ACTIONS(328), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(1968), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(336), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1455), 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, - [70180] = 15, - ACTIONS(73), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(302), 1, - anon_sym_LPAREN, - ACTIONS(306), 1, - anon_sym_LBRACK, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1984), 1, - anon_sym_await, - STATE(1034), 1, - sym_string, - STATE(1077), 1, - sym_primary_expression, - STATE(1172), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(71), 2, - sym_ellipsis, - sym_float, - ACTIONS(65), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(1980), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(75), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1344), 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, - [70252] = 17, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_LBRACK, - ACTIONS(334), 1, - anon_sym_LBRACE, - ACTIONS(340), 1, - sym_string_start, - ACTIONS(1204), 1, - anon_sym_STAR, - ACTIONS(2042), 1, - sym_identifier, - ACTIONS(2046), 1, - anon_sym_await, - STATE(1071), 1, - sym_string, - STATE(1366), 1, - sym_list_splat_pattern, - STATE(1682), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(332), 2, - sym_ellipsis, - sym_float, - STATE(657), 2, - sym_attribute, - sym_subscript, - ACTIONS(904), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(336), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(2044), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1455), 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, - [70328] = 17, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_LBRACK, - ACTIONS(334), 1, - anon_sym_LBRACE, - ACTIONS(340), 1, - sym_string_start, - ACTIONS(1204), 1, - anon_sym_STAR, - ACTIONS(1994), 1, - sym_identifier, - ACTIONS(1998), 1, - anon_sym_await, - STATE(1071), 1, - sym_string, - STATE(1366), 1, - sym_list_splat_pattern, - STATE(1653), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(332), 2, - sym_ellipsis, - sym_float, - STATE(1235), 2, - sym_attribute, - sym_subscript, - ACTIONS(904), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(336), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1996), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1455), 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, - [70404] = 15, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_LBRACK, - ACTIONS(334), 1, - anon_sym_LBRACE, - ACTIONS(340), 1, - sym_string_start, - ACTIONS(1204), 1, - anon_sym_STAR, - ACTIONS(1992), 1, - anon_sym_await, - STATE(1071), 1, - sym_string, - STATE(1366), 1, - sym_list_splat_pattern, - STATE(1649), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(332), 2, - sym_ellipsis, - sym_float, - ACTIONS(904), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(1968), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(336), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1455), 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, - [70476] = 17, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_LBRACK, - ACTIONS(334), 1, - anon_sym_LBRACE, - ACTIONS(340), 1, - sym_string_start, - ACTIONS(1204), 1, - anon_sym_STAR, - ACTIONS(2048), 1, - sym_identifier, - ACTIONS(2052), 1, - anon_sym_await, - STATE(1071), 1, - sym_string, - STATE(1366), 1, - sym_list_splat_pattern, - STATE(1662), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(332), 2, - sym_ellipsis, - sym_float, - STATE(1642), 2, - sym_attribute, - sym_subscript, - ACTIONS(904), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(336), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(2050), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1455), 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, - [70552] = 15, - ACTIONS(634), 1, - anon_sym_LPAREN, - ACTIONS(640), 1, - anon_sym_LBRACK, - ACTIONS(650), 1, - anon_sym_LBRACE, - ACTIONS(656), 1, - sym_string_start, - ACTIONS(1138), 1, - anon_sym_STAR, - ACTIONS(1960), 1, - anon_sym_await, - STATE(1037), 1, - sym_string, - STATE(1066), 1, - sym_primary_expression, - STATE(1338), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(648), 2, - sym_ellipsis, - sym_float, - ACTIONS(644), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(1956), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(652), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1277), 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, - [70624] = 17, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_LBRACK, - ACTIONS(334), 1, - anon_sym_LBRACE, - ACTIONS(340), 1, - sym_string_start, - ACTIONS(1204), 1, - anon_sym_STAR, - ACTIONS(2000), 1, - sym_identifier, - ACTIONS(2004), 1, - anon_sym_await, - STATE(1071), 1, - sym_string, - STATE(1366), 1, - sym_list_splat_pattern, - STATE(1662), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(332), 2, - sym_ellipsis, - sym_float, - STATE(1600), 2, - sym_attribute, - sym_subscript, - ACTIONS(904), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(336), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(2002), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1455), 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, - [70700] = 17, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_LBRACK, - ACTIONS(334), 1, - anon_sym_LBRACE, - ACTIONS(340), 1, - sym_string_start, - ACTIONS(1204), 1, - anon_sym_STAR, - ACTIONS(2010), 1, - sym_identifier, - ACTIONS(2014), 1, - anon_sym_await, - STATE(1071), 1, - sym_string, - STATE(1366), 1, - sym_list_splat_pattern, - STATE(1652), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(332), 2, - sym_ellipsis, - sym_float, - STATE(1553), 2, - sym_attribute, - sym_subscript, - ACTIONS(904), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(336), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(2012), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1455), 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, - [70776] = 15, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(322), 1, - anon_sym_LBRACK, - ACTIONS(334), 1, - anon_sym_LBRACE, - ACTIONS(340), 1, - sym_string_start, - ACTIONS(1204), 1, - anon_sym_STAR, - ACTIONS(1992), 1, - anon_sym_await, - STATE(1071), 1, - sym_string, - STATE(1366), 1, - sym_list_splat_pattern, - STATE(1650), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(332), 2, - sym_ellipsis, - sym_float, - ACTIONS(904), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(1968), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(336), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1455), 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, - [70848] = 5, - ACTIONS(630), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1041), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1397), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1392), 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_AT, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [70899] = 20, - ACTIONS(2054), 1, - anon_sym_DOT, - ACTIONS(2056), 1, - anon_sym_LPAREN, - ACTIONS(2066), 1, - anon_sym_STAR_STAR, - ACTIONS(2070), 1, - anon_sym_LBRACK, - ACTIONS(2072), 1, - anon_sym_EQ, - ACTIONS(2074), 1, - anon_sym_not, - ACTIONS(2078), 1, - anon_sym_PIPE, - ACTIONS(2080), 1, - anon_sym_AMP, - ACTIONS(2082), 1, - anon_sym_CARET, - ACTIONS(2086), 1, - anon_sym_is, - STATE(1637), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2060), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2062), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2076), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2084), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1261), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2068), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2064), 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(2058), 8, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - anon_sym_RBRACE, - sym_type_conversion, - [70980] = 5, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1039), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1397), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1392), 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_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [71031] = 5, - ACTIONS(656), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1040), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2090), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2088), 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_AT, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_RBRACE, - [71082] = 20, - ACTIONS(2072), 1, - anon_sym_EQ, - ACTIONS(2092), 1, - anon_sym_DOT, - ACTIONS(2094), 1, - anon_sym_LPAREN, - ACTIONS(2102), 1, - anon_sym_STAR_STAR, - ACTIONS(2106), 1, - anon_sym_LBRACK, - ACTIONS(2108), 1, - anon_sym_not, - ACTIONS(2112), 1, - anon_sym_PIPE, - ACTIONS(2114), 1, - anon_sym_AMP, - ACTIONS(2116), 1, - anon_sym_CARET, - ACTIONS(2120), 1, - anon_sym_is, - STATE(1635), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2096), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2098), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2110), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2118), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1271), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2104), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2100), 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(2058), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [71163] = 5, - ACTIONS(656), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1035), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1397), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1392), 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_AT, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_RBRACE, - [71214] = 20, - ACTIONS(2072), 1, - anon_sym_as, - ACTIONS(2122), 1, - anon_sym_DOT, - ACTIONS(2124), 1, - anon_sym_LPAREN, - ACTIONS(2132), 1, - anon_sym_STAR_STAR, - ACTIONS(2136), 1, - anon_sym_LBRACK, - ACTIONS(2138), 1, - anon_sym_not, - ACTIONS(2142), 1, - anon_sym_PIPE, - ACTIONS(2144), 1, - anon_sym_AMP, - ACTIONS(2146), 1, - anon_sym_CARET, - ACTIONS(2150), 1, - anon_sym_is, - STATE(1636), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2128), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2140), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2148), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1317), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2134), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2130), 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(2058), 8, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - anon_sym_RBRACE, - [71295] = 5, - ACTIONS(79), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1043), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2090), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2088), 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_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [71346] = 5, - ACTIONS(2156), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1040), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2154), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2152), 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_AT, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_RBRACE, - [71397] = 5, - ACTIONS(630), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1042), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2090), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2088), 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_AT, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [71448] = 5, - ACTIONS(2159), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1042), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2154), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2152), 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_AT, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [71499] = 5, - ACTIONS(2162), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1043), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2154), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2152), 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_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [71550] = 20, - ACTIONS(2054), 1, - anon_sym_DOT, - ACTIONS(2056), 1, - anon_sym_LPAREN, - ACTIONS(2066), 1, - anon_sym_STAR_STAR, - ACTIONS(2070), 1, - anon_sym_LBRACK, - ACTIONS(2072), 1, - anon_sym_EQ, - ACTIONS(2074), 1, - anon_sym_not, - ACTIONS(2078), 1, - anon_sym_PIPE, - ACTIONS(2080), 1, - anon_sym_AMP, - ACTIONS(2082), 1, - anon_sym_CARET, - ACTIONS(2086), 1, - anon_sym_is, - STATE(1146), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2060), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2062), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2076), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2084), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1261), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2068), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2064), 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(2058), 8, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - anon_sym_RBRACE, - sym_type_conversion, - [71631] = 20, - ACTIONS(2072), 1, - anon_sym_as, - ACTIONS(2122), 1, - anon_sym_DOT, - ACTIONS(2124), 1, - anon_sym_LPAREN, - ACTIONS(2132), 1, - anon_sym_STAR_STAR, - ACTIONS(2136), 1, - anon_sym_LBRACK, - ACTIONS(2138), 1, - anon_sym_not, - ACTIONS(2142), 1, - anon_sym_PIPE, - ACTIONS(2144), 1, - anon_sym_AMP, - ACTIONS(2146), 1, - anon_sym_CARET, - ACTIONS(2150), 1, - anon_sym_is, - STATE(1145), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2128), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2140), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2148), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1317), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2134), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2130), 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(2058), 8, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - anon_sym_RBRACE, - [71712] = 20, - ACTIONS(2072), 1, - anon_sym_EQ, - ACTIONS(2092), 1, - anon_sym_DOT, - ACTIONS(2094), 1, - anon_sym_LPAREN, - ACTIONS(2102), 1, - anon_sym_STAR_STAR, - ACTIONS(2106), 1, - anon_sym_LBRACK, - ACTIONS(2108), 1, - anon_sym_not, - ACTIONS(2112), 1, - anon_sym_PIPE, - ACTIONS(2114), 1, - anon_sym_AMP, - ACTIONS(2116), 1, - anon_sym_CARET, - ACTIONS(2120), 1, - anon_sym_is, - STATE(1112), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2096), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2098), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2110), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2118), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1271), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2104), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2100), 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(2058), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [71793] = 5, - ACTIONS(340), 1, + sym_await, + [67939] = 5, + ACTIONS(1944), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1100), 2, + STATE(970), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2090), 5, + ACTIONS(1942), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2088), 29, + ACTIONS(1940), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -87979,7 +83180,6 @@ 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_AT, @@ -88001,166 +83201,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71843] = 20, - ACTIONS(2072), 1, - anon_sym_EQ, - ACTIONS(2165), 1, + anon_sym_RBRACE, + sym_type_conversion, + [67990] = 20, + ACTIONS(1947), 1, anon_sym_DOT, - ACTIONS(2167), 1, + ACTIONS(1949), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(1959), 1, anon_sym_STAR_STAR, - ACTIONS(2179), 1, + ACTIONS(1963), 1, anon_sym_LBRACK, - ACTIONS(2181), 1, + ACTIONS(1965), 1, + anon_sym_EQ, + ACTIONS(1967), 1, anon_sym_not, - ACTIONS(2185), 1, + ACTIONS(1971), 1, anon_sym_PIPE, - ACTIONS(2187), 1, + ACTIONS(1973), 1, anon_sym_AMP, - ACTIONS(2189), 1, + ACTIONS(1975), 1, anon_sym_CARET, - ACTIONS(2193), 1, + ACTIONS(1979), 1, anon_sym_is, - STATE(1313), 1, + STATE(1045), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2169), 2, + ACTIONS(1953), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2171), 2, + ACTIONS(1955), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(1969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(1977), 2, anon_sym_LT, anon_sym_GT, - STATE(1462), 2, + STATE(1133), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2177), 3, + ACTIONS(1961), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2173), 6, + ACTIONS(1957), 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(2058), 7, + ACTIONS(1951), 8, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_and, anon_sym_or, - [71923] = 15, - ACTIONS(2092), 1, - anon_sym_DOT, - ACTIONS(2094), 1, - anon_sym_LPAREN, - ACTIONS(2102), 1, - anon_sym_STAR_STAR, - ACTIONS(2106), 1, - anon_sym_LBRACK, - ACTIONS(2112), 1, - anon_sym_PIPE, - ACTIONS(2114), 1, - anon_sym_AMP, - ACTIONS(2116), 1, - anon_sym_CARET, + anon_sym_RBRACE, + sym_type_conversion, + [68071] = 5, + ACTIONS(603), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2096), 2, + STATE(970), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1983), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2098), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2110), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1271), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2104), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2197), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2195), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(1981), 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_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71993] = 12, - ACTIONS(2122), 1, - anon_sym_DOT, - ACTIONS(2124), 1, - anon_sym_LPAREN, - ACTIONS(2132), 1, - anon_sym_STAR_STAR, - ACTIONS(2136), 1, - anon_sym_LBRACK, + anon_sym_RBRACE, + sym_type_conversion, + [68122] = 5, + ACTIONS(636), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2126), 2, + STATE(980), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1983), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2128), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2140), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1317), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2134), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2201), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2199), 19, + ACTIONS(1981), 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_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -88168,107 +83356,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [72057] = 15, - ACTIONS(2092), 1, + [68173] = 20, + ACTIONS(1965), 1, + anon_sym_EQ, + ACTIONS(1985), 1, anon_sym_DOT, - ACTIONS(2094), 1, + ACTIONS(1987), 1, anon_sym_LPAREN, - ACTIONS(2102), 1, + ACTIONS(1995), 1, anon_sym_STAR_STAR, - ACTIONS(2106), 1, + ACTIONS(1999), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(2001), 1, + anon_sym_not, + ACTIONS(2005), 1, anon_sym_PIPE, - ACTIONS(2114), 1, + ACTIONS(2007), 1, anon_sym_AMP, - ACTIONS(2116), 1, + ACTIONS(2009), 1, anon_sym_CARET, + ACTIONS(2013), 1, + anon_sym_is, + STATE(1103), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2096), 2, + ACTIONS(1989), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2098), 2, + ACTIONS(1991), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2110), 2, + ACTIONS(2003), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1271), 2, + ACTIONS(2011), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1154), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2104), 3, + ACTIONS(1997), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2205), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2203), 16, + ACTIONS(1993), 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(1951), 8, sym__newline, anon_sym_SEMI, anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_in, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [72127] = 13, - ACTIONS(2122), 1, - anon_sym_DOT, - ACTIONS(2124), 1, - anon_sym_LPAREN, - ACTIONS(2132), 1, - anon_sym_STAR_STAR, - ACTIONS(2136), 1, - anon_sym_LBRACK, - ACTIONS(2146), 1, - anon_sym_CARET, + [68254] = 5, + ACTIONS(636), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2126), 2, + STATE(973), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1369), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2128), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2140), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1317), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2134), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2201), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2199), 18, + ACTIONS(1364), 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_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -88276,91 +83463,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [72193] = 14, - ACTIONS(2122), 1, + [68305] = 20, + ACTIONS(1965), 1, + anon_sym_as, + ACTIONS(2015), 1, anon_sym_DOT, - ACTIONS(2124), 1, + ACTIONS(2017), 1, anon_sym_LPAREN, - ACTIONS(2132), 1, + ACTIONS(2025), 1, anon_sym_STAR_STAR, - ACTIONS(2136), 1, + ACTIONS(2029), 1, anon_sym_LBRACK, - ACTIONS(2144), 1, + ACTIONS(2031), 1, + anon_sym_not, + ACTIONS(2035), 1, + anon_sym_PIPE, + ACTIONS(2037), 1, anon_sym_AMP, - ACTIONS(2146), 1, + ACTIONS(2039), 1, anon_sym_CARET, + ACTIONS(2043), 1, + anon_sym_is, + STATE(1573), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2126), 2, + ACTIONS(2019), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2128), 2, + ACTIONS(2021), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2140), 2, + ACTIONS(2033), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1317), 2, + ACTIONS(2041), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1274), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2134), 3, + ACTIONS(2027), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2201), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2199), 17, + ACTIONS(2023), 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(1951), 8, 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_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, anon_sym_RBRACE, - [72261] = 8, - ACTIONS(2092), 1, - anon_sym_DOT, - ACTIONS(2094), 1, - anon_sym_LPAREN, - ACTIONS(2102), 1, - anon_sym_STAR_STAR, - ACTIONS(2106), 1, - anon_sym_LBRACK, + [68386] = 5, + ACTIONS(79), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2201), 5, + STATE(978), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1369), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2199), 26, + ACTIONS(1364), 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_in, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -88378,95 +83570,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72317] = 10, - ACTIONS(2092), 1, - anon_sym_DOT, - ACTIONS(2094), 1, - anon_sym_LPAREN, - ACTIONS(2102), 1, - anon_sym_STAR_STAR, - ACTIONS(2106), 1, - anon_sym_LBRACK, + [68437] = 5, + ACTIONS(79), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2096), 2, + STATE(979), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1983), 5, anon_sym_STAR, - anon_sym_SLASH, - STATE(1271), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2104), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2201), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2199), 23, + ACTIONS(1981), 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_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [72377] = 10, - ACTIONS(2122), 1, - anon_sym_DOT, - ACTIONS(2124), 1, - anon_sym_LPAREN, - ACTIONS(2132), 1, anon_sym_STAR_STAR, - ACTIONS(2136), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2126), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1317), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2134), 3, anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2201), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2199), 23, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -88477,37 +83616,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [72437] = 8, - ACTIONS(2122), 1, - anon_sym_DOT, - ACTIONS(2124), 1, - anon_sym_LPAREN, - ACTIONS(2132), 1, - anon_sym_STAR_STAR, - ACTIONS(2136), 1, - anon_sym_LBRACK, + [68488] = 5, + ACTIONS(2045), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1317), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2201), 5, - anon_sym_as, + STATE(979), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1942), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2199), 26, + ACTIONS(1940), 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_STAR_STAR, anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -88525,35 +83662,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [72493] = 5, - ACTIONS(714), 1, + [68539] = 5, + ACTIONS(2048), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1073), 2, + STATE(980), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1397), 5, + ACTIONS(1942), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 29, + ACTIONS(1940), 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -88571,161 +83707,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72543] = 20, - ACTIONS(2072), 1, + anon_sym_RBRACE, + [68590] = 20, + ACTIONS(1965), 1, anon_sym_as, - ACTIONS(2207), 1, + ACTIONS(2015), 1, anon_sym_DOT, - ACTIONS(2209), 1, + ACTIONS(2017), 1, anon_sym_LPAREN, - ACTIONS(2217), 1, + ACTIONS(2025), 1, anon_sym_STAR_STAR, - ACTIONS(2221), 1, + ACTIONS(2029), 1, anon_sym_LBRACK, - ACTIONS(2223), 1, + ACTIONS(2031), 1, anon_sym_not, - ACTIONS(2227), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2229), 1, + ACTIONS(2037), 1, anon_sym_AMP, - ACTIONS(2231), 1, + ACTIONS(2039), 1, anon_sym_CARET, - ACTIONS(2235), 1, + ACTIONS(2043), 1, anon_sym_is, - STATE(1315), 1, + STATE(1046), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2211), 2, + ACTIONS(2019), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2213), 2, + ACTIONS(2021), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2225), 2, + ACTIONS(2033), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2233), 2, + ACTIONS(2041), 2, anon_sym_LT, anon_sym_GT, - STATE(1482), 2, + STATE(1274), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2219), 3, + ACTIONS(2027), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2215), 6, + ACTIONS(2023), 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(2058), 7, + ACTIONS(1951), 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, - [72623] = 15, - ACTIONS(2122), 1, + anon_sym_RBRACE, + [68671] = 20, + ACTIONS(1965), 1, + anon_sym_EQ, + ACTIONS(1985), 1, anon_sym_DOT, - ACTIONS(2124), 1, + ACTIONS(1987), 1, anon_sym_LPAREN, - ACTIONS(2132), 1, + ACTIONS(1995), 1, anon_sym_STAR_STAR, - ACTIONS(2136), 1, + ACTIONS(1999), 1, anon_sym_LBRACK, - ACTIONS(2142), 1, + ACTIONS(2001), 1, + anon_sym_not, + ACTIONS(2005), 1, anon_sym_PIPE, - ACTIONS(2144), 1, + ACTIONS(2007), 1, anon_sym_AMP, - ACTIONS(2146), 1, + ACTIONS(2009), 1, anon_sym_CARET, + ACTIONS(2013), 1, + anon_sym_is, + STATE(1576), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2126), 2, + ACTIONS(1989), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2128), 2, + ACTIONS(1991), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2140), 2, + ACTIONS(2003), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1317), 2, + ACTIONS(2011), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1154), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2134), 3, + ACTIONS(1997), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2239), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2237), 16, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, + ACTIONS(1993), 6, anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_is, - anon_sym_RBRACE, - [72693] = 11, - ACTIONS(2122), 1, + ACTIONS(1951), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [68752] = 20, + ACTIONS(1947), 1, anon_sym_DOT, - ACTIONS(2124), 1, + ACTIONS(1949), 1, anon_sym_LPAREN, - ACTIONS(2132), 1, + ACTIONS(1959), 1, anon_sym_STAR_STAR, - ACTIONS(2136), 1, + ACTIONS(1963), 1, anon_sym_LBRACK, + ACTIONS(1965), 1, + anon_sym_EQ, + ACTIONS(1967), 1, + anon_sym_not, + ACTIONS(1971), 1, + anon_sym_PIPE, + ACTIONS(1973), 1, + anon_sym_AMP, + ACTIONS(1975), 1, + anon_sym_CARET, + ACTIONS(1979), 1, + anon_sym_is, + STATE(1574), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2126), 2, + ACTIONS(1953), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2140), 2, + ACTIONS(1955), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1969), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1317), 2, + ACTIONS(1977), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1133), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2134), 3, + ACTIONS(1961), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2201), 3, + ACTIONS(1957), 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(1951), 8, + anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_RBRACE, + sym_type_conversion, + [68833] = 5, + ACTIONS(603), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(972), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1369), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2199), 21, + ACTIONS(1364), 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_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -88737,28 +83936,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [72755] = 8, - ACTIONS(2122), 1, + sym_type_conversion, + [68884] = 8, + ACTIONS(2015), 1, anon_sym_DOT, - ACTIONS(2124), 1, + ACTIONS(2017), 1, anon_sym_LPAREN, - ACTIONS(2132), 1, + ACTIONS(2025), 1, anon_sym_STAR_STAR, - ACTIONS(2136), 1, + ACTIONS(2029), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1317), 2, + STATE(1274), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2201), 5, + ACTIONS(2053), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2199), 26, + ACTIONS(2051), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -88785,107 +83985,304 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [72811] = 20, - ACTIONS(2072), 1, + [68940] = 15, + ACTIONS(1985), 1, + anon_sym_DOT, + ACTIONS(1987), 1, + anon_sym_LPAREN, + ACTIONS(1995), 1, + anon_sym_STAR_STAR, + ACTIONS(1999), 1, + anon_sym_LBRACK, + ACTIONS(2005), 1, + anon_sym_PIPE, + ACTIONS(2007), 1, + anon_sym_AMP, + ACTIONS(2009), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1989), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1991), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2003), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1154), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1997), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2057), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2055), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2207), 1, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [69010] = 11, + ACTIONS(1947), 1, anon_sym_DOT, - ACTIONS(2209), 1, + ACTIONS(1949), 1, anon_sym_LPAREN, - ACTIONS(2217), 1, + ACTIONS(1959), 1, anon_sym_STAR_STAR, - ACTIONS(2221), 1, + ACTIONS(1963), 1, anon_sym_LBRACK, - ACTIONS(2223), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1953), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1969), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1133), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1961), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2053), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2051), 21, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_not, - ACTIONS(2227), 1, + anon_sym_and, + anon_sym_or, anon_sym_PIPE, - ACTIONS(2229), 1, anon_sym_AMP, - ACTIONS(2231), 1, anon_sym_CARET, - ACTIONS(2235), 1, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, anon_sym_is, - STATE(1643), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_RBRACE, + sym_type_conversion, + [69072] = 15, + ACTIONS(1947), 1, + anon_sym_DOT, + ACTIONS(1949), 1, + anon_sym_LPAREN, + ACTIONS(1959), 1, + anon_sym_STAR_STAR, + ACTIONS(1963), 1, + anon_sym_LBRACK, + ACTIONS(1971), 1, + anon_sym_PIPE, + ACTIONS(1973), 1, + anon_sym_AMP, + ACTIONS(1975), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2211), 2, + ACTIONS(1953), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2213), 2, + ACTIONS(1955), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2225), 2, + ACTIONS(1969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2233), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1482), 2, + STATE(1133), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2219), 3, + ACTIONS(1961), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2215), 6, + ACTIONS(2061), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2059), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2058), 7, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [69142] = 13, + ACTIONS(1947), 1, + anon_sym_DOT, + ACTIONS(1949), 1, + anon_sym_LPAREN, + ACTIONS(1959), 1, + anon_sym_STAR_STAR, + ACTIONS(1963), 1, + anon_sym_LBRACK, + ACTIONS(1975), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1953), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1955), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1969), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1133), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1961), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2053), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2051), 18, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, anon_sym_and, anon_sym_or, - [72891] = 11, - ACTIONS(2092), 1, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [69208] = 13, + ACTIONS(1985), 1, anon_sym_DOT, - ACTIONS(2094), 1, + ACTIONS(1987), 1, anon_sym_LPAREN, - ACTIONS(2102), 1, + ACTIONS(1995), 1, anon_sym_STAR_STAR, - ACTIONS(2106), 1, + ACTIONS(1999), 1, anon_sym_LBRACK, + ACTIONS(2009), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2096), 2, + ACTIONS(1989), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2110), 2, + ACTIONS(1991), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2003), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1271), 2, + STATE(1154), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2104), 3, + ACTIONS(1997), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2201), 3, + ACTIONS(2053), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2199), 21, + ACTIONS(2051), 18, sym__newline, anon_sym_SEMI, anon_sym_from, anon_sym_COMMA, - anon_sym_as, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [69274] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1393), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1391), 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_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -88896,50 +84293,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72953] = 15, - ACTIONS(2122), 1, + anon_sym_RBRACE, + sym_type_conversion, + [69320] = 15, + ACTIONS(1947), 1, anon_sym_DOT, - ACTIONS(2124), 1, + ACTIONS(1949), 1, anon_sym_LPAREN, - ACTIONS(2132), 1, + ACTIONS(1959), 1, anon_sym_STAR_STAR, - ACTIONS(2136), 1, + ACTIONS(1963), 1, anon_sym_LBRACK, - ACTIONS(2142), 1, + ACTIONS(1971), 1, anon_sym_PIPE, - ACTIONS(2144), 1, + ACTIONS(1973), 1, anon_sym_AMP, - ACTIONS(2146), 1, + ACTIONS(1975), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2126), 2, + ACTIONS(1953), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2128), 2, + ACTIONS(1955), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2140), 2, + ACTIONS(1969), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1317), 2, + STATE(1133), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2134), 3, + ACTIONS(1961), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2205), 3, - anon_sym_as, + ACTIONS(2057), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2203), 16, + ACTIONS(2055), 16, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_not, anon_sym_and, @@ -88951,50 +84349,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [73023] = 15, - ACTIONS(2122), 1, + sym_type_conversion, + [69390] = 15, + ACTIONS(1947), 1, anon_sym_DOT, - ACTIONS(2124), 1, + ACTIONS(1949), 1, anon_sym_LPAREN, - ACTIONS(2132), 1, + ACTIONS(1959), 1, anon_sym_STAR_STAR, - ACTIONS(2136), 1, + ACTIONS(1963), 1, anon_sym_LBRACK, - ACTIONS(2142), 1, + ACTIONS(1971), 1, anon_sym_PIPE, - ACTIONS(2144), 1, + ACTIONS(1973), 1, anon_sym_AMP, - ACTIONS(2146), 1, + ACTIONS(1975), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2126), 2, + ACTIONS(1953), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2128), 2, + ACTIONS(1955), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2140), 2, + ACTIONS(1969), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1317), 2, + STATE(1133), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2134), 3, + ACTIONS(1961), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2197), 3, - anon_sym_as, + ACTIONS(2065), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2195), 16, + ACTIONS(2063), 16, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_not, anon_sym_and, @@ -89006,37 +84404,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [73093] = 8, - ACTIONS(2092), 1, + sym_type_conversion, + [69460] = 20, + ACTIONS(1965), 1, + anon_sym_EQ, + ACTIONS(2067), 1, anon_sym_DOT, - ACTIONS(2094), 1, + ACTIONS(2069), 1, anon_sym_LPAREN, - ACTIONS(2102), 1, + ACTIONS(2077), 1, anon_sym_STAR_STAR, - ACTIONS(2106), 1, + ACTIONS(2081), 1, anon_sym_LBRACK, + ACTIONS(2083), 1, + anon_sym_not, + ACTIONS(2087), 1, + anon_sym_PIPE, + ACTIONS(2089), 1, + anon_sym_AMP, + ACTIONS(2091), 1, + anon_sym_CARET, + ACTIONS(2095), 1, + anon_sym_is, + STATE(1273), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + ACTIONS(2071), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2073), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2085), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2093), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1439), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2201), 5, + ACTIONS(2079), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2075), 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(1951), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_and, + anon_sym_or, + [69540] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1459), 6, + anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2199), 26, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(1457), 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_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -89054,72 +84506,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73149] = 14, - ACTIONS(2092), 1, - anon_sym_DOT, - ACTIONS(2094), 1, - anon_sym_LPAREN, - ACTIONS(2102), 1, - anon_sym_STAR_STAR, - ACTIONS(2106), 1, - anon_sym_LBRACK, - ACTIONS(2114), 1, - anon_sym_AMP, - ACTIONS(2116), 1, - anon_sym_CARET, + anon_sym_RBRACE, + sym_type_conversion, + [69586] = 5, + ACTIONS(332), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2096), 2, + STATE(1039), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1369), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2098), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2110), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1271), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2104), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2201), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2199), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(1364), 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_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73217] = 3, + [69636] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1413), 6, + ACTIONS(1463), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1411), 31, + ACTIONS(1461), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -89151,18 +84596,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [73263] = 3, + [69682] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1413), 6, + ACTIONS(1463), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1411), 31, + ACTIONS(1461), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -89194,30 +84639,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [73309] = 5, - ACTIONS(340), 1, - sym_string_start, + [69728] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1047), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1397), 5, + ACTIONS(1474), 6, + anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 29, + ACTIONS(1472), 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_AT, @@ -89239,18 +84680,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73359] = 3, + anon_sym_RBRACE, + sym_type_conversion, + [69774] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1481), 6, + ACTIONS(1379), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1479), 31, + ACTIONS(1377), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -89282,63 +84725,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [73405] = 5, - ACTIONS(714), 1, - sym_string_start, + [69820] = 12, + ACTIONS(1947), 1, + anon_sym_DOT, + ACTIONS(1949), 1, + anon_sym_LPAREN, + ACTIONS(1959), 1, + anon_sym_STAR_STAR, + ACTIONS(1963), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1099), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2090), 5, - anon_sym_as, + ACTIONS(1953), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1955), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1969), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1133), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1961), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2053), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2088), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2051), 19, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73455] = 3, + anon_sym_RBRACE, + sym_type_conversion, + [69884] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1481), 6, + ACTIONS(1379), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1479), 31, + ACTIONS(1377), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -89370,30 +84820,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [73501] = 3, + [69930] = 8, + ACTIONS(1947), 1, + anon_sym_DOT, + ACTIONS(1949), 1, + anon_sym_LPAREN, + ACTIONS(1959), 1, + anon_sym_STAR_STAR, + ACTIONS(1963), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1485), 6, - anon_sym_as, + STATE(1133), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2053), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1483), 31, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2051), 26, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -89413,49 +84868,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [73547] = 15, - ACTIONS(2054), 1, + [69986] = 15, + ACTIONS(1985), 1, anon_sym_DOT, - ACTIONS(2056), 1, + ACTIONS(1987), 1, anon_sym_LPAREN, - ACTIONS(2066), 1, + ACTIONS(1995), 1, anon_sym_STAR_STAR, - ACTIONS(2070), 1, + ACTIONS(1999), 1, anon_sym_LBRACK, - ACTIONS(2078), 1, + ACTIONS(2005), 1, anon_sym_PIPE, - ACTIONS(2080), 1, + ACTIONS(2007), 1, anon_sym_AMP, - ACTIONS(2082), 1, + ACTIONS(2009), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2060), 2, + ACTIONS(1989), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2062), 2, + ACTIONS(1991), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2076), 2, + ACTIONS(2003), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1261), 2, + STATE(1154), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2068), 3, + ACTIONS(1997), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2205), 3, + ACTIONS(2065), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2203), 16, + ACTIONS(2063), 16, + 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, @@ -89466,46 +84923,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [73617] = 8, - ACTIONS(2092), 1, + [70056] = 10, + ACTIONS(1947), 1, anon_sym_DOT, - ACTIONS(2094), 1, + ACTIONS(1949), 1, anon_sym_LPAREN, - ACTIONS(2102), 1, + ACTIONS(1959), 1, anon_sym_STAR_STAR, - ACTIONS(2106), 1, + ACTIONS(1963), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + ACTIONS(1953), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1133), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2243), 5, - anon_sym_STAR, + ACTIONS(1961), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2053), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2241), 26, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2051), 23, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -89516,34 +84971,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73673] = 8, - ACTIONS(2122), 1, + anon_sym_RBRACE, + sym_type_conversion, + [70116] = 14, + ACTIONS(1947), 1, anon_sym_DOT, - ACTIONS(2124), 1, + ACTIONS(1949), 1, anon_sym_LPAREN, - ACTIONS(2132), 1, + ACTIONS(1959), 1, anon_sym_STAR_STAR, - ACTIONS(2136), 1, + ACTIONS(1963), 1, anon_sym_LBRACK, + ACTIONS(1973), 1, + anon_sym_AMP, + ACTIONS(1975), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1317), 2, + ACTIONS(1953), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1955), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1969), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1133), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2243), 5, + ACTIONS(1961), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2053), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2051), 17, + 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_PIPE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [70184] = 8, + ACTIONS(1985), 1, + anon_sym_DOT, + ACTIONS(1987), 1, + anon_sym_LPAREN, + ACTIONS(1995), 1, + anon_sym_STAR_STAR, + ACTIONS(1999), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1154), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2053), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2241), 26, + ACTIONS(2051), 26, + 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_AT, anon_sym_not, @@ -89563,110 +85075,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [73729] = 20, - ACTIONS(2072), 1, - anon_sym_EQ, - ACTIONS(2165), 1, + [70240] = 20, + ACTIONS(1965), 1, + anon_sym_as, + ACTIONS(2097), 1, anon_sym_DOT, - ACTIONS(2167), 1, + ACTIONS(2099), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2107), 1, anon_sym_STAR_STAR, - ACTIONS(2179), 1, + ACTIONS(2111), 1, anon_sym_LBRACK, - ACTIONS(2181), 1, + ACTIONS(2113), 1, anon_sym_not, - ACTIONS(2185), 1, + ACTIONS(2117), 1, anon_sym_PIPE, - ACTIONS(2187), 1, + ACTIONS(2119), 1, anon_sym_AMP, - ACTIONS(2189), 1, + ACTIONS(2121), 1, anon_sym_CARET, - ACTIONS(2193), 1, + ACTIONS(2125), 1, anon_sym_is, - STATE(1355), 1, + STATE(1583), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2169), 2, + ACTIONS(2101), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2171), 2, + ACTIONS(2103), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2115), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2123), 2, anon_sym_LT, anon_sym_GT, - STATE(1462), 2, + STATE(1383), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2177), 3, + ACTIONS(2109), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2173), 6, + ACTIONS(2105), 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(2058), 7, + ACTIONS(1951), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [70320] = 11, + ACTIONS(1985), 1, + anon_sym_DOT, + ACTIONS(1987), 1, + anon_sym_LPAREN, + ACTIONS(1995), 1, + anon_sym_STAR_STAR, + ACTIONS(1999), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1989), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2003), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1154), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1997), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2053), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2051), 21, + 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_else, + anon_sym_in, + anon_sym_not, anon_sym_and, anon_sym_or, - [73809] = 15, - ACTIONS(2054), 1, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [70382] = 15, + ACTIONS(1985), 1, anon_sym_DOT, - ACTIONS(2056), 1, + ACTIONS(1987), 1, anon_sym_LPAREN, - ACTIONS(2066), 1, + ACTIONS(1995), 1, anon_sym_STAR_STAR, - ACTIONS(2070), 1, + ACTIONS(1999), 1, anon_sym_LBRACK, - ACTIONS(2078), 1, + ACTIONS(2005), 1, anon_sym_PIPE, - ACTIONS(2080), 1, + ACTIONS(2007), 1, anon_sym_AMP, - ACTIONS(2082), 1, + ACTIONS(2009), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2060), 2, + ACTIONS(1989), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2062), 2, + ACTIONS(1991), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2076), 2, + ACTIONS(2003), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1261), 2, + STATE(1154), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2068), 3, + ACTIONS(1997), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2197), 3, + ACTIONS(2061), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2195), 16, + ACTIONS(2059), 16, + 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, @@ -89677,32 +85241,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [73879] = 3, + [70452] = 5, + ACTIONS(2127), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1437), 6, - anon_sym_as, + STATE(1011), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1942), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1435), 31, + ACTIONS(1940), 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_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [70502] = 5, + ACTIONS(690), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1016), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1369), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1364), 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_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -89720,52 +85331,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [73925] = 12, - ACTIONS(2054), 1, + [70552] = 8, + ACTIONS(1947), 1, anon_sym_DOT, - ACTIONS(2056), 1, + ACTIONS(1949), 1, anon_sym_LPAREN, - ACTIONS(2066), 1, + ACTIONS(1959), 1, anon_sym_STAR_STAR, - ACTIONS(2070), 1, + ACTIONS(1963), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2060), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2062), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2076), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1261), 2, + STATE(1133), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2068), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2201), 3, + ACTIONS(2053), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2199), 19, + ACTIONS(2051), 26, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -89774,51 +85379,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [73989] = 13, - ACTIONS(2054), 1, - anon_sym_DOT, - ACTIONS(2056), 1, - anon_sym_LPAREN, - ACTIONS(2066), 1, - anon_sym_STAR_STAR, - ACTIONS(2070), 1, - anon_sym_LBRACK, - ACTIONS(2082), 1, - anon_sym_CARET, + [70608] = 5, + ACTIONS(664), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2060), 2, + STATE(1020), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1983), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2062), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1981), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2076), 2, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - STATE(1261), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2068), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2201), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [70658] = 8, + ACTIONS(1947), 1, + anon_sym_DOT, + ACTIONS(1949), 1, + anon_sym_LPAREN, + ACTIONS(1959), 1, + anon_sym_STAR_STAR, + ACTIONS(1963), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1133), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2132), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2199), 18, + ACTIONS(2130), 26, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -89827,87 +85472,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [74055] = 14, - ACTIONS(2054), 1, - anon_sym_DOT, - ACTIONS(2056), 1, - anon_sym_LPAREN, - ACTIONS(2066), 1, - anon_sym_STAR_STAR, - ACTIONS(2070), 1, - anon_sym_LBRACK, - ACTIONS(2080), 1, - anon_sym_AMP, - ACTIONS(2082), 1, - anon_sym_CARET, + [70714] = 5, + ACTIONS(690), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2060), 2, + STATE(1021), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1983), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2062), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2076), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1261), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2068), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2201), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2199), 17, + ACTIONS(1981), 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_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [74123] = 8, - ACTIONS(2054), 1, + [70764] = 8, + ACTIONS(1985), 1, anon_sym_DOT, - ACTIONS(2056), 1, + ACTIONS(1987), 1, anon_sym_LPAREN, - ACTIONS(2066), 1, + ACTIONS(1995), 1, anon_sym_STAR_STAR, - ACTIONS(2070), 1, + ACTIONS(1999), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1261), 2, + STATE(1154), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2243), 5, + ACTIONS(2132), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2241), 26, + ACTIONS(2130), 26, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_AT, anon_sym_not, @@ -89927,50 +85565,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, + [70820] = 15, + ACTIONS(2015), 1, + anon_sym_DOT, + ACTIONS(2017), 1, + anon_sym_LPAREN, + ACTIONS(2025), 1, + anon_sym_STAR_STAR, + ACTIONS(2029), 1, + anon_sym_LBRACK, + ACTIONS(2035), 1, + anon_sym_PIPE, + ACTIONS(2037), 1, + anon_sym_AMP, + ACTIONS(2039), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2019), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2021), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2033), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1274), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2027), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2065), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2063), 16, + 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, anon_sym_RBRACE, - sym_type_conversion, - [74179] = 10, - ACTIONS(2054), 1, + [70890] = 15, + ACTIONS(2015), 1, anon_sym_DOT, - ACTIONS(2056), 1, + ACTIONS(2017), 1, anon_sym_LPAREN, - ACTIONS(2066), 1, + ACTIONS(2025), 1, anon_sym_STAR_STAR, - ACTIONS(2070), 1, + ACTIONS(2029), 1, anon_sym_LBRACK, + ACTIONS(2035), 1, + anon_sym_PIPE, + ACTIONS(2037), 1, + anon_sym_AMP, + ACTIONS(2039), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2060), 2, + ACTIONS(2019), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1261), 2, + ACTIONS(2021), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2033), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1274), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2068), 3, + ACTIONS(2027), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2201), 3, - anon_sym_EQ, + ACTIONS(2057), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2199), 23, + ACTIONS(2055), 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_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -89978,23 +85675,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - sym_type_conversion, - [74239] = 5, - ACTIONS(684), 1, + [70960] = 5, + ACTIONS(2134), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1090), 2, + STATE(1020), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2090), 5, + ACTIONS(1942), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2088), 29, + ACTIONS(1940), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90024,35 +85720,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74289] = 8, - ACTIONS(2054), 1, - anon_sym_DOT, - ACTIONS(2056), 1, - anon_sym_LPAREN, - ACTIONS(2066), 1, - anon_sym_STAR_STAR, - ACTIONS(2070), 1, - anon_sym_LBRACK, + [71010] = 5, + ACTIONS(2137), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1261), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2201), 5, + STATE(1021), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1942), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2199), 26, + ACTIONS(1940), 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_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -90070,55 +85765,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [74345] = 15, - ACTIONS(2054), 1, + [71060] = 12, + ACTIONS(2015), 1, anon_sym_DOT, - ACTIONS(2056), 1, + ACTIONS(2017), 1, anon_sym_LPAREN, - ACTIONS(2066), 1, + ACTIONS(2025), 1, anon_sym_STAR_STAR, - ACTIONS(2070), 1, + ACTIONS(2029), 1, anon_sym_LBRACK, - ACTIONS(2078), 1, - anon_sym_PIPE, - ACTIONS(2080), 1, - anon_sym_AMP, - ACTIONS(2082), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2060), 2, + ACTIONS(2019), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2062), 2, + ACTIONS(2021), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2076), 2, + ACTIONS(2033), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1261), 2, + STATE(1274), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2068), 3, + ACTIONS(2027), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2239), 3, - anon_sym_EQ, + ACTIONS(2053), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2237), 16, + ACTIONS(2051), 19, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -90126,95 +85817,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - sym_type_conversion, - [74415] = 5, - ACTIONS(2245), 1, - sym_string_start, + [71124] = 13, + ACTIONS(2015), 1, + anon_sym_DOT, + ACTIONS(2017), 1, + anon_sym_LPAREN, + ACTIONS(2025), 1, + anon_sym_STAR_STAR, + ACTIONS(2029), 1, + anon_sym_LBRACK, + ACTIONS(2039), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1090), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2154), 5, - anon_sym_as, + ACTIONS(2019), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2021), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2033), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1274), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2027), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2053), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2152), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2051), 18, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74465] = 11, - ACTIONS(2054), 1, + anon_sym_RBRACE, + [71190] = 14, + ACTIONS(2015), 1, anon_sym_DOT, - ACTIONS(2056), 1, + ACTIONS(2017), 1, anon_sym_LPAREN, - ACTIONS(2066), 1, + ACTIONS(2025), 1, anon_sym_STAR_STAR, - ACTIONS(2070), 1, + ACTIONS(2029), 1, anon_sym_LBRACK, + ACTIONS(2037), 1, + anon_sym_AMP, + ACTIONS(2039), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2060), 2, + ACTIONS(2019), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2076), 2, + ACTIONS(2021), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2033), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1261), 2, + STATE(1274), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2068), 3, + ACTIONS(2027), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2201), 3, - anon_sym_EQ, + ACTIONS(2053), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2199), 21, + ACTIONS(2051), 17, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -90222,34 +85924,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - sym_type_conversion, - [74527] = 8, - ACTIONS(2054), 1, + [71258] = 8, + ACTIONS(1985), 1, anon_sym_DOT, - ACTIONS(2056), 1, + ACTIONS(1987), 1, anon_sym_LPAREN, - ACTIONS(2066), 1, + ACTIONS(1995), 1, anon_sym_STAR_STAR, - ACTIONS(2070), 1, + ACTIONS(1999), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1261), 2, + STATE(1154), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2201), 5, + ACTIONS(2053), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2199), 26, + ACTIONS(2051), 26, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_AT, anon_sym_not, @@ -90269,43 +85972,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [74583] = 13, - ACTIONS(2092), 1, + [71314] = 10, + ACTIONS(2015), 1, anon_sym_DOT, - ACTIONS(2094), 1, + ACTIONS(2017), 1, anon_sym_LPAREN, - ACTIONS(2102), 1, + ACTIONS(2025), 1, anon_sym_STAR_STAR, - ACTIONS(2106), 1, + ACTIONS(2029), 1, anon_sym_LBRACK, - ACTIONS(2116), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2019), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1274), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2027), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2053), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2051), 23, + anon_sym_COMMA, + anon_sym_GT_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + [71374] = 12, + ACTIONS(1985), 1, + anon_sym_DOT, + ACTIONS(1987), 1, + anon_sym_LPAREN, + ACTIONS(1995), 1, + anon_sym_STAR_STAR, + ACTIONS(1999), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2096), 2, + ACTIONS(1989), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2098), 2, + ACTIONS(1991), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2110), 2, + ACTIONS(2003), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1271), 2, + STATE(1154), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2104), 3, + ACTIONS(1997), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2201), 3, + ACTIONS(2053), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2199), 18, + ACTIONS(2051), 19, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -90318,45 +86067,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PIPE, anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74649] = 12, - ACTIONS(2092), 1, + [71438] = 14, + ACTIONS(1985), 1, anon_sym_DOT, - ACTIONS(2094), 1, + ACTIONS(1987), 1, anon_sym_LPAREN, - ACTIONS(2102), 1, + ACTIONS(1995), 1, anon_sym_STAR_STAR, - ACTIONS(2106), 1, + ACTIONS(1999), 1, anon_sym_LBRACK, + ACTIONS(2007), 1, + anon_sym_AMP, + ACTIONS(2009), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2096), 2, + ACTIONS(1989), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2098), 2, + ACTIONS(1991), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2110), 2, + ACTIONS(2003), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1271), 2, + STATE(1154), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2104), 3, + ACTIONS(1997), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2201), 3, + ACTIONS(2053), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2199), 19, + ACTIONS(2051), 17, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -90368,128 +86122,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74713] = 5, - ACTIONS(684), 1, - sym_string_start, + [71506] = 15, + ACTIONS(2015), 1, + anon_sym_DOT, + ACTIONS(2017), 1, + anon_sym_LPAREN, + ACTIONS(2025), 1, + anon_sym_STAR_STAR, + ACTIONS(2029), 1, + anon_sym_LBRACK, + ACTIONS(2035), 1, + anon_sym_PIPE, + ACTIONS(2037), 1, + anon_sym_AMP, + ACTIONS(2039), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1087), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1397), 5, - anon_sym_as, + ACTIONS(2019), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2021), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2033), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1274), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2027), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2061), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2059), 16, 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_AT, - anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74763] = 15, - ACTIONS(2092), 1, + anon_sym_RBRACE, + [71576] = 11, + ACTIONS(2015), 1, anon_sym_DOT, - ACTIONS(2094), 1, + ACTIONS(2017), 1, anon_sym_LPAREN, - ACTIONS(2102), 1, + ACTIONS(2025), 1, anon_sym_STAR_STAR, - ACTIONS(2106), 1, + ACTIONS(2029), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, - anon_sym_PIPE, - ACTIONS(2114), 1, - anon_sym_AMP, - ACTIONS(2116), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2096), 2, + ACTIONS(2019), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2098), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2110), 2, + ACTIONS(2033), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1271), 2, + STATE(1274), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2104), 3, + ACTIONS(2027), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2239), 3, - anon_sym_EQ, + ACTIONS(2053), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2237), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2051), 21, 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_not, anon_sym_and, anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74833] = 3, + anon_sym_RBRACE, + [71638] = 8, + ACTIONS(2015), 1, + anon_sym_DOT, + ACTIONS(2017), 1, + anon_sym_LPAREN, + ACTIONS(2025), 1, + anon_sym_STAR_STAR, + ACTIONS(2029), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1463), 6, + STATE(1274), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2053), 5, anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1461), 31, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2051), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -90497,9 +86263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -90518,394 +86282,405 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - sym_type_conversion, - [74879] = 20, - ACTIONS(2072), 1, - anon_sym_as, - ACTIONS(2248), 1, + [71694] = 20, + ACTIONS(1965), 1, + anon_sym_EQ, + ACTIONS(2067), 1, anon_sym_DOT, - ACTIONS(2250), 1, + ACTIONS(2069), 1, anon_sym_LPAREN, - ACTIONS(2258), 1, + ACTIONS(2077), 1, anon_sym_STAR_STAR, - ACTIONS(2262), 1, + ACTIONS(2081), 1, anon_sym_LBRACK, - ACTIONS(2264), 1, + ACTIONS(2083), 1, anon_sym_not, - ACTIONS(2268), 1, + ACTIONS(2087), 1, anon_sym_PIPE, - ACTIONS(2270), 1, + ACTIONS(2089), 1, anon_sym_AMP, - ACTIONS(2272), 1, + ACTIONS(2091), 1, anon_sym_CARET, - ACTIONS(2276), 1, + ACTIONS(2095), 1, anon_sym_is, - STATE(1309), 1, + STATE(1256), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2252), 2, + ACTIONS(2071), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2254), 2, + ACTIONS(2073), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2266), 2, + ACTIONS(2085), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2274), 2, + ACTIONS(2093), 2, anon_sym_LT, anon_sym_GT, - STATE(1365), 2, + STATE(1439), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2260), 3, + ACTIONS(2079), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2256), 6, + ACTIONS(2075), 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(2058), 7, - anon_sym_RPAREN, + ACTIONS(1951), 7, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_and, anon_sym_or, - [74959] = 5, - ACTIONS(2278), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1099), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2154), 5, + [71774] = 20, + ACTIONS(1965), 1, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2152), 29, + ACTIONS(2140), 1, anon_sym_DOT, + ACTIONS(2142), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, + ACTIONS(2150), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2154), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2156), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2160), 1, anon_sym_PIPE, + ACTIONS(2162), 1, anon_sym_AMP, + ACTIONS(2164), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, + ACTIONS(2168), 1, anon_sym_is, - [75009] = 5, - ACTIONS(2281), 1, - sym_string_start, + STATE(1248), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1100), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2154), 5, + ACTIONS(2144), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2152), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(2146), 2, 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_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_LT_LT, + ACTIONS(2158), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2166), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1360), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2152), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(2148), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_is, - [75059] = 20, - ACTIONS(2072), 1, + ACTIONS(1951), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [71854] = 20, + ACTIONS(1965), 1, anon_sym_as, - ACTIONS(2248), 1, + ACTIONS(2097), 1, anon_sym_DOT, - ACTIONS(2250), 1, + ACTIONS(2099), 1, anon_sym_LPAREN, - ACTIONS(2258), 1, + ACTIONS(2107), 1, anon_sym_STAR_STAR, - ACTIONS(2262), 1, + ACTIONS(2111), 1, anon_sym_LBRACK, - ACTIONS(2264), 1, + ACTIONS(2113), 1, anon_sym_not, - ACTIONS(2268), 1, + ACTIONS(2117), 1, anon_sym_PIPE, - ACTIONS(2270), 1, + ACTIONS(2119), 1, anon_sym_AMP, - ACTIONS(2272), 1, + ACTIONS(2121), 1, anon_sym_CARET, - ACTIONS(2276), 1, + ACTIONS(2125), 1, anon_sym_is, - STATE(1645), 1, + STATE(1258), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2252), 2, + ACTIONS(2101), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2254), 2, + ACTIONS(2103), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2266), 2, + ACTIONS(2115), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2274), 2, + ACTIONS(2123), 2, anon_sym_LT, anon_sym_GT, - STATE(1365), 2, + STATE(1383), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2260), 3, + ACTIONS(2109), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2256), 6, + ACTIONS(2105), 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(2058), 7, - anon_sym_RPAREN, + ACTIONS(1951), 7, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [75139] = 12, - ACTIONS(2207), 1, + [71934] = 20, + ACTIONS(1965), 1, + anon_sym_as, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2209), 1, + ACTIONS(2142), 1, anon_sym_LPAREN, - ACTIONS(2217), 1, + ACTIONS(2150), 1, anon_sym_STAR_STAR, - ACTIONS(2221), 1, + ACTIONS(2154), 1, anon_sym_LBRACK, + ACTIONS(2156), 1, + anon_sym_not, + ACTIONS(2160), 1, + anon_sym_PIPE, + ACTIONS(2162), 1, + anon_sym_AMP, + ACTIONS(2164), 1, + anon_sym_CARET, + ACTIONS(2168), 1, + anon_sym_is, + STATE(1582), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2211), 2, + ACTIONS(2144), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2213), 2, + ACTIONS(2146), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2225), 2, + ACTIONS(2158), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1482), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2201), 3, - anon_sym_as, + ACTIONS(2166), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2219), 3, + STATE(1360), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2152), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2199), 18, + ACTIONS(2148), 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(1951), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [72014] = 5, + ACTIONS(664), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1014), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1369), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1364), 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_RBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75202] = 13, - ACTIONS(2207), 1, + [72064] = 8, + ACTIONS(2015), 1, anon_sym_DOT, - ACTIONS(2209), 1, + ACTIONS(2017), 1, anon_sym_LPAREN, - ACTIONS(2217), 1, + ACTIONS(2025), 1, anon_sym_STAR_STAR, - ACTIONS(2221), 1, + ACTIONS(2029), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2211), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2213), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2225), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1482), 2, + STATE(1274), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2201), 3, + ACTIONS(2132), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2219), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2199), 17, + ACTIONS(2130), 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_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75267] = 20, - ACTIONS(2072), 1, - anon_sym_EQ, - ACTIONS(2284), 1, + anon_sym_RBRACE, + [72120] = 10, + ACTIONS(1985), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(1987), 1, anon_sym_LPAREN, - ACTIONS(2294), 1, + ACTIONS(1995), 1, anon_sym_STAR_STAR, - ACTIONS(2298), 1, + ACTIONS(1999), 1, anon_sym_LBRACK, - ACTIONS(2300), 1, - anon_sym_not, - ACTIONS(2304), 1, - anon_sym_PIPE, - ACTIONS(2306), 1, - anon_sym_AMP, - ACTIONS(2308), 1, - anon_sym_CARET, - ACTIONS(2312), 1, - anon_sym_is, - STATE(1467), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2288), 2, + ACTIONS(1989), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2290), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2302), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2310), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1522), 2, + STATE(1154), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2296), 3, + ACTIONS(1997), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2058), 6, - anon_sym_RPAREN, + ACTIONS(2053), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2051), 23, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, + anon_sym_in, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(2292), 6, - anon_sym_in, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75346] = 5, - ACTIONS(766), 1, + anon_sym_is, + [72180] = 5, + ACTIONS(332), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1137), 2, + STATE(1011), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2090), 4, + ACTIONS(1983), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2088), 29, + ACTIONS(1981), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -90913,11 +86688,11 @@ 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -90935,128 +86710,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75395] = 5, - ACTIONS(1399), 1, - anon_sym_COLON_EQ, - ACTIONS(2314), 1, - anon_sym_EQ, + [72230] = 12, + ACTIONS(2067), 1, + anon_sym_DOT, + ACTIONS(2069), 1, + anon_sym_LPAREN, + ACTIONS(2077), 1, + anon_sym_STAR_STAR, + ACTIONS(2081), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 5, - anon_sym_as, + ACTIONS(2071), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2073), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2085), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1439), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2053), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2079), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2051), 18, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75444] = 19, - ACTIONS(2316), 1, - anon_sym_DOT, - ACTIONS(2318), 1, - anon_sym_LPAREN, - ACTIONS(2326), 1, - anon_sym_STAR_STAR, - ACTIONS(2330), 1, - anon_sym_LBRACK, - ACTIONS(2332), 1, - anon_sym_not, - ACTIONS(2336), 1, - anon_sym_PIPE, - ACTIONS(2338), 1, - anon_sym_AMP, - ACTIONS(2340), 1, - anon_sym_CARET, - ACTIONS(2344), 1, - anon_sym_is, - STATE(1466), 1, - aux_sym_comparison_operator_repeat1, + [72293] = 4, + ACTIONS(1371), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2320), 2, + ACTIONS(1369), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2322), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2334), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2342), 2, anon_sym_LT, anon_sym_GT, - STATE(1592), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2328), 3, + ACTIONS(1364), 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_in, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2324), 6, - anon_sym_in, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2058), 7, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + anon_sym_is, + [72340] = 6, + ACTIONS(289), 1, + anon_sym_COLON_EQ, + ACTIONS(351), 1, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [75521] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2348), 5, + ACTIONS(346), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(348), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2346), 31, - sym_string_start, + ACTIONS(605), 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_AT, @@ -91079,150 +86849,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [75566] = 15, - ACTIONS(2165), 1, - anon_sym_DOT, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_STAR_STAR, - ACTIONS(2179), 1, - anon_sym_LBRACK, - ACTIONS(2185), 1, - anon_sym_PIPE, - ACTIONS(2187), 1, - anon_sym_AMP, - ACTIONS(2189), 1, - anon_sym_CARET, + [72391] = 6, + ACTIONS(1371), 1, + anon_sym_COLON_EQ, + ACTIONS(1389), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2169), 2, + ACTIONS(1381), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1386), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2171), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2183), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1462), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2177), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2239), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2237), 15, + ACTIONS(1383), 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_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75635] = 14, - ACTIONS(2207), 1, + anon_sym_RBRACE, + [72442] = 8, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2209), 1, + ACTIONS(2142), 1, anon_sym_LPAREN, - ACTIONS(2217), 1, + ACTIONS(2150), 1, anon_sym_STAR_STAR, - ACTIONS(2221), 1, + ACTIONS(2154), 1, anon_sym_LBRACK, - ACTIONS(2229), 1, - anon_sym_AMP, - ACTIONS(2231), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2211), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2213), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2225), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1482), 2, + STATE(1360), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2201), 3, + ACTIONS(2132), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2219), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2199), 16, + ACTIONS(2130), 25, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75702] = 8, - ACTIONS(2357), 1, - anon_sym_not, - ACTIONS(2363), 1, - anon_sym_is, - STATE(1111), 1, + [72497] = 4, + STATE(1094), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2360), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2352), 3, + ACTIONS(2172), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2354), 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(2350), 22, - sym__newline, - anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2170), 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_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -91233,28 +86976,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [75757] = 4, - STATE(1111), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + sym_type_conversion, + [72544] = 4, + STATE(1071), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2368), 5, + ACTIONS(2172), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2366), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2170), 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_AT, @@ -91276,86 +87026,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75804] = 10, - ACTIONS(2207), 1, - anon_sym_DOT, - ACTIONS(2209), 1, - anon_sym_LPAREN, - ACTIONS(2217), 1, - anon_sym_STAR_STAR, - ACTIONS(2221), 1, - anon_sym_LBRACK, + anon_sym_RBRACE, + [72591] = 8, + ACTIONS(2181), 1, + anon_sym_not, + ACTIONS(2187), 1, + anon_sym_is, + STATE(1047), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2211), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1482), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2201), 3, - anon_sym_as, + ACTIONS(2184), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2219), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2199), 22, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, + ACTIONS(2176), 3, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + ACTIONS(2178), 6, anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_is, - [75863] = 8, - ACTIONS(2207), 1, + ACTIONS(2174), 22, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(2209), 1, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(2217), 1, - anon_sym_STAR_STAR, - ACTIONS(2221), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1482), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2201), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2199), 25, 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_AT, - anon_sym_RBRACK, - anon_sym_not, + anon_sym_LBRACK, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -91366,105 +87074,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [75918] = 15, - ACTIONS(2207), 1, - anon_sym_DOT, - ACTIONS(2209), 1, + [72646] = 19, + ACTIONS(1987), 1, anon_sym_LPAREN, - ACTIONS(2217), 1, + ACTIONS(1995), 1, anon_sym_STAR_STAR, - ACTIONS(2221), 1, - anon_sym_LBRACK, - ACTIONS(2227), 1, + ACTIONS(2001), 1, + anon_sym_not, + ACTIONS(2005), 1, anon_sym_PIPE, - ACTIONS(2229), 1, + ACTIONS(2007), 1, anon_sym_AMP, - ACTIONS(2231), 1, + ACTIONS(2009), 1, anon_sym_CARET, + ACTIONS(2013), 1, + anon_sym_is, + ACTIONS(2190), 1, + anon_sym_DOT, + ACTIONS(2192), 1, + anon_sym_LBRACK, + STATE(1576), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2211), 2, + ACTIONS(1989), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2213), 2, + ACTIONS(1991), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2225), 2, + ACTIONS(2003), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1482), 2, + ACTIONS(2011), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1154), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2219), 3, + ACTIONS(1997), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2239), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2237), 15, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + ACTIONS(1993), 6, anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_is, - [75987] = 15, - ACTIONS(2207), 1, + ACTIONS(1951), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [72723] = 15, + ACTIONS(2097), 1, anon_sym_DOT, - ACTIONS(2209), 1, + ACTIONS(2099), 1, anon_sym_LPAREN, - ACTIONS(2217), 1, + ACTIONS(2107), 1, anon_sym_STAR_STAR, - ACTIONS(2221), 1, + ACTIONS(2111), 1, anon_sym_LBRACK, - ACTIONS(2227), 1, + ACTIONS(2117), 1, anon_sym_PIPE, - ACTIONS(2229), 1, + ACTIONS(2119), 1, anon_sym_AMP, - ACTIONS(2231), 1, + ACTIONS(2121), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2211), 2, + ACTIONS(2101), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2213), 2, + ACTIONS(2103), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2225), 2, + ACTIONS(2115), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1482), 2, + STATE(1383), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2197), 3, + ACTIONS(2065), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2219), 3, + ACTIONS(2109), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2195), 15, + ACTIONS(2063), 15, anon_sym_COMMA, anon_sym_if, anon_sym_async, @@ -91480,36 +87186,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76056] = 8, - ACTIONS(2165), 1, - anon_sym_DOT, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_STAR_STAR, - ACTIONS(2179), 1, - anon_sym_LBRACK, + [72792] = 5, + ACTIONS(716), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1462), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2201), 5, + STATE(1106), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1983), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2199), 25, + ACTIONS(1981), 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_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -91527,84 +87230,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76111] = 11, - ACTIONS(2165), 1, + [72841] = 15, + ACTIONS(2097), 1, anon_sym_DOT, - ACTIONS(2167), 1, + ACTIONS(2099), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2107), 1, anon_sym_STAR_STAR, - ACTIONS(2179), 1, + ACTIONS(2111), 1, anon_sym_LBRACK, + ACTIONS(2117), 1, + anon_sym_PIPE, + ACTIONS(2119), 1, + anon_sym_AMP, + ACTIONS(2121), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2169), 2, + ACTIONS(2101), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2183), 2, + ACTIONS(2103), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2115), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1462), 2, + STATE(1383), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2177), 3, + ACTIONS(2057), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2109), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2201), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2199), 20, + ACTIONS(2055), 15, 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_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76172] = 8, - ACTIONS(2165), 1, + [72910] = 8, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2167), 1, + ACTIONS(2142), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2150), 1, anon_sym_STAR_STAR, - ACTIONS(2179), 1, + ACTIONS(2154), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1462), 2, + STATE(1360), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2201), 5, + ACTIONS(2053), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2199), 25, + ACTIONS(2051), 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_not, @@ -91624,43 +87331,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76227] = 11, - ACTIONS(2207), 1, + [72965] = 11, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2209), 1, + ACTIONS(2142), 1, anon_sym_LPAREN, - ACTIONS(2217), 1, + ACTIONS(2150), 1, anon_sym_STAR_STAR, - ACTIONS(2221), 1, + ACTIONS(2154), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2211), 2, + ACTIONS(2144), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2225), 2, + ACTIONS(2158), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1482), 2, + STATE(1360), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2201), 3, + ACTIONS(2053), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2219), 3, + ACTIONS(2152), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2199), 20, + ACTIONS(2051), 20, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -91674,36 +87381,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76288] = 8, - ACTIONS(2207), 1, - anon_sym_DOT, - ACTIONS(2209), 1, - anon_sym_LPAREN, - ACTIONS(2217), 1, - anon_sym_STAR_STAR, - ACTIONS(2221), 1, - anon_sym_LBRACK, + [73026] = 4, + ACTIONS(1371), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1482), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2201), 5, + ACTIONS(1369), 6, anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2199), 25, + ACTIONS(1364), 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_AT, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -91721,45 +87423,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76343] = 10, - ACTIONS(2165), 1, - anon_sym_DOT, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_STAR_STAR, - ACTIONS(2179), 1, - anon_sym_LBRACK, + anon_sym_RBRACE, + [73073] = 5, + ACTIONS(1371), 1, + anon_sym_COLON_EQ, + ACTIONS(2194), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2169), 2, + ACTIONS(1369), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - STATE(1462), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2177), 3, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1364), 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_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2201), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [73122] = 5, + ACTIONS(289), 1, + anon_sym_COLON_EQ, + ACTIONS(648), 1, anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(274), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2199), 22, + ACTIONS(272), 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_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -91770,74 +87512,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76402] = 14, - ACTIONS(2165), 1, + [73171] = 15, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2167), 1, + ACTIONS(2142), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2150), 1, anon_sym_STAR_STAR, - ACTIONS(2179), 1, + ACTIONS(2154), 1, anon_sym_LBRACK, - ACTIONS(2187), 1, + ACTIONS(2160), 1, + anon_sym_PIPE, + ACTIONS(2162), 1, anon_sym_AMP, - ACTIONS(2189), 1, + ACTIONS(2164), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2169), 2, + ACTIONS(2144), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2171), 2, + ACTIONS(2146), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2158), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1462), 2, + STATE(1360), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2177), 3, + ACTIONS(2061), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2152), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2201), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2199), 16, + ACTIONS(2059), 15, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76469] = 4, - ACTIONS(1399), 1, - anon_sym_COLON_EQ, + [73240] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 6, + ACTIONS(2198), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 29, + ACTIONS(2196), 31, + sym__newline, + sym_string_start, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -91864,32 +87608,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [76516] = 4, - ACTIONS(285), 1, - anon_sym_COLON_EQ, + [73285] = 8, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2142), 1, + anon_sym_LPAREN, + ACTIONS(2150), 1, + anon_sym_STAR_STAR, + ACTIONS(2154), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(270), 6, + STATE(1360), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2053), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(268), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2051), 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_in, - anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -91907,187 +87655,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [76563] = 15, - ACTIONS(2207), 1, - anon_sym_DOT, - ACTIONS(2209), 1, - anon_sym_LPAREN, - ACTIONS(2217), 1, - anon_sym_STAR_STAR, - ACTIONS(2221), 1, - anon_sym_LBRACK, - ACTIONS(2227), 1, - anon_sym_PIPE, - ACTIONS(2229), 1, - anon_sym_AMP, - ACTIONS(2231), 1, - anon_sym_CARET, + [73340] = 4, + ACTIONS(289), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2211), 2, + ACTIONS(274), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, - ACTIONS(2213), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2225), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1482), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2205), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2219), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2203), 15, + ACTIONS(272), 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_RBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [76632] = 15, - ACTIONS(2165), 1, - anon_sym_DOT, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_STAR_STAR, - ACTIONS(2179), 1, - anon_sym_LBRACK, - ACTIONS(2185), 1, - anon_sym_PIPE, - ACTIONS(2187), 1, - anon_sym_AMP, - ACTIONS(2189), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2169), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2171), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2183), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1462), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2177), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2197), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2195), 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_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76701] = 15, - ACTIONS(2165), 1, - anon_sym_DOT, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_STAR_STAR, - ACTIONS(2179), 1, - anon_sym_LBRACK, - ACTIONS(2185), 1, - anon_sym_PIPE, - ACTIONS(2187), 1, - anon_sym_AMP, - ACTIONS(2189), 1, - anon_sym_CARET, + anon_sym_RBRACE, + [73387] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2169), 2, + ACTIONS(2198), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2171), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2183), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1462), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2177), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2205), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2203), 15, + ACTIONS(2196), 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_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76770] = 3, + anon_sym_RBRACE, + sym_type_conversion, + [73432] = 5, + ACTIONS(716), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2348), 5, + STATE(1050), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1369), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2346), 31, - sym__newline, - sym_string_start, - anon_sym_SEMI, + ACTIONS(1364), 28, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -92113,41 +87784,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76815] = 12, - ACTIONS(2248), 1, + [73481] = 10, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2250), 1, + ACTIONS(2142), 1, anon_sym_LPAREN, - ACTIONS(2258), 1, + ACTIONS(2150), 1, anon_sym_STAR_STAR, - ACTIONS(2262), 1, + ACTIONS(2154), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2252), 2, + ACTIONS(2144), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2254), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2266), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1365), 2, + STATE(1360), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2201), 3, + ACTIONS(2053), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2260), 3, + ACTIONS(2152), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2199), 18, + ACTIONS(2051), 22, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, @@ -92155,82 +87821,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76878] = 13, - ACTIONS(2165), 1, + [73540] = 14, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2167), 1, + ACTIONS(2142), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2150), 1, anon_sym_STAR_STAR, - ACTIONS(2179), 1, + ACTIONS(2154), 1, anon_sym_LBRACK, - ACTIONS(2189), 1, + ACTIONS(2162), 1, + anon_sym_AMP, + ACTIONS(2164), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2169), 2, + ACTIONS(2144), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2171), 2, + ACTIONS(2146), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2158), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1462), 2, + STATE(1360), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2177), 3, + ACTIONS(2053), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2152), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2201), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2199), 17, + ACTIONS(2051), 16, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76943] = 5, - ACTIONS(766), 1, - sym_string_start, + [73607] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1105), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1397), 4, + ACTIONS(2202), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 29, + ACTIONS(2200), 31, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92242,7 +87909,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -92260,95 +87926,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76992] = 13, - ACTIONS(2248), 1, - anon_sym_DOT, - ACTIONS(2250), 1, - anon_sym_LPAREN, - ACTIONS(2258), 1, - anon_sym_STAR_STAR, - ACTIONS(2262), 1, - anon_sym_LBRACK, - ACTIONS(2272), 1, - anon_sym_CARET, + anon_sym_RBRACE, + sym_type_conversion, + [73652] = 4, + ACTIONS(1371), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2252), 2, + ACTIONS(1369), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2254), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2266), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1365), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2201), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2260), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2199), 17, - anon_sym_RPAREN, + ACTIONS(1364), 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_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [77057] = 14, - ACTIONS(2248), 1, + anon_sym_RBRACE, + sym_type_conversion, + [73699] = 13, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2250), 1, + ACTIONS(2142), 1, anon_sym_LPAREN, - ACTIONS(2258), 1, + ACTIONS(2150), 1, anon_sym_STAR_STAR, - ACTIONS(2262), 1, + ACTIONS(2154), 1, anon_sym_LBRACK, - ACTIONS(2270), 1, - anon_sym_AMP, - ACTIONS(2272), 1, + ACTIONS(2164), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2252), 2, + ACTIONS(2144), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2254), 2, + ACTIONS(2146), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2266), 2, + ACTIONS(2158), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1365), 2, + STATE(1360), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2201), 3, + ACTIONS(2053), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2260), 3, + ACTIONS(2152), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2199), 16, + ACTIONS(2051), 17, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -92359,42 +88016,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [77124] = 10, - ACTIONS(2248), 1, + [73764] = 12, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2250), 1, + ACTIONS(2142), 1, anon_sym_LPAREN, - ACTIONS(2258), 1, + ACTIONS(2150), 1, anon_sym_STAR_STAR, - ACTIONS(2262), 1, + ACTIONS(2154), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2252), 2, + ACTIONS(2144), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1365), 2, + ACTIONS(2146), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2158), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1360), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2201), 3, + ACTIONS(2053), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2260), 3, + ACTIONS(2152), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2199), 22, + ACTIONS(2051), 18, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, @@ -92402,48 +88065,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [77183] = 8, - ACTIONS(2248), 1, - anon_sym_DOT, - ACTIONS(2250), 1, - anon_sym_LPAREN, - ACTIONS(2258), 1, - anon_sym_STAR_STAR, - ACTIONS(2262), 1, - anon_sym_LBRACK, + [73827] = 4, + ACTIONS(289), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1365), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2201), 5, - anon_sym_as, + ACTIONS(274), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2199), 25, - anon_sym_RPAREN, + ACTIONS(272), 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_async, - anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -92461,33 +88117,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [77238] = 5, - ACTIONS(2370), 1, - sym_string_start, + [73874] = 5, + ACTIONS(279), 1, + anon_sym_COMMA, + ACTIONS(289), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1137), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2154), 4, + ACTIONS(274), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2152), 29, + ACTIONS(272), 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -92505,92 +88159,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [77287] = 15, - ACTIONS(2248), 1, - anon_sym_DOT, - ACTIONS(2250), 1, - anon_sym_LPAREN, - ACTIONS(2258), 1, - anon_sym_STAR_STAR, - ACTIONS(2262), 1, - anon_sym_LBRACK, - ACTIONS(2268), 1, - anon_sym_PIPE, - ACTIONS(2270), 1, - anon_sym_AMP, - ACTIONS(2272), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2252), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2254), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2266), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1365), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2239), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2260), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2237), 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [77356] = 8, - ACTIONS(2376), 1, + anon_sym_RBRACE, + sym_type_conversion, + [73923] = 8, + ACTIONS(2207), 1, anon_sym_not, - ACTIONS(2382), 1, + ACTIONS(2213), 1, anon_sym_is, - STATE(1139), 1, + STATE(1071), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2379), 2, + ACTIONS(2210), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2352), 3, + ACTIONS(2176), 3, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2373), 6, + ACTIONS(2204), 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(2350), 22, + ACTIONS(2174), 22, 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_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, @@ -92605,227 +88208,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_RBRACE, - sym_type_conversion, - [77411] = 11, - ACTIONS(2248), 1, + [73978] = 12, + ACTIONS(2097), 1, anon_sym_DOT, - ACTIONS(2250), 1, + ACTIONS(2099), 1, anon_sym_LPAREN, - ACTIONS(2258), 1, + ACTIONS(2107), 1, anon_sym_STAR_STAR, - ACTIONS(2262), 1, + ACTIONS(2111), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2252), 2, + ACTIONS(2101), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2266), 2, + ACTIONS(2103), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2115), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1365), 2, + STATE(1383), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2201), 3, + ACTIONS(2053), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2260), 3, + ACTIONS(2109), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2199), 20, - anon_sym_RPAREN, + ACTIONS(2051), 18, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [77472] = 8, - ACTIONS(2248), 1, + [74041] = 13, + ACTIONS(2097), 1, anon_sym_DOT, - ACTIONS(2250), 1, + ACTIONS(2099), 1, anon_sym_LPAREN, - ACTIONS(2258), 1, + ACTIONS(2107), 1, anon_sym_STAR_STAR, - ACTIONS(2262), 1, + ACTIONS(2111), 1, anon_sym_LBRACK, + ACTIONS(2121), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1365), 2, + ACTIONS(2101), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2103), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2115), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1383), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2201), 5, + ACTIONS(2053), 3, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2199), 25, - anon_sym_RPAREN, + ACTIONS(2109), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2051), 17, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_AT, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [77527] = 4, - ACTIONS(1399), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1397), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1392), 30, - sym__newline, - anon_sym_SEMI, + [74106] = 14, + ACTIONS(2097), 1, anon_sym_DOT, - anon_sym_from, + ACTIONS(2099), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, + ACTIONS(2107), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2111), 1, anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, + ACTIONS(2119), 1, anon_sym_AMP, + ACTIONS(2121), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [77574] = 4, - ACTIONS(285), 1, - anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(270), 5, + ACTIONS(2101), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2103), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2115), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1383), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2053), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(268), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2109), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2051), 16, 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_AT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [77621] = 8, - ACTIONS(2165), 1, + [74173] = 10, + ACTIONS(2097), 1, anon_sym_DOT, - ACTIONS(2167), 1, + ACTIONS(2099), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2107), 1, anon_sym_STAR_STAR, - ACTIONS(2179), 1, + ACTIONS(2111), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1462), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2243), 5, + ACTIONS(2101), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + STATE(1383), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2053), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2241), 25, + ACTIONS(2109), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2051), 22, 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_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -92836,31 +88413,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [77676] = 4, - STATE(1168), 1, - aux_sym_comparison_operator_repeat1, + [74232] = 8, + ACTIONS(2097), 1, + anon_sym_DOT, + ACTIONS(2099), 1, + anon_sym_LPAREN, + ACTIONS(2107), 1, + anon_sym_STAR_STAR, + ACTIONS(2111), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2368), 5, + STATE(1383), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2053), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2366), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2051), 25, 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_AT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -92878,127 +88460,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [77723] = 4, - STATE(1139), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2368), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2366), 30, + [74287] = 15, + ACTIONS(2097), 1, anon_sym_DOT, + ACTIONS(2099), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, + ACTIONS(2107), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2111), 1, anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2117), 1, anon_sym_PIPE, + ACTIONS(2119), 1, anon_sym_AMP, + ACTIONS(2121), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [77770] = 4, - ACTIONS(285), 1, - anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(270), 6, - anon_sym_as, + ACTIONS(2101), 2, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, + ACTIONS(2103), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2115), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1383), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2061), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(268), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2109), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2059), 15, 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_AT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [77817] = 5, - ACTIONS(2385), 1, - sym_string_start, + [74356] = 11, + ACTIONS(2097), 1, + anon_sym_DOT, + ACTIONS(2099), 1, + anon_sym_LPAREN, + ACTIONS(2107), 1, + anon_sym_STAR_STAR, + ACTIONS(2111), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1148), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2154), 5, + ACTIONS(2101), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2115), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1383), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2053), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2152), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2109), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2051), 20, 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_AT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -93009,50 +88564,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [77866] = 15, - ACTIONS(2248), 1, + [74417] = 15, + ACTIONS(2067), 1, anon_sym_DOT, - ACTIONS(2250), 1, + ACTIONS(2069), 1, anon_sym_LPAREN, - ACTIONS(2258), 1, + ACTIONS(2077), 1, anon_sym_STAR_STAR, - ACTIONS(2262), 1, + ACTIONS(2081), 1, anon_sym_LBRACK, - ACTIONS(2268), 1, + ACTIONS(2087), 1, anon_sym_PIPE, - ACTIONS(2270), 1, + ACTIONS(2089), 1, anon_sym_AMP, - ACTIONS(2272), 1, + ACTIONS(2091), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2252), 2, + ACTIONS(2071), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2254), 2, + ACTIONS(2073), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2266), 2, + ACTIONS(2085), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1365), 2, + STATE(1439), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2197), 3, - anon_sym_as, + ACTIONS(2061), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2260), 3, + ACTIONS(2079), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2195), 15, - anon_sym_RPAREN, + ACTIONS(2059), 15, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_not, anon_sym_and, @@ -93063,87 +88618,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [77935] = 15, - ACTIONS(2248), 1, + [74486] = 8, + ACTIONS(2097), 1, anon_sym_DOT, - ACTIONS(2250), 1, + ACTIONS(2099), 1, anon_sym_LPAREN, - ACTIONS(2258), 1, + ACTIONS(2107), 1, anon_sym_STAR_STAR, - ACTIONS(2262), 1, + ACTIONS(2111), 1, anon_sym_LBRACK, - ACTIONS(2268), 1, - anon_sym_PIPE, - ACTIONS(2270), 1, - anon_sym_AMP, - ACTIONS(2272), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2252), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2254), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2266), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1365), 2, + STATE(1383), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2205), 3, + ACTIONS(2053), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2260), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2203), 15, - anon_sym_RPAREN, + ACTIONS(2051), 25, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_AT, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [78004] = 5, - ACTIONS(285), 1, - anon_sym_COLON_EQ, - ACTIONS(668), 1, - anon_sym_EQ, + [74541] = 5, + ACTIONS(2216), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(270), 5, - anon_sym_as, + STATE(1081), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1942), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(268), 29, + ACTIONS(1940), 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_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -93161,153 +88709,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [78053] = 20, - ACTIONS(2072), 1, - anon_sym_EQ, - ACTIONS(2284), 1, + [74590] = 19, + ACTIONS(2219), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2294), 1, + ACTIONS(2229), 1, anon_sym_STAR_STAR, - ACTIONS(2298), 1, + ACTIONS(2233), 1, anon_sym_LBRACK, - ACTIONS(2300), 1, + ACTIONS(2235), 1, anon_sym_not, - ACTIONS(2304), 1, + ACTIONS(2239), 1, anon_sym_PIPE, - ACTIONS(2306), 1, + ACTIONS(2241), 1, anon_sym_AMP, - ACTIONS(2308), 1, + ACTIONS(2243), 1, anon_sym_CARET, - ACTIONS(2312), 1, + ACTIONS(2247), 1, anon_sym_is, - STATE(1656), 1, + STATE(1588), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2288), 2, + ACTIONS(2223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2290), 2, + ACTIONS(2225), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2302), 2, + ACTIONS(2237), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2310), 2, + ACTIONS(2245), 2, anon_sym_LT, anon_sym_GT, - STATE(1522), 2, + STATE(1503), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2296), 3, + ACTIONS(2231), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2058), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2292), 6, + ACTIONS(2227), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78132] = 19, - ACTIONS(2316), 1, + ACTIONS(1951), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [74667] = 20, + ACTIONS(1965), 1, + anon_sym_EQ, + ACTIONS(2249), 1, anon_sym_DOT, - ACTIONS(2318), 1, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(2326), 1, + ACTIONS(2259), 1, anon_sym_STAR_STAR, - ACTIONS(2330), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2332), 1, + ACTIONS(2265), 1, anon_sym_not, - ACTIONS(2336), 1, + ACTIONS(2269), 1, anon_sym_PIPE, - ACTIONS(2338), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2340), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2344), 1, + ACTIONS(2277), 1, anon_sym_is, - STATE(1689), 1, + STATE(1591), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2320), 2, + ACTIONS(2253), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2322), 2, + ACTIONS(2255), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2334), 2, + ACTIONS(2267), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2342), 2, + ACTIONS(2275), 2, anon_sym_LT, anon_sym_GT, - STATE(1592), 2, + STATE(1506), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2328), 3, + ACTIONS(2261), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2324), 6, + ACTIONS(1951), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2257), 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(2058), 7, + [74746] = 8, + ACTIONS(2067), 1, + anon_sym_DOT, + ACTIONS(2069), 1, + anon_sym_LPAREN, + ACTIONS(2077), 1, + anon_sym_STAR_STAR, + ACTIONS(2081), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1439), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2132), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2130), 25, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_else, + anon_sym_in, + anon_sym_AT, + anon_sym_not, anon_sym_and, anon_sym_or, - [78209] = 8, - ACTIONS(2248), 1, - anon_sym_DOT, - ACTIONS(2250), 1, - anon_sym_LPAREN, - ACTIONS(2258), 1, - anon_sym_STAR_STAR, - ACTIONS(2262), 1, - anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [74801] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1365), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2243), 5, + ACTIONS(2198), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2241), 25, - anon_sym_RPAREN, + ACTIONS(2196), 31, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -93325,82 +88914,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [78264] = 12, - ACTIONS(2165), 1, + anon_sym_RBRACE, + [74846] = 8, + ACTIONS(2067), 1, anon_sym_DOT, - ACTIONS(2167), 1, + ACTIONS(2069), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2077), 1, anon_sym_STAR_STAR, - ACTIONS(2179), 1, + ACTIONS(2081), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2169), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2171), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2183), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1462), 2, + STATE(1439), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2177), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2201), 3, + ACTIONS(2053), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2199), 18, + ACTIONS(2051), 25, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_in, + anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [78327] = 3, + [74901] = 5, + ACTIONS(742), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2390), 5, + STATE(1081), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1983), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2388), 31, - sym__newline, - sym_string_start, - anon_sym_SEMI, + ACTIONS(1981), 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_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -93418,40 +89006,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [78372] = 5, - ACTIONS(740), 1, - sym_string_start, + [74950] = 11, + ACTIONS(2067), 1, + anon_sym_DOT, + ACTIONS(2069), 1, + anon_sym_LPAREN, + ACTIONS(2077), 1, + anon_sym_STAR_STAR, + ACTIONS(2081), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1164), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1397), 5, + ACTIONS(2071), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2085), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1439), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2053), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2079), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2051), 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_AT, - anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -93462,36 +89056,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [78421] = 3, + [75011] = 10, + ACTIONS(2067), 1, + anon_sym_DOT, + ACTIONS(2069), 1, + anon_sym_LPAREN, + ACTIONS(2077), 1, + anon_sym_STAR_STAR, + ACTIONS(2081), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2390), 5, + ACTIONS(2071), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + STATE(1439), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2053), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2388), 31, - sym_string_start, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2079), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2051), 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_AT, - anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -93502,182 +89105,260 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [78466] = 8, - ACTIONS(2207), 1, + [75070] = 14, + ACTIONS(2067), 1, anon_sym_DOT, - ACTIONS(2209), 1, + ACTIONS(2069), 1, anon_sym_LPAREN, - ACTIONS(2217), 1, + ACTIONS(2077), 1, anon_sym_STAR_STAR, - ACTIONS(2221), 1, + ACTIONS(2081), 1, anon_sym_LBRACK, + ACTIONS(2089), 1, + anon_sym_AMP, + ACTIONS(2091), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1482), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2243), 5, - anon_sym_as, + ACTIONS(2071), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2073), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2085), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1439), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2053), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2241), 25, + ACTIONS(2079), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2051), 16, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_AT, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [78521] = 5, - ACTIONS(1394), 1, - anon_sym_COMMA, - ACTIONS(1399), 1, - anon_sym_COLON_EQ, + [75137] = 15, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2142), 1, + anon_sym_LPAREN, + ACTIONS(2150), 1, + anon_sym_STAR_STAR, + ACTIONS(2154), 1, + anon_sym_LBRACK, + ACTIONS(2160), 1, + anon_sym_PIPE, + ACTIONS(2162), 1, + anon_sym_AMP, + ACTIONS(2164), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 6, + ACTIONS(2144), 2, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2146), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2158), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1360), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2057), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_GT_GT, + ACTIONS(2152), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2055), 15, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [75206] = 15, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2142), 1, + anon_sym_LPAREN, + ACTIONS(2150), 1, + anon_sym_STAR_STAR, + ACTIONS(2154), 1, + anon_sym_LBRACK, + ACTIONS(2160), 1, anon_sym_PIPE, + ACTIONS(2162), 1, anon_sym_AMP, + ACTIONS(2164), 1, anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2144), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2146), 2, + anon_sym_GT_GT, anon_sym_LT_LT, + ACTIONS(2158), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1360), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2065), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2152), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2063), 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [78570] = 19, - ACTIONS(2094), 1, + [75275] = 19, + ACTIONS(2219), 1, + anon_sym_DOT, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2102), 1, + ACTIONS(2229), 1, anon_sym_STAR_STAR, - ACTIONS(2108), 1, + ACTIONS(2233), 1, + anon_sym_LBRACK, + ACTIONS(2235), 1, anon_sym_not, - ACTIONS(2112), 1, + ACTIONS(2239), 1, anon_sym_PIPE, - ACTIONS(2114), 1, + ACTIONS(2241), 1, anon_sym_AMP, - ACTIONS(2116), 1, + ACTIONS(2243), 1, anon_sym_CARET, - ACTIONS(2120), 1, + ACTIONS(2247), 1, anon_sym_is, - ACTIONS(2392), 1, - anon_sym_DOT, - ACTIONS(2394), 1, - anon_sym_LBRACK, - STATE(1635), 1, + STATE(1298), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2096), 2, + ACTIONS(2223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2098), 2, + ACTIONS(2225), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2110), 2, + ACTIONS(2237), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2118), 2, + ACTIONS(2245), 2, anon_sym_LT, anon_sym_GT, - STATE(1271), 2, + STATE(1503), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2104), 3, + ACTIONS(2231), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2100), 6, + ACTIONS(2227), 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(2058), 7, - sym__newline, - anon_sym_SEMI, + ACTIONS(1951), 7, anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [78647] = 3, + [75352] = 8, + ACTIONS(2282), 1, + anon_sym_not, + ACTIONS(2288), 1, + anon_sym_is, + STATE(1094), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2390), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2285), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2388), 31, - sym_string_start, + ACTIONS(2176), 3, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + ACTIONS(2279), 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(2174), 22, 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_AT, anon_sym_LBRACK, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -93688,82 +89369,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, anon_sym_RBRACE, - [78692] = 3, + sym_type_conversion, + [75407] = 13, + ACTIONS(2067), 1, + anon_sym_DOT, + ACTIONS(2069), 1, + anon_sym_LPAREN, + ACTIONS(2077), 1, + anon_sym_STAR_STAR, + ACTIONS(2081), 1, + anon_sym_LBRACK, + ACTIONS(2091), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2348), 5, + ACTIONS(2071), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2073), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2085), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1439), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2053), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2346), 31, - sym_string_start, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2079), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2051), 17, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [78737] = 5, - ACTIONS(740), 1, - sym_string_start, + [75472] = 8, + ACTIONS(2067), 1, + anon_sym_DOT, + ACTIONS(2069), 1, + anon_sym_LPAREN, + ACTIONS(2077), 1, + anon_sym_STAR_STAR, + ACTIONS(2081), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1148), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2090), 5, + STATE(1439), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2053), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2088), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2051), 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_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -93781,31 +89470,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [78786] = 5, - ACTIONS(275), 1, - anon_sym_COMMA, - ACTIONS(285), 1, - anon_sym_COLON_EQ, + [75527] = 8, + ACTIONS(2097), 1, + anon_sym_DOT, + ACTIONS(2099), 1, + anon_sym_LPAREN, + ACTIONS(2107), 1, + anon_sym_STAR_STAR, + ACTIONS(2111), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(270), 6, + STATE(1383), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2132), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(268), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, + ACTIONS(2130), 25, + 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_AT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -93823,29 +89517,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [78835] = 6, - ACTIONS(1399), 1, + [75582] = 4, + ACTIONS(289), 1, anon_sym_COLON_EQ, - ACTIONS(1433), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1425), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1430), 5, - anon_sym_as, + ACTIONS(274), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1427), 27, + ACTIONS(272), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_in, @@ -93870,33 +89559,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [78886] = 6, - ACTIONS(285), 1, - anon_sym_COLON_EQ, - ACTIONS(347), 1, - anon_sym_COLON, + sym_type_conversion, + [75629] = 5, + ACTIONS(742), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(342), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(344), 5, - anon_sym_as, + STATE(1087), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1369), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(603), 27, + ACTIONS(1364), 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_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -93914,43 +89604,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [78937] = 8, - ACTIONS(2399), 1, - anon_sym_not, - ACTIONS(2405), 1, - anon_sym_is, - STATE(1168), 1, - aux_sym_comparison_operator_repeat1, + [75678] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2402), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2352), 3, - anon_sym_as, + ACTIONS(2202), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2396), 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(2350), 22, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2200), 31, + 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_AT, anon_sym_LBRACK, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -93961,28 +89640,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_RBRACE, - [78992] = 4, - ACTIONS(1399), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [75723] = 5, + ACTIONS(1366), 1, + anon_sym_COMMA, + ACTIONS(1371), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 6, - anon_sym_as, + ACTIONS(1369), 6, anon_sym_STAR, anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 29, + ACTIONS(1364), 28, 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_AT, @@ -94005,58 +89689,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [79039] = 3, + sym_type_conversion, + [75772] = 20, + ACTIONS(1965), 1, + anon_sym_EQ, + ACTIONS(2249), 1, + anon_sym_DOT, + ACTIONS(2251), 1, + anon_sym_LPAREN, + ACTIONS(2259), 1, + anon_sym_STAR_STAR, + ACTIONS(2263), 1, + anon_sym_LBRACK, + ACTIONS(2265), 1, + anon_sym_not, + ACTIONS(2269), 1, + anon_sym_PIPE, + ACTIONS(2271), 1, + anon_sym_AMP, + ACTIONS(2273), 1, + anon_sym_CARET, + ACTIONS(2277), 1, + anon_sym_is, + STATE(1374), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1437), 5, - anon_sym_as, + ACTIONS(2253), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2255), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2267), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2275), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1435), 30, - anon_sym_DOT, - anon_sym_LPAREN, + STATE(1506), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2261), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1951), 6, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(2257), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_is, - [79083] = 3, + [75851] = 4, + STATE(1047), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2410), 5, + ACTIONS(2172), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2408), 30, + ACTIONS(2170), 30, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -94087,26 +89792,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [79127] = 3, + [75898] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1455), 5, + ACTIONS(2202), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1450), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2200), 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_AT, @@ -94128,112 +89833,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [79171] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1430), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1433), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1427), 14, + anon_sym_RBRACE, + [75943] = 15, + ACTIONS(2067), 1, anon_sym_DOT, + ACTIONS(2069), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2077), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2081), 1, anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2087), 1, anon_sym_PIPE, + ACTIONS(2089), 1, anon_sym_AMP, + ACTIONS(2091), 1, anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1425), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [79219] = 4, - ACTIONS(285), 1, - anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(270), 6, + ACTIONS(2071), 2, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2073), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2085), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1439), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2065), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(268), 28, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2079), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2063), 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_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [79265] = 4, - ACTIONS(1399), 1, - anon_sym_COLON_EQ, + [76012] = 5, + ACTIONS(2291), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 6, + STATE(1106), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1942), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 28, + ACTIONS(1940), 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_AT, @@ -94255,75 +89932,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [79311] = 4, - ACTIONS(285), 1, - anon_sym_COLON_EQ, + [76061] = 15, + ACTIONS(2067), 1, + anon_sym_DOT, + ACTIONS(2069), 1, + anon_sym_LPAREN, + ACTIONS(2077), 1, + anon_sym_STAR_STAR, + ACTIONS(2081), 1, + anon_sym_LBRACK, + ACTIONS(2087), 1, + anon_sym_PIPE, + ACTIONS(2089), 1, + anon_sym_AMP, + ACTIONS(2091), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(270), 5, - anon_sym_as, + ACTIONS(2071), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2073), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2085), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1439), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2057), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(268), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2079), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2055), 15, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [79357] = 4, - ACTIONS(1399), 1, - anon_sym_COLON_EQ, + [76130] = 4, + ACTIONS(2298), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 5, - anon_sym_as, + ACTIONS(2296), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 29, + ACTIONS(2294), 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_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, @@ -94339,33 +90026,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [79403] = 3, + anon_sym_RBRACE, + sym_type_conversion, + [76176] = 5, + ACTIONS(2298), 1, + anon_sym_and, + ACTIONS(2304), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1481), 5, + ACTIONS(2302), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1479), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2300), 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_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -94380,17 +90069,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [79447] = 3, + anon_sym_RBRACE, + sym_type_conversion, + [76224] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2414), 5, + ACTIONS(1393), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2412), 30, + ACTIONS(1391), 30, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -94421,33 +90112,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [79491] = 3, + [76268] = 7, + ACTIONS(2298), 1, + anon_sym_and, + ACTIONS(2304), 1, + anon_sym_or, + ACTIONS(2308), 1, + anon_sym_as, + ACTIONS(2312), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2418), 5, + ACTIONS(2310), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2416), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2306), 26, 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_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -94462,76 +90155,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [79535] = 3, + anon_sym_RBRACE, + sym_type_conversion, + [76320] = 12, + ACTIONS(2249), 1, + anon_sym_DOT, + ACTIONS(2251), 1, + anon_sym_LPAREN, + ACTIONS(2259), 1, + anon_sym_STAR_STAR, + ACTIONS(2263), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2422), 5, + ACTIONS(2253), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2255), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2267), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1506), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2053), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2261), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2051), 17, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [79579] = 8, - ACTIONS(2284), 1, - anon_sym_DOT, - ACTIONS(2286), 1, - anon_sym_LPAREN, - ACTIONS(2294), 1, - anon_sym_STAR_STAR, - ACTIONS(2298), 1, - anon_sym_LBRACK, + [76382] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1522), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2243), 5, + ACTIONS(2316), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2241), 24, - anon_sym_RPAREN, + ACTIONS(2314), 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_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -94549,29 +90246,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [79633] = 7, - ACTIONS(2426), 1, - anon_sym_as, - ACTIONS(2430), 1, - anon_sym_if, - ACTIONS(2432), 1, + anon_sym_RBRACE, + sym_type_conversion, + [76426] = 6, + ACTIONS(2298), 1, anon_sym_and, - ACTIONS(2434), 1, + ACTIONS(2304), 1, anon_sym_or, + ACTIONS(2320), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2428), 5, + ACTIONS(2323), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2424), 26, + ACTIONS(2318), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, @@ -94594,35 +90292,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [79685] = 8, - ACTIONS(2284), 1, - anon_sym_DOT, - ACTIONS(2286), 1, - anon_sym_LPAREN, - ACTIONS(2294), 1, - anon_sym_STAR_STAR, - ACTIONS(2298), 1, - anon_sym_LBRACK, + [76476] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1522), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2201), 5, + ACTIONS(2327), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2199), 24, - anon_sym_RPAREN, + ACTIONS(2325), 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_in, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -94640,36 +90333,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [79739] = 7, - ACTIONS(2438), 1, - anon_sym_as, - ACTIONS(2442), 1, - anon_sym_if, - ACTIONS(2444), 1, - anon_sym_and, - ACTIONS(2446), 1, - anon_sym_or, + [76520] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2440), 4, + ACTIONS(2296), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2436), 27, + ACTIONS(2294), 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_AT, anon_sym_LBRACK, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -94685,26 +90373,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [79791] = 4, + sym_type_conversion, + [76564] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1425), 3, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - ACTIONS(1430), 5, - anon_sym_as, + ACTIONS(2331), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1427), 27, + ACTIONS(2329), 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_AT, @@ -94727,45 +90414,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [79837] = 11, - ACTIONS(2284), 1, - anon_sym_DOT, - ACTIONS(2286), 1, - anon_sym_LPAREN, - ACTIONS(2294), 1, - anon_sym_STAR_STAR, - ACTIONS(2298), 1, - anon_sym_LBRACK, + sym_type_conversion, + [76608] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2288), 2, + ACTIONS(2335), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2302), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1522), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2201), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2296), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2199), 19, - anon_sym_RPAREN, + ACTIONS(2333), 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_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -94776,145 +90454,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [79897] = 15, - ACTIONS(2284), 1, - anon_sym_DOT, - ACTIONS(2286), 1, - anon_sym_LPAREN, - ACTIONS(2294), 1, - anon_sym_STAR_STAR, + anon_sym_RBRACE, + sym_type_conversion, + [76652] = 7, ACTIONS(2298), 1, - anon_sym_LBRACK, + anon_sym_and, ACTIONS(2304), 1, - anon_sym_PIPE, - ACTIONS(2306), 1, - anon_sym_AMP, + anon_sym_or, ACTIONS(2308), 1, - anon_sym_CARET, + anon_sym_as, + ACTIONS(2312), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2288), 2, + ACTIONS(2339), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2290), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2302), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1522), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2239), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2296), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2237), 14, - anon_sym_RPAREN, + ACTIONS(2337), 26, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [79965] = 19, - ACTIONS(2248), 1, - anon_sym_DOT, - ACTIONS(2262), 1, - anon_sym_LBRACK, - ACTIONS(2286), 1, - anon_sym_LPAREN, - ACTIONS(2294), 1, - anon_sym_STAR_STAR, - ACTIONS(2300), 1, - anon_sym_not, - ACTIONS(2304), 1, - anon_sym_PIPE, - ACTIONS(2306), 1, - anon_sym_AMP, - ACTIONS(2308), 1, - anon_sym_CARET, - ACTIONS(2312), 1, - anon_sym_is, - STATE(1656), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_RBRACE, + sym_type_conversion, + [76704] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2288), 2, + ACTIONS(1459), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2290), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2302), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2310), 2, anon_sym_LT, anon_sym_GT, - STATE(1522), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2296), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2058), 6, - anon_sym_RPAREN, + ACTIONS(1457), 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_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(2292), 6, - anon_sym_in, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80041] = 8, - ACTIONS(2284), 1, - anon_sym_DOT, - ACTIONS(2286), 1, - anon_sym_LPAREN, - ACTIONS(2294), 1, - anon_sym_STAR_STAR, - ACTIONS(2298), 1, - anon_sym_LBRACK, + anon_sym_is, + [76748] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1522), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2201), 5, + ACTIONS(1463), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2199), 24, - anon_sym_RPAREN, + ACTIONS(1461), 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_in, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -94932,44 +90583,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [80095] = 10, - ACTIONS(2284), 1, - anon_sym_DOT, - ACTIONS(2286), 1, - anon_sym_LPAREN, - ACTIONS(2294), 1, - anon_sym_STAR_STAR, - ACTIONS(2298), 1, - anon_sym_LBRACK, + [76792] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2288), 2, + ACTIONS(1463), 5, anon_sym_STAR, - anon_sym_SLASH, - STATE(1522), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2201), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2296), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2199), 21, - anon_sym_RPAREN, + ACTIONS(1461), 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_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -94980,26 +90624,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [80153] = 3, + [76836] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1485), 5, - anon_sym_as, + ACTIONS(2343), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1483), 30, + ACTIONS(2341), 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_AT, @@ -95021,17 +90663,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [80197] = 3, + anon_sym_RBRACE, + sym_type_conversion, + [76880] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2450), 5, + ACTIONS(2327), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2448), 30, + ACTIONS(2325), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95062,82 +90706,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [80241] = 14, - ACTIONS(2284), 1, - anon_sym_DOT, - ACTIONS(2286), 1, - anon_sym_LPAREN, - ACTIONS(2294), 1, - anon_sym_STAR_STAR, - ACTIONS(2298), 1, - anon_sym_LBRACK, - ACTIONS(2306), 1, - anon_sym_AMP, - ACTIONS(2308), 1, - anon_sym_CARET, + [76924] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2288), 2, + ACTIONS(2347), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2290), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2302), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1522), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2201), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2296), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2199), 15, - anon_sym_RPAREN, + ACTIONS(2345), 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_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [80307] = 6, - ACTIONS(2444), 1, + anon_sym_RBRACE, + sym_type_conversion, + [76968] = 7, + ACTIONS(2298), 1, anon_sym_and, - ACTIONS(2446), 1, + ACTIONS(2304), 1, anon_sym_or, - ACTIONS(2454), 1, + ACTIONS(2308), 1, anon_sym_as, + ACTIONS(2312), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2457), 4, + ACTIONS(2351), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2452), 28, + ACTIONS(2349), 26, 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_AT, @@ -95158,34 +90791,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [80357] = 5, - ACTIONS(2444), 1, - anon_sym_and, - ACTIONS(2446), 1, - anon_sym_or, + sym_type_conversion, + [77020] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2461), 5, - anon_sym_as, + ACTIONS(1379), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2459), 28, + ACTIONS(1377), 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_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -95200,33 +90833,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [80405] = 4, - ACTIONS(2444), 1, - anon_sym_and, + [77064] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2465), 5, - anon_sym_as, + ACTIONS(1379), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2463), 29, + ACTIONS(1377), 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_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_not, + anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, @@ -95242,25 +90874,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [80451] = 7, - ACTIONS(2438), 1, + [77108] = 7, + ACTIONS(2353), 1, anon_sym_as, - ACTIONS(2442), 1, + ACTIONS(2355), 1, anon_sym_if, - ACTIONS(2444), 1, + ACTIONS(2357), 1, anon_sym_and, - ACTIONS(2446), 1, + ACTIONS(2359), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2428), 4, + ACTIONS(2351), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2424), 27, + ACTIONS(2349), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95288,24 +90919,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [80503] = 7, - ACTIONS(2438), 1, + [77160] = 7, + ACTIONS(2353), 1, anon_sym_as, - ACTIONS(2442), 1, + ACTIONS(2355), 1, anon_sym_if, - ACTIONS(2444), 1, + ACTIONS(2357), 1, anon_sym_and, - ACTIONS(2446), 1, + ACTIONS(2359), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2469), 4, + ACTIONS(2310), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2467), 27, + ACTIONS(2306), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95333,41 +90964,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [80555] = 13, - ACTIONS(2284), 1, + [77212] = 13, + ACTIONS(2249), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(2294), 1, + ACTIONS(2259), 1, anon_sym_STAR_STAR, - ACTIONS(2298), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2308), 1, + ACTIONS(2273), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2288), 2, + ACTIONS(2253), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2290), 2, + ACTIONS(2255), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2302), 2, + ACTIONS(2267), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1522), 2, + STATE(1506), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2201), 3, + ACTIONS(2053), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2296), 3, + ACTIONS(2261), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2199), 16, + ACTIONS(2051), 16, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -95384,76 +91015,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [80619] = 12, - ACTIONS(2284), 1, - anon_sym_DOT, - ACTIONS(2286), 1, - anon_sym_LPAREN, - ACTIONS(2294), 1, - anon_sym_STAR_STAR, - ACTIONS(2298), 1, - anon_sym_LBRACK, + [77276] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2288), 2, + ACTIONS(2347), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2290), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2302), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1522), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2201), 3, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2296), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2199), 17, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [80681] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1481), 5, - anon_sym_as, - anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1479), 30, + ACTIONS(2345), 30, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -95475,26 +91056,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [80725] = 3, + [77320] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 5, + ACTIONS(2363), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2471), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2361), 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_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -95516,32 +91095,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [80769] = 3, + anon_sym_RBRACE, + sym_type_conversion, + [77364] = 4, + ACTIONS(2357), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2465), 5, + ACTIONS(2296), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2463), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2294), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, @@ -95557,17 +91138,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [80813] = 3, + anon_sym_RBRACE, + [77410] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, + ACTIONS(1393), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 30, + ACTIONS(1391), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95598,24 +91180,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [80857] = 3, + [77454] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1437), 5, + ACTIONS(1379), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1435), 30, + ACTIONS(1377), 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_AT, @@ -95637,19 +91221,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [80901] = 3, + [77498] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1481), 5, + ACTIONS(1379), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1479), 30, + ACTIONS(1377), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95680,45 +91262,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [80945] = 15, - ACTIONS(2284), 1, + [77542] = 15, + ACTIONS(2249), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(2294), 1, + ACTIONS(2259), 1, anon_sym_STAR_STAR, - ACTIONS(2298), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2304), 1, + ACTIONS(2269), 1, anon_sym_PIPE, - ACTIONS(2306), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2308), 1, + ACTIONS(2273), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2288), 2, + ACTIONS(2253), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2290), 2, + ACTIONS(2255), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2302), 2, + ACTIONS(2267), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1522), 2, + STATE(1506), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2197), 3, + ACTIONS(2057), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2296), 3, + ACTIONS(2261), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2195), 14, + ACTIONS(2055), 14, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -95733,24 +91315,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [81013] = 3, + [77610] = 5, + ACTIONS(1371), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1413), 5, + ACTIONS(1381), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1386), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1411), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(1383), 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_in, @@ -95774,156 +91358,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [81057] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2414), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2412), 30, + [77658] = 15, + ACTIONS(2249), 1, anon_sym_DOT, + ACTIONS(2251), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, + ACTIONS(2259), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2263), 1, anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2269), 1, anon_sym_PIPE, + ACTIONS(2271), 1, anon_sym_AMP, + ACTIONS(2273), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [81101] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2418), 5, + ACTIONS(2253), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2416), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(2255), 2, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_LT_LT, + ACTIONS(2267), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [81145] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2481), 5, - anon_sym_STAR, + STATE(1506), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2065), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2479), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2261), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2063), 14, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [81189] = 3, + [77726] = 5, + ACTIONS(2357), 1, + anon_sym_and, + ACTIONS(2359), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1413), 5, + ACTIONS(2302), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1411), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2300), 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_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -95938,77 +91453,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [81233] = 15, - ACTIONS(2284), 1, - anon_sym_DOT, - ACTIONS(2286), 1, - anon_sym_LPAREN, - ACTIONS(2294), 1, - anon_sym_STAR_STAR, - ACTIONS(2298), 1, - anon_sym_LBRACK, - ACTIONS(2304), 1, - anon_sym_PIPE, - ACTIONS(2306), 1, - anon_sym_AMP, - ACTIONS(2308), 1, - anon_sym_CARET, + anon_sym_RBRACE, + [77774] = 5, + ACTIONS(289), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2288), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2290), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2302), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1522), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2205), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2296), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2203), 14, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(346), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(348), 5, anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [81301] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1485), 5, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1483), 30, + ACTIONS(605), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -96030,32 +91497,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [81345] = 7, - ACTIONS(2426), 1, - anon_sym_as, - ACTIONS(2430), 1, - anon_sym_if, - ACTIONS(2432), 1, + [77822] = 6, + ACTIONS(2357), 1, anon_sym_and, - ACTIONS(2434), 1, + ACTIONS(2359), 1, anon_sym_or, + ACTIONS(2365), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2440), 5, + ACTIONS(2323), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2436), 26, + ACTIONS(2318), 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_AT, @@ -96076,25 +91541,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - sym_type_conversion, - [81397] = 3, + [77872] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2485), 5, + ACTIONS(2370), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2483), 30, + ACTIONS(2368), 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_AT, @@ -96116,33 +91582,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [81441] = 3, + [77916] = 7, + ACTIONS(2353), 1, + anon_sym_as, + ACTIONS(2355), 1, + anon_sym_if, + ACTIONS(2357), 1, + anon_sym_and, + ACTIONS(2359), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2489), 5, + ACTIONS(2339), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2487), 30, + ACTIONS(2337), 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_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -96158,18 +91627,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - sym_type_conversion, - [81485] = 3, + [77968] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 5, + ACTIONS(1459), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2491), 30, + ACTIONS(1457), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96200,17 +91668,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [81529] = 3, + [78012] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2497), 5, + ACTIONS(1463), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2495), 30, + ACTIONS(1461), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96241,34 +91709,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [81573] = 6, - ACTIONS(2432), 1, - anon_sym_and, - ACTIONS(2434), 1, - anon_sym_or, - ACTIONS(2499), 1, - anon_sym_as, + [78056] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2457), 5, + ACTIONS(2374), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2452), 27, + ACTIONS(2372), 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_AT, anon_sym_LBRACK, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -96283,19 +91750,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [81623] = 3, + [78100] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2504), 5, + ACTIONS(1463), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2502), 30, + ACTIONS(1461), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96326,17 +91791,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [81667] = 3, + [78144] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2508), 5, + ACTIONS(1379), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2506), 30, + ACTIONS(1377), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96367,17 +91832,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [81711] = 3, + [78188] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2512), 5, + ACTIONS(1379), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2510), 30, + ACTIONS(1377), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96408,33 +91873,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [81755] = 5, - ACTIONS(2432), 1, - anon_sym_and, - ACTIONS(2434), 1, - anon_sym_or, + [78232] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2461), 5, + ACTIONS(1463), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2459), 28, + ACTIONS(1461), 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_AT, anon_sym_LBRACK, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -96449,26 +91914,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [81803] = 3, + [78276] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1481), 5, + ACTIONS(1463), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1479), 30, + ACTIONS(1461), 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_AT, @@ -96490,33 +91955,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [81847] = 4, - ACTIONS(2432), 1, - anon_sym_and, + [78320] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2465), 5, + ACTIONS(2363), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2463), 29, + ACTIONS(2361), 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_AT, anon_sym_LBRACK, anon_sym_not, + anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, @@ -96532,26 +91996,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [81893] = 3, + [78364] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1481), 5, + ACTIONS(2378), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1479), 30, + ACTIONS(2376), 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_AT, @@ -96574,34 +92037,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - sym_type_conversion, - [81937] = 3, + [78408] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1481), 5, + ACTIONS(1386), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1389), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1479), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(1383), 14, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -96610,32 +92063,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1381), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [81981] = 3, + [78456] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2489), 5, + ACTIONS(1459), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2487), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(1457), 30, 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_AT, @@ -96657,26 +92121,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82025] = 3, + [78500] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1485), 5, + ACTIONS(2382), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1483), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2380), 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_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -96698,24 +92160,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82069] = 3, + anon_sym_RBRACE, + sym_type_conversion, + [78544] = 4, + ACTIONS(289), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1413), 5, + ACTIONS(274), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1411), 30, + ACTIONS(272), 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_AT, @@ -96737,26 +92204,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [82113] = 3, + [78590] = 4, + ACTIONS(1371), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1413), 5, + ACTIONS(1369), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1411), 30, + ACTIONS(1364), 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_AT, @@ -96778,201 +92246,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [82157] = 19, - ACTIONS(2207), 1, + [78636] = 19, + ACTIONS(2097), 1, anon_sym_DOT, - ACTIONS(2221), 1, + ACTIONS(2111), 1, anon_sym_LBRACK, - ACTIONS(2318), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2326), 1, + ACTIONS(2229), 1, anon_sym_STAR_STAR, - ACTIONS(2332), 1, + ACTIONS(2235), 1, anon_sym_not, - ACTIONS(2336), 1, + ACTIONS(2239), 1, anon_sym_PIPE, - ACTIONS(2338), 1, + ACTIONS(2241), 1, anon_sym_AMP, - ACTIONS(2340), 1, + ACTIONS(2243), 1, anon_sym_CARET, - ACTIONS(2344), 1, + ACTIONS(2247), 1, anon_sym_is, - STATE(1689), 1, + STATE(1588), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2320), 2, + ACTIONS(2223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2322), 2, + ACTIONS(2225), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2334), 2, + ACTIONS(2237), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2342), 2, + ACTIONS(2245), 2, anon_sym_LT, anon_sym_GT, - STATE(1592), 2, + STATE(1503), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2328), 3, + ACTIONS(2231), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2058), 6, + ACTIONS(1951), 6, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_RBRACK, anon_sym_and, anon_sym_or, - ACTIONS(2324), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [82233] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1430), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1433), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1427), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1425), 16, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [82281] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1455), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1450), 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_AT, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [82325] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1437), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1435), 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, + ACTIONS(2227), 6, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_is, - [82369] = 3, + [78712] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 5, + ACTIONS(2386), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2479), 30, + ACTIONS(2384), 30, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -97003,38 +92344,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82413] = 8, - ACTIONS(2316), 1, - anon_sym_DOT, - ACTIONS(2318), 1, - anon_sym_LPAREN, - ACTIONS(2326), 1, - anon_sym_STAR_STAR, - ACTIONS(2330), 1, - anon_sym_LBRACK, + [78756] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1592), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2243), 4, + ACTIONS(1386), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1389), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2241), 25, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(1383), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -97043,34 +92370,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1381), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82467] = 5, - ACTIONS(285), 1, - anon_sym_COLON_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [78804] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(275), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(270), 5, - anon_sym_as, + ACTIONS(1470), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(268), 27, + ACTIONS(1465), 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_AT, @@ -97092,35 +92426,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82515] = 7, - ACTIONS(2426), 1, - anon_sym_as, - ACTIONS(2430), 1, - anon_sym_if, - ACTIONS(2432), 1, - anon_sym_and, - ACTIONS(2434), 1, - anon_sym_or, + anon_sym_RBRACE, + sym_type_conversion, + [78848] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2469), 5, + ACTIONS(2390), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2467), 26, + ACTIONS(2388), 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_COLON, + anon_sym_if, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -97135,28 +92469,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [82567] = 3, + [78892] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1413), 5, - anon_sym_as, + ACTIONS(274), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1411), 30, + ACTIONS(272), 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_AT, @@ -97178,26 +92508,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82611] = 3, + anon_sym_RBRACE, + sym_type_conversion, + [78936] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1413), 5, - anon_sym_as, + ACTIONS(2394), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1411), 30, + ACTIONS(2392), 30, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -97219,104 +92551,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82655] = 3, + [78980] = 14, + ACTIONS(2249), 1, + anon_sym_DOT, + ACTIONS(2251), 1, + anon_sym_LPAREN, + ACTIONS(2259), 1, + anon_sym_STAR_STAR, + ACTIONS(2263), 1, + anon_sym_LBRACK, + ACTIONS(2271), 1, + anon_sym_AMP, + ACTIONS(2273), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2390), 5, - anon_sym_as, + ACTIONS(2253), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2255), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2267), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1506), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2053), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2388), 30, - sym_string_start, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2261), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2051), 15, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82699] = 8, - ACTIONS(2517), 1, - anon_sym_not, - ACTIONS(2523), 1, - anon_sym_is, - STATE(1245), 1, - aux_sym_comparison_operator_repeat1, + [79046] = 10, + ACTIONS(2249), 1, + anon_sym_DOT, + ACTIONS(2251), 1, + anon_sym_LPAREN, + ACTIONS(2259), 1, + anon_sym_STAR_STAR, + ACTIONS(2263), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2352), 3, + ACTIONS(2253), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2514), 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(2350), 21, - anon_sym_DOT, - anon_sym_LPAREN, + STATE(1506), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2053), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2261), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2051), 21, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, + anon_sym_in, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [82753] = 3, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [79104] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1495), 5, + ACTIONS(2398), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1490), 30, + ACTIONS(2396), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97347,42 +92692,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [82797] = 8, - ACTIONS(2529), 1, - anon_sym_not, - ACTIONS(2535), 1, - anon_sym_is, - STATE(1247), 1, - aux_sym_comparison_operator_repeat1, + [79148] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2532), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2352), 3, - anon_sym_as, + ACTIONS(2402), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2526), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2350), 21, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2400), 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_async, - anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -97393,28 +92727,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [82851] = 3, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [79192] = 8, + ACTIONS(2219), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_LPAREN, + ACTIONS(2229), 1, + anon_sym_STAR_STAR, + ACTIONS(2233), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1444), 5, + STATE(1503), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2132), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2130), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -97432,30 +92779,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [82895] = 3, + [79246] = 4, + ACTIONS(1371), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 5, + ACTIONS(1369), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2471), 30, + ACTIONS(1364), 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_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -97473,30 +92821,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [82939] = 5, - ACTIONS(1399), 1, - anon_sym_COLON_EQ, + [79292] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1394), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1397), 5, - anon_sym_as, + ACTIONS(2378), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 27, + ACTIONS(2376), 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_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -97518,35 +92862,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82987] = 8, - ACTIONS(2316), 1, - anon_sym_DOT, - ACTIONS(2318), 1, - anon_sym_LPAREN, - ACTIONS(2326), 1, - anon_sym_STAR_STAR, - ACTIONS(2330), 1, - anon_sym_LBRACK, + [79336] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1592), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2201), 4, + ACTIONS(2382), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2199), 25, + ACTIONS(2380), 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_AT, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -97564,24 +92903,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [83041] = 3, + [79380] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2465), 5, + ACTIONS(2198), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2463), 30, + ACTIONS(2196), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -97603,26 +92944,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [83085] = 3, + [79424] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(2406), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 30, + ACTIONS(2404), 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_AT, @@ -97644,19 +92985,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [83129] = 3, + [79468] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(2410), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 30, + ACTIONS(2408), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97687,17 +93026,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [83173] = 3, + [79512] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2410), 5, + ACTIONS(2414), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2408), 30, + ACTIONS(2412), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97728,24 +93067,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [83217] = 3, + [79556] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(1393), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 30, + ACTIONS(1391), 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_AT, @@ -97767,19 +93108,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [83261] = 3, + [79600] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(2406), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 30, + ACTIONS(2404), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97810,37 +93149,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [83305] = 7, - ACTIONS(2554), 1, - anon_sym_as, - ACTIONS(2556), 1, - anon_sym_if, - ACTIONS(2558), 1, - anon_sym_and, - ACTIONS(2560), 1, - anon_sym_or, + [79644] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2469), 5, + ACTIONS(2418), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2467), 26, + ACTIONS(2416), 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_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -97855,26 +93190,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [83357] = 3, + [79688] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(2390), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2388), 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_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -97896,45 +93229,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [83401] = 11, - ACTIONS(2316), 1, - anon_sym_DOT, - ACTIONS(2318), 1, - anon_sym_LPAREN, - ACTIONS(2326), 1, - anon_sym_STAR_STAR, - ACTIONS(2330), 1, - anon_sym_LBRACK, + anon_sym_RBRACE, + sym_type_conversion, + [79732] = 5, + ACTIONS(289), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2201), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2320), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2334), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1592), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2328), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2199), 20, + ACTIONS(279), 2, anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(274), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(272), 27, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -97945,24 +93274,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [83461] = 3, + [79780] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2564), 5, + ACTIONS(2414), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 30, + ACTIONS(2412), 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_AT, @@ -97984,91 +93315,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [83505] = 15, - ACTIONS(2316), 1, - anon_sym_DOT, - ACTIONS(2318), 1, - anon_sym_LPAREN, - ACTIONS(2326), 1, - anon_sym_STAR_STAR, - ACTIONS(2330), 1, - anon_sym_LBRACK, - ACTIONS(2336), 1, - anon_sym_PIPE, - ACTIONS(2338), 1, - anon_sym_AMP, - ACTIONS(2340), 1, - anon_sym_CARET, + [79824] = 8, + ACTIONS(2423), 1, + anon_sym_not, + ACTIONS(2429), 1, + anon_sym_is, + STATE(1186), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2239), 2, + ACTIONS(2426), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2320), 2, + ACTIONS(2176), 3, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2322), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2334), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1592), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2328), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2237), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, + ACTIONS(2420), 6, anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_is, - [83573] = 8, - ACTIONS(2316), 1, + ACTIONS(2174), 21, anon_sym_DOT, - ACTIONS(2318), 1, anon_sym_LPAREN, - ACTIONS(2326), 1, - anon_sym_STAR_STAR, - ACTIONS(2330), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1592), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2201), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2199), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, + anon_sym_else, + anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_RBRACK, - anon_sym_not, + anon_sym_LBRACK, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -98079,32 +93361,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [83627] = 3, + [79878] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(1406), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(1401), 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_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -98126,17 +93400,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [83671] = 3, + anon_sym_RBRACE, + sym_type_conversion, + [79922] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1463), 5, + ACTIONS(1451), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1461), 30, + ACTIONS(1446), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -98167,30 +93443,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [83715] = 3, + [79966] = 4, + ACTIONS(289), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(274), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(272), 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -98208,26 +93485,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [83759] = 3, + [80012] = 5, + ACTIONS(1371), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(1366), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1369), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(1364), 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -98249,32 +93528,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [83803] = 5, - ACTIONS(1399), 1, - anon_sym_COLON_EQ, + [80060] = 8, + ACTIONS(2219), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_LPAREN, + ACTIONS(2229), 1, + anon_sym_STAR_STAR, + ACTIONS(2233), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1425), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1430), 5, - anon_sym_as, + STATE(1503), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2053), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1427), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2051), 25, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -98292,28 +93574,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [83851] = 5, - ACTIONS(285), 1, - anon_sym_COLON_EQ, + [80114] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(342), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(344), 5, - anon_sym_as, + ACTIONS(2386), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(603), 27, + ACTIONS(2384), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -98335,37 +93613,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [83899] = 3, + anon_sym_RBRACE, + sym_type_conversion, + [80158] = 11, + ACTIONS(2219), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_LPAREN, + ACTIONS(2229), 1, + anon_sym_STAR_STAR, + ACTIONS(2233), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2508), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(2053), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2506), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2223), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2237), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1503), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2231), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2051), 20, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -98376,26 +93664,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [83943] = 3, + [80218] = 15, + ACTIONS(2219), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_LPAREN, + ACTIONS(2229), 1, + anon_sym_STAR_STAR, + ACTIONS(2233), 1, + anon_sym_LBRACK, + ACTIONS(2239), 1, + anon_sym_PIPE, + ACTIONS(2241), 1, + anon_sym_AMP, + ACTIONS(2243), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2061), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2223), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2225), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2237), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1503), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2231), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2059), 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [80286] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2564), 5, + ACTIONS(1965), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(1951), 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_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -98417,26 +93756,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [83987] = 3, + anon_sym_RBRACE, + sym_type_conversion, + [80330] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1463), 5, + ACTIONS(1369), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1461), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(1364), 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_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -98458,42 +93797,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84031] = 8, - ACTIONS(2569), 1, - anon_sym_not, - ACTIONS(2575), 1, - anon_sym_is, - STATE(1273), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_RBRACE, + sym_type_conversion, + [80374] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2352), 3, + ACTIONS(2434), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2566), 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(2350), 21, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2432), 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_AT, anon_sym_LBRACK, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -98504,117 +93833,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [84085] = 10, - ACTIONS(2316), 1, - anon_sym_DOT, - ACTIONS(2318), 1, - anon_sym_LPAREN, - ACTIONS(2326), 1, - anon_sym_STAR_STAR, - ACTIONS(2330), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2201), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2320), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1592), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2328), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2199), 22, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84143] = 14, - ACTIONS(2316), 1, - anon_sym_DOT, - ACTIONS(2318), 1, - anon_sym_LPAREN, - ACTIONS(2326), 1, - anon_sym_STAR_STAR, - ACTIONS(2330), 1, - anon_sym_LBRACK, - ACTIONS(2338), 1, - anon_sym_AMP, - ACTIONS(2340), 1, - anon_sym_CARET, + anon_sym_RBRACE, + [80418] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2201), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2320), 2, + ACTIONS(2438), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2322), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2334), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1592), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2328), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2199), 16, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2436), 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_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84209] = 3, + anon_sym_RBRACE, + [80462] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2422), 5, + ACTIONS(2418), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 30, + ACTIONS(2416), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -98645,29 +93922,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [84253] = 3, + [80506] = 8, + ACTIONS(2219), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_LPAREN, + ACTIONS(2229), 1, + anon_sym_STAR_STAR, + ACTIONS(2233), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 5, - anon_sym_as, + STATE(1503), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2053), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2051), 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_STAR_STAR, anon_sym_AT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -98685,18 +93968,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [84297] = 3, + [80560] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2072), 5, + ACTIONS(2402), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2058), 30, + ACTIONS(2400), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -98727,24 +94009,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [84341] = 3, + [80604] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2580), 5, + ACTIONS(2394), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2578), 30, + ACTIONS(2392), 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_AT, @@ -98767,26 +94050,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - sym_type_conversion, - [84385] = 4, - ACTIONS(1452), 1, - anon_sym_COMMA, + [80648] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1455), 5, + ACTIONS(274), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1450), 29, + ACTIONS(272), 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_AT, @@ -98808,44 +94091,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [84431] = 13, - ACTIONS(2316), 1, + [80692] = 10, + ACTIONS(2219), 1, anon_sym_DOT, - ACTIONS(2318), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2326), 1, + ACTIONS(2229), 1, anon_sym_STAR_STAR, - ACTIONS(2330), 1, + ACTIONS(2233), 1, anon_sym_LBRACK, - ACTIONS(2340), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2201), 2, + ACTIONS(2053), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2320), 2, + ACTIONS(2223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2322), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2334), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1592), 2, + STATE(1503), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2328), 3, + ACTIONS(2231), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2199), 17, + ACTIONS(2051), 22, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, @@ -98853,33 +94127,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84495] = 4, - ACTIONS(1394), 1, - anon_sym_COMMA, + [80750] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 5, + ACTIONS(2398), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 29, + ACTIONS(2396), 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_AT, @@ -98901,40 +94180,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [84541] = 12, - ACTIONS(2316), 1, + [80794] = 14, + ACTIONS(2219), 1, anon_sym_DOT, - ACTIONS(2318), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2326), 1, + ACTIONS(2229), 1, anon_sym_STAR_STAR, - ACTIONS(2330), 1, + ACTIONS(2233), 1, anon_sym_LBRACK, + ACTIONS(2241), 1, + anon_sym_AMP, + ACTIONS(2243), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2201), 2, + ACTIONS(2053), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2320), 2, + ACTIONS(2223), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2322), 2, + ACTIONS(2225), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2334), 2, + ACTIONS(2237), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1592), 2, + STATE(1503), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2328), 3, + ACTIONS(2231), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2199), 18, + ACTIONS(2051), 16, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -98945,38 +94226,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84603] = 3, + [80860] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2390), 5, + ACTIONS(2370), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2388), 30, - sym_string_start, + ACTIONS(2368), 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -98994,25 +94272,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84647] = 4, - ACTIONS(1492), 1, - anon_sym_COMMA, + anon_sym_RBRACE, + [80904] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1495), 5, + ACTIONS(2374), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1490), 29, + ACTIONS(2372), 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_AT, @@ -99035,104 +94314,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - sym_type_conversion, - [84693] = 5, + [80948] = 13, + ACTIONS(2219), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_LPAREN, + ACTIONS(2229), 1, + anon_sym_STAR_STAR, + ACTIONS(2233), 1, + anon_sym_LBRACK, + ACTIONS(2243), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(344), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(347), 3, - anon_sym_EQ, + ACTIONS(2053), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(603), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2223), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2225), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, + anon_sym_LT_LT, + ACTIONS(2237), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1503), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2231), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(342), 16, + ACTIONS(2051), 17, 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_PIPE, + anon_sym_AMP, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [84741] = 5, - ACTIONS(1399), 1, - anon_sym_COLON_EQ, + [81012] = 12, + ACTIONS(2219), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_LPAREN, + ACTIONS(2229), 1, + anon_sym_STAR_STAR, + ACTIONS(2233), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1394), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1397), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2053), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2223), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2225), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2237), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1503), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2231), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2051), 18, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84789] = 3, + [81074] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2504), 5, + ACTIONS(2335), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2502), 30, + ACTIONS(2333), 30, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -99163,65 +94456,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84833] = 3, + [81118] = 19, + ACTIONS(1949), 1, + anon_sym_LPAREN, + ACTIONS(1959), 1, + anon_sym_STAR_STAR, + ACTIONS(1967), 1, + anon_sym_not, + ACTIONS(1971), 1, + anon_sym_PIPE, + ACTIONS(1973), 1, + anon_sym_AMP, + ACTIONS(1975), 1, + anon_sym_CARET, + ACTIONS(1979), 1, + anon_sym_is, + ACTIONS(2015), 1, + anon_sym_DOT, + ACTIONS(2029), 1, + anon_sym_LBRACK, + STATE(1574), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(270), 5, + ACTIONS(1953), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1955), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1969), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1977), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(268), 30, - anon_sym_DOT, - anon_sym_LPAREN, + STATE(1133), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1961), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1951), 6, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, + anon_sym_RBRACE, + ACTIONS(1957), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [84877] = 3, + [81194] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2584), 5, + ACTIONS(2386), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2582), 30, + ACTIONS(2384), 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_AT, @@ -99244,27 +94554,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - sym_type_conversion, - [84921] = 3, + [81238] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2497), 5, + ACTIONS(2390), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2495), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2388), 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_AT, @@ -99286,84 +94594,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84965] = 15, - ACTIONS(2316), 1, - anon_sym_DOT, - ACTIONS(2318), 1, - anon_sym_LPAREN, - ACTIONS(2326), 1, - anon_sym_STAR_STAR, - ACTIONS(2330), 1, - anon_sym_LBRACK, - ACTIONS(2336), 1, - anon_sym_PIPE, - ACTIONS(2338), 1, - anon_sym_AMP, - ACTIONS(2340), 1, - anon_sym_CARET, + anon_sym_RBRACE, + [81282] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2320), 2, + ACTIONS(2406), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2322), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2334), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1592), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2328), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2195), 15, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2404), 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_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85033] = 4, - ACTIONS(1399), 1, - anon_sym_COLON_EQ, + anon_sym_RBRACE, + [81326] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 5, + ACTIONS(2414), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 29, + ACTIONS(2412), 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -99381,31 +94676,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85079] = 4, - ACTIONS(285), 1, - anon_sym_COLON_EQ, + anon_sym_RBRACE, + [81370] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(270), 5, - anon_sym_as, + ACTIONS(2374), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(268), 29, + ACTIONS(2372), 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -99423,21 +94716,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85125] = 4, - ACTIONS(1441), 1, - anon_sym_COMMA, + anon_sym_RBRACE, + sym_type_conversion, + [81414] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1444), 5, + ACTIONS(2370), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 29, + ACTIONS(2368), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -99465,17 +94759,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [85171] = 3, + [81458] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2584), 5, + ACTIONS(2410), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2582), 30, + ACTIONS(2408), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -99506,29 +94800,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [85215] = 3, + [81502] = 8, + ACTIONS(2249), 1, + anon_sym_DOT, + ACTIONS(2251), 1, + anon_sym_LPAREN, + ACTIONS(2259), 1, + anon_sym_STAR_STAR, + ACTIONS(2263), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(270), 5, - anon_sym_as, + STATE(1506), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2053), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(268), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2051), 24, + 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_AT, - anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -99546,51 +94846,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [85259] = 15, - ACTIONS(2316), 1, + [81556] = 15, + ACTIONS(2249), 1, anon_sym_DOT, - ACTIONS(2318), 1, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(2326), 1, + ACTIONS(2259), 1, anon_sym_STAR_STAR, - ACTIONS(2330), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2336), 1, + ACTIONS(2269), 1, anon_sym_PIPE, - ACTIONS(2338), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2340), 1, + ACTIONS(2273), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2205), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2320), 2, + ACTIONS(2253), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2322), 2, + ACTIONS(2255), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2334), 2, + ACTIONS(2267), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1592), 2, + STATE(1506), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2328), 3, + ACTIONS(2061), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2261), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2203), 15, + ACTIONS(2059), 14, + anon_sym_RPAREN, 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, @@ -99600,37 +94899,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85327] = 3, + [81624] = 11, + ACTIONS(2249), 1, + anon_sym_DOT, + ACTIONS(2251), 1, + anon_sym_LPAREN, + ACTIONS(2259), 1, + anon_sym_STAR_STAR, + ACTIONS(2263), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 5, + ACTIONS(2253), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2267), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1506), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2053), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2491), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2261), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2051), 19, + 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_AT, - anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -99641,30 +94948,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85371] = 3, + [81684] = 8, + ACTIONS(2249), 1, + anon_sym_DOT, + ACTIONS(2251), 1, + anon_sym_LPAREN, + ACTIONS(2259), 1, + anon_sym_STAR_STAR, + ACTIONS(2263), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2422), 5, + STATE(1506), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2053), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2051), 24, + 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_AT, - anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -99682,25 +94994,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85415] = 3, + [81738] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2580), 5, - anon_sym_as, + ACTIONS(2394), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2578), 30, + ACTIONS(2392), 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_AT, @@ -99723,66 +95034,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [85459] = 3, + sym_type_conversion, + [81782] = 15, + ACTIONS(2219), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_LPAREN, + ACTIONS(2229), 1, + anon_sym_STAR_STAR, + ACTIONS(2233), 1, + anon_sym_LBRACK, + ACTIONS(2239), 1, + anon_sym_PIPE, + ACTIONS(2241), 1, + anon_sym_AMP, + ACTIONS(2243), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2508), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2506), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(2223), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2225), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2237), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1503), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2231), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2055), 15, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [85503] = 3, + [81850] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2450), 5, - anon_sym_as, + ACTIONS(1474), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2448), 30, + ACTIONS(1472), 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_STAR_STAR, anon_sym_AT, @@ -99804,27 +95129,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [85547] = 3, + [81894] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2450), 5, + ACTIONS(2402), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2448), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2400), 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_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -99846,26 +95168,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85591] = 3, + anon_sym_RBRACE, + sym_type_conversion, + [81938] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, + ACTIONS(2418), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2416), 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_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -99887,25 +95209,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85635] = 3, + anon_sym_RBRACE, + sym_type_conversion, + [81982] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2504), 5, - anon_sym_as, + ACTIONS(2198), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2502), 30, + ACTIONS(2196), 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_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -99927,73 +95252,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [85679] = 3, + [82026] = 15, + ACTIONS(2219), 1, + anon_sym_DOT, + ACTIONS(2221), 1, + anon_sym_LPAREN, + ACTIONS(2229), 1, + anon_sym_STAR_STAR, + ACTIONS(2233), 1, + anon_sym_LBRACK, + ACTIONS(2239), 1, + anon_sym_PIPE, + ACTIONS(2241), 1, + anon_sym_AMP, + ACTIONS(2243), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2580), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(2065), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2578), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2223), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2225), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2237), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1503), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2231), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2063), 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_AT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85723] = 3, + [82094] = 8, + ACTIONS(2443), 1, + anon_sym_not, + ACTIONS(2449), 1, + anon_sym_is, + STATE(1231), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1463), 5, + ACTIONS(2446), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2176), 3, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1461), 30, + ACTIONS(2440), 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(2174), 21, 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_AT, anon_sym_LBRACK, - anon_sym_not, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -100004,25 +95351,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, + [82148] = 8, + ACTIONS(2455), 1, + anon_sym_not, + ACTIONS(2461), 1, anon_sym_is, - [85767] = 4, - STATE(1273), 1, + STATE(1232), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2368), 5, + ACTIONS(2458), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2176), 3, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2366), 29, + ACTIONS(2452), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2174), 21, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100031,11 +95384,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -100046,32 +95397,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [85813] = 3, + [82202] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(270), 5, + ACTIONS(1474), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(268), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(1472), 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_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -100093,33 +95436,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85857] = 3, + anon_sym_RBRACE, + sym_type_conversion, + [82246] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2584), 5, + ACTIONS(348), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(351), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2582), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(605), 14, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -100128,30 +95464,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(346), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85901] = 5, + [82294] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(344), 2, + ACTIONS(2438), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(347), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(603), 14, + ACTIONS(2436), 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_AT, anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -100160,16 +95514,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(342), 16, - 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -100177,27 +95521,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [85949] = 4, - STATE(1245), 1, - aux_sym_comparison_operator_repeat1, + sym_type_conversion, + [82338] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2368), 5, + ACTIONS(2331), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2366), 29, + ACTIONS(2329), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -100219,28 +95563,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85995] = 5, - ACTIONS(285), 1, - anon_sym_COLON_EQ, + [82382] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(275), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(270), 5, - anon_sym_as, + ACTIONS(2434), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(268), 27, + ACTIONS(2432), 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_AT, @@ -100262,31 +95602,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86043] = 4, - STATE(1247), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_RBRACE, + sym_type_conversion, + [82426] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2368), 5, + ACTIONS(1470), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2366), 29, + ACTIONS(1465), 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -100304,82 +95644,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86089] = 19, - ACTIONS(2056), 1, + anon_sym_RBRACE, + [82470] = 19, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2154), 1, + anon_sym_LBRACK, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(2066), 1, + ACTIONS(2259), 1, anon_sym_STAR_STAR, - ACTIONS(2074), 1, + ACTIONS(2265), 1, anon_sym_not, - ACTIONS(2078), 1, + ACTIONS(2269), 1, anon_sym_PIPE, - ACTIONS(2080), 1, + ACTIONS(2271), 1, anon_sym_AMP, - ACTIONS(2082), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2086), 1, + ACTIONS(2277), 1, anon_sym_is, - ACTIONS(2122), 1, - anon_sym_DOT, - ACTIONS(2136), 1, - anon_sym_LBRACK, - STATE(1637), 1, + STATE(1591), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2060), 2, + ACTIONS(2253), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2062), 2, + ACTIONS(2255), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2076), 2, + ACTIONS(2267), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2084), 2, + ACTIONS(2275), 2, anon_sym_LT, anon_sym_GT, - STATE(1261), 2, + STATE(1506), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2068), 3, + ACTIONS(2261), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2058), 6, + ACTIONS(1951), 6, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_and, anon_sym_or, - anon_sym_RBRACE, - ACTIONS(2064), 6, + ACTIONS(2257), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86165] = 3, + [82546] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2564), 5, + ACTIONS(1381), 3, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + ACTIONS(1386), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 30, + ACTIONS(1383), 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_AT, @@ -100402,23 +95744,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [86209] = 3, + [82592] = 5, + ACTIONS(289), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2497), 5, + ACTIONS(279), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(274), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2495), 30, + ACTIONS(272), 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, @@ -100442,25 +95787,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [86253] = 5, + [82640] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 2, + ACTIONS(2296), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(1433), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1427), 14, + ACTIONS(2294), 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_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -100469,47 +95822,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1425), 16, - 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [86301] = 3, + [82684] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2348), 5, - anon_sym_as, + ACTIONS(2316), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2346), 30, - sym_string_start, + ACTIONS(2314), 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_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -100527,17 +95869,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86345] = 3, + [82728] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 5, + ACTIONS(1451), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2491), 30, + ACTIONS(1446), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -100568,26 +95910,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [86389] = 3, + [82772] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2390), 5, + ACTIONS(1406), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2388), 30, - sym_string_start, + ACTIONS(1401), 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_AT, @@ -100609,29 +95950,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86433] = 3, + anon_sym_RBRACE, + [82816] = 8, + ACTIONS(2249), 1, + anon_sym_DOT, + ACTIONS(2251), 1, + anon_sym_LPAREN, + ACTIONS(2259), 1, + anon_sym_STAR_STAR, + ACTIONS(2263), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1444), 5, - anon_sym_as, + STATE(1506), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2132), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2130), 24, + 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_AT, - anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -100649,26 +95997,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [86477] = 3, + [82870] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, - anon_sym_as, + ACTIONS(2378), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 30, + ACTIONS(2376), 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_AT, @@ -100691,23 +96037,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [86521] = 3, + sym_type_conversion, + [82914] = 4, + STATE(1232), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(2172), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 30, + ACTIONS(2170), 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, @@ -100731,20 +96080,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [86565] = 3, + [82960] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2489), 5, + ACTIONS(1474), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2487), 30, + ACTIONS(1472), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -100772,33 +96121,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [86609] = 3, + [83004] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2485), 5, - anon_sym_as, + ACTIONS(348), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(351), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2483), 30, + ACTIONS(605), 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_AT, anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -100807,6 +96147,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(346), 16, + 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -100814,17 +96164,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [86653] = 3, + [83052] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1495), 5, + ACTIONS(2316), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1490), 30, + ACTIONS(2314), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -100855,26 +96205,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [86697] = 3, + [83096] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2072), 5, + ACTIONS(2296), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2058), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2294), 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_AT, @@ -100896,37 +96245,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86741] = 7, - ACTIONS(2554), 1, - anon_sym_as, - ACTIONS(2556), 1, - anon_sym_if, - ACTIONS(2558), 1, - anon_sym_and, - ACTIONS(2560), 1, - anon_sym_or, + anon_sym_RBRACE, + [83140] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2428), 5, + ACTIONS(2410), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2424), 26, + ACTIONS(2408), 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_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -100941,17 +96287,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86793] = 3, + [83184] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2410), 5, + ACTIONS(2331), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2408), 30, + ACTIONS(2329), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -100982,26 +96328,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [86837] = 3, + [83228] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2512), 5, + ACTIONS(2335), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2510), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2333), 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_AT, @@ -101023,26 +96368,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86881] = 3, + anon_sym_RBRACE, + [83272] = 4, + STATE(1186), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1444), 5, + ACTIONS(2172), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2170), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -101064,17 +96411,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86925] = 3, + [83318] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(2343), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 30, + ACTIONS(2341), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101105,29 +96452,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [86969] = 3, + [83362] = 4, + STATE(1231), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(2172), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 30, + ACTIONS(2170), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -101145,18 +96494,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [87013] = 3, + [83408] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1495), 5, + ACTIONS(1965), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1490), 30, + ACTIONS(1951), 30, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -101187,17 +96535,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87057] = 3, + [83452] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 5, + ACTIONS(2327), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2479), 30, + ACTIONS(2325), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101228,17 +96576,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [87101] = 3, + [83496] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1455), 5, + ACTIONS(1369), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1450), 30, + ACTIONS(1364), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101269,17 +96617,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [87145] = 3, + [83540] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2418), 5, + ACTIONS(1965), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2416), 30, + ACTIONS(1951), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101310,17 +96658,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [87189] = 3, + [83584] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2414), 5, + ACTIONS(2347), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2412), 30, + ACTIONS(2345), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101351,20 +96699,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [87233] = 3, + [83628] = 4, + ACTIONS(1467), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 5, + ACTIONS(1470), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 30, + ACTIONS(1465), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -101392,32 +96741,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [87277] = 3, + [83674] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2465), 5, - anon_sym_as, + ACTIONS(1386), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1389), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2463), 30, + ACTIONS(1383), 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_AT, anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -101426,6 +96767,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1381), 16, + 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -101433,20 +96784,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [87321] = 3, + [83722] = 4, + ACTIONS(1366), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2072), 5, + ACTIONS(1369), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2058), 30, + ACTIONS(1364), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -101474,17 +96826,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_RBRACE, sym_type_conversion, - [87365] = 3, + [83768] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 5, + ACTIONS(2343), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 30, + ACTIONS(2341), 30, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -101515,29 +96867,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87409] = 3, + [83812] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, + ACTIONS(2198), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 30, + ACTIONS(2196), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -101555,26 +96908,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [87453] = 3, + [83856] = 4, + ACTIONS(1403), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 5, - anon_sym_as, + ACTIONS(1406), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2471), 30, + ACTIONS(1401), 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_AT, @@ -101597,37 +96949,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, anon_sym_RBRACE, - [87497] = 7, - ACTIONS(2554), 1, - anon_sym_as, - ACTIONS(2556), 1, - anon_sym_if, - ACTIONS(2558), 1, - anon_sym_and, - ACTIONS(2560), 1, - anon_sym_or, + sym_type_conversion, + [83902] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2440), 5, + ACTIONS(348), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(351), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2436), 26, - sym__newline, - anon_sym_SEMI, + ACTIONS(605), 14, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_not, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -101636,42 +96976,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(346), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87549] = 6, - ACTIONS(2558), 1, - anon_sym_and, - ACTIONS(2560), 1, - anon_sym_or, - ACTIONS(2586), 1, - anon_sym_as, + anon_sym_RBRACE, + sym_type_conversion, + [83950] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2457), 5, + ACTIONS(2202), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2452), 27, - sym__newline, - anon_sym_SEMI, + ACTIONS(2200), 30, + sym_string_start, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -101686,17 +97034,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87599] = 3, + [83994] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2485), 5, + ACTIONS(1369), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2483), 30, + ACTIONS(1364), 30, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -101727,35 +97075,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87643] = 5, - ACTIONS(2558), 1, - anon_sym_and, - ACTIONS(2560), 1, - anon_sym_or, + [84038] = 8, + ACTIONS(2083), 1, + anon_sym_not, + ACTIONS(2095), 1, + anon_sym_is, + STATE(1186), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2461), 5, + ACTIONS(2093), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2172), 3, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2459), 28, - sym__newline, - anon_sym_SEMI, + ACTIONS(2075), 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(2170), 21, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, + anon_sym_COLON, + anon_sym_else, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -101764,38 +97121,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [87691] = 5, - ACTIONS(1399), 1, - anon_sym_COLON_EQ, + [84092] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1425), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1430), 5, + ACTIONS(2363), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1427), 27, + ACTIONS(2361), 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -101813,19 +97161,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87739] = 4, - ACTIONS(2558), 1, - anon_sym_and, + anon_sym_RBRACE, + [84136] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2465), 5, + ACTIONS(2438), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2463), 29, + ACTIONS(2436), 30, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -101840,6 +97187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_not, + anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, @@ -101855,26 +97203,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87785] = 3, + [84180] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2348), 5, + ACTIONS(2434), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2346), 30, - sym_string_start, + ACTIONS(2432), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -101896,25 +97244,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87829] = 3, + [84224] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2512), 5, - anon_sym_as, + ACTIONS(1451), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2510), 30, + ACTIONS(1446), 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_STAR_STAR, anon_sym_AT, @@ -101936,43 +97285,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [87873] = 8, - ACTIONS(2181), 1, - anon_sym_not, - ACTIONS(2193), 1, - anon_sym_is, - STATE(1245), 1, - aux_sym_comparison_operator_repeat1, + [84268] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2191), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2368), 3, + ACTIONS(1406), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2173), 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(2366), 21, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1401), 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_else, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -101983,32 +97320,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [87927] = 5, - ACTIONS(285), 1, - anon_sym_COLON_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [84312] = 4, + ACTIONS(1448), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(342), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(344), 5, - anon_sym_as, + ACTIONS(1451), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(603), 27, + ACTIONS(1446), 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -102026,24 +97366,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87975] = 5, + anon_sym_RBRACE, + sym_type_conversion, + [84358] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(344), 2, + ACTIONS(2398), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(347), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(603), 14, + ACTIONS(2396), 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_AT, anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -102052,41 +97402,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(342), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88023] = 3, + anon_sym_RBRACE, + [84402] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2348), 5, + ACTIONS(274), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2346), 30, - sym_string_start, + ACTIONS(272), 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, @@ -102110,41 +97449,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88067] = 8, - ACTIONS(2592), 1, - anon_sym_not, - ACTIONS(2598), 1, - anon_sym_is, - STATE(1359), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_RBRACE, + [84446] = 7, + ACTIONS(2464), 1, + anon_sym_as, + ACTIONS(2466), 1, + anon_sym_if, + ACTIONS(2468), 1, + anon_sym_and, + ACTIONS(2470), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2352), 2, + ACTIONS(2351), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2595), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2589), 6, + ACTIONS(2349), 26, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2350), 21, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_is, + [84498] = 5, + ACTIONS(1371), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1366), 2, + anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(1369), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1364), 27, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -102155,29 +97532,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [88120] = 3, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [84546] = 5, + ACTIONS(1371), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 5, + ACTIONS(1381), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1386), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2479), 29, + ACTIONS(1383), 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_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -102195,23 +97581,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88163] = 3, + [84594] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(2382), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(2380), 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, @@ -102235,24 +97621,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88206] = 3, + anon_sym_RBRACE, + [84638] = 5, + ACTIONS(289), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2422), 5, + ACTIONS(346), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(348), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 29, + ACTIONS(605), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -102275,32 +97665,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88249] = 3, + [84686] = 7, + ACTIONS(2464), 1, + anon_sym_as, + ACTIONS(2466), 1, + anon_sym_if, + ACTIONS(2468), 1, + anon_sym_and, + ACTIONS(2470), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, - anon_sym_as, + ACTIONS(2339), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(2337), 26, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -102315,17 +97710,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88292] = 3, + [84738] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2410), 5, + ACTIONS(2202), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2408), 29, + ACTIONS(2200), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102355,32 +97751,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88335] = 3, + [84782] = 6, + ACTIONS(2468), 1, + anon_sym_and, + ACTIONS(2470), 1, + anon_sym_or, + ACTIONS(2472), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2564), 5, - anon_sym_as, + ACTIONS(2323), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 29, + ACTIONS(2318), 27, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -102395,32 +97795,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88378] = 3, + [84832] = 5, + ACTIONS(2468), 1, + anon_sym_and, + ACTIONS(2470), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1455), 5, + ACTIONS(2302), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1450), 29, + ACTIONS(2300), 28, + 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_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -102435,31 +97838,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88421] = 3, + [84880] = 4, + ACTIONS(2468), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, - anon_sym_as, + ACTIONS(2296), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(2294), 29, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, @@ -102475,25 +97880,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88464] = 3, + [84926] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, - anon_sym_as, + ACTIONS(2202), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 29, + ACTIONS(2200), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -102515,25 +97921,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88507] = 3, + [84970] = 4, + ACTIONS(1371), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1495), 5, - anon_sym_as, + ACTIONS(1369), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1490), 29, + ACTIONS(1364), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -102555,25 +97963,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88550] = 3, + [85016] = 4, + ACTIONS(289), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1444), 5, - anon_sym_as, + ACTIONS(274), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 29, + ACTIONS(272), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -102595,25 +98005,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88593] = 3, + [85062] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2465), 5, - anon_sym_as, + ACTIONS(1470), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2463), 29, + ACTIONS(1465), 30, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -102635,32 +98046,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88636] = 3, + [85106] = 7, + ACTIONS(2464), 1, + anon_sym_as, + ACTIONS(2466), 1, + anon_sym_if, + ACTIONS(2468), 1, + anon_sym_and, + ACTIONS(2470), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2422), 5, - anon_sym_as, + ACTIONS(2310), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 29, + ACTIONS(2306), 26, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -102675,20 +98091,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88679] = 3, + [85158] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 5, + ACTIONS(2434), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2471), 29, + ACTIONS(2432), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -102698,6 +98113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -102715,31 +98131,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88722] = 5, - ACTIONS(285), 1, - anon_sym_COLON_EQ, - ACTIONS(668), 1, - anon_sym_EQ, + [85201] = 4, + STATE(1398), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(270), 4, + ACTIONS(2172), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(268), 28, + ACTIONS(2170), 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_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -102757,33 +98172,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88769] = 5, - ACTIONS(1399), 1, - anon_sym_COLON_EQ, - ACTIONS(2314), 1, - anon_sym_EQ, + [85246] = 4, + ACTIONS(2475), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 4, + ACTIONS(2296), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 28, + ACTIONS(2294), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, @@ -102799,17 +98213,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88816] = 3, + [85291] = 5, + ACTIONS(2475), 1, + anon_sym_and, + ACTIONS(2477), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2580), 5, + ACTIONS(2302), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2578), 29, + ACTIONS(2300), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102823,8 +98241,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -102839,25 +98255,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88859] = 3, + [85338] = 4, + ACTIONS(1371), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1495), 5, + ACTIONS(1369), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1490), 29, + ACTIONS(1364), 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_AT, @@ -102879,32 +98296,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88902] = 3, + [85383] = 6, + ACTIONS(2475), 1, + anon_sym_and, + ACTIONS(2477), 1, + anon_sym_or, + ACTIONS(2479), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1444), 5, + ACTIONS(2323), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 29, + ACTIONS(2318), 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_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -102919,25 +98339,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88945] = 3, + [85432] = 4, + ACTIONS(289), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2512), 5, - anon_sym_as, + ACTIONS(274), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2510), 29, + ACTIONS(272), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -102959,17 +98380,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88988] = 3, + [85477] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2504), 5, + ACTIONS(1470), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2502), 29, + ACTIONS(1465), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102999,23 +98420,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89031] = 3, + [85520] = 7, + ACTIONS(2475), 1, + anon_sym_and, + ACTIONS(2477), 1, + anon_sym_or, + ACTIONS(2482), 1, + anon_sym_as, + ACTIONS(2484), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2497), 5, - anon_sym_as, + ACTIONS(2351), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2495), 29, + ACTIONS(2349), 26, 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, @@ -103023,8 +98450,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -103039,32 +98464,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89074] = 3, + [85571] = 7, + ACTIONS(2475), 1, + anon_sym_and, + ACTIONS(2477), 1, + anon_sym_or, + ACTIONS(2482), 1, + anon_sym_as, + ACTIONS(2484), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1463), 5, - anon_sym_as, + ACTIONS(2339), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1461), 29, + ACTIONS(2337), 26, 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [85622] = 7, + ACTIONS(2486), 1, + anon_sym_as, + ACTIONS(2488), 1, + anon_sym_if, + ACTIONS(2490), 1, anon_sym_and, + ACTIONS(2492), 1, anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2339), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2337), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -103079,29 +98552,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89117] = 3, + [85673] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 5, + ACTIONS(1381), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1386), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2491), 29, + ACTIONS(1383), 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_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -103119,32 +98593,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89160] = 3, + [85718] = 6, + ACTIONS(2490), 1, + anon_sym_and, + ACTIONS(2492), 1, + anon_sym_or, + ACTIONS(2494), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1437), 5, - anon_sym_as, + ACTIONS(2323), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1435), 29, + ACTIONS(2318), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -103159,17 +98636,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89203] = 3, + [85767] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 5, + ACTIONS(1406), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 29, + ACTIONS(1401), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103199,19 +98676,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89246] = 3, + [85810] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1485), 5, + ACTIONS(1451), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1483), 29, + ACTIONS(1446), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -103221,7 +98699,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -103239,29 +98716,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89289] = 3, + [85853] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1481), 5, - anon_sym_as, + ACTIONS(1379), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1479), 29, + ACTIONS(1377), 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -103279,32 +98756,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89332] = 3, + [85896] = 5, + ACTIONS(2490), 1, + anon_sym_and, + ACTIONS(2492), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1481), 5, - anon_sym_as, + ACTIONS(2302), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1479), 29, + ACTIONS(2300), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -103319,31 +98798,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89375] = 3, + [85943] = 4, + ACTIONS(2490), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1413), 5, - anon_sym_as, + ACTIONS(2296), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1411), 29, + ACTIONS(2294), 28, 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, @@ -103359,29 +98839,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89418] = 3, + [85988] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1413), 5, - anon_sym_as, + ACTIONS(1379), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1411), 29, + ACTIONS(1377), 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -103399,17 +98879,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89461] = 3, + [86031] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2489), 5, + ACTIONS(1369), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2487), 29, + ACTIONS(1364), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103439,20 +98919,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89504] = 3, + [86074] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2485), 5, + ACTIONS(2438), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2483), 29, + ACTIONS(2436), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -103462,6 +98941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -103479,25 +98959,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89547] = 3, + [86117] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2508), 5, - anon_sym_as, + ACTIONS(1463), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2506), 29, + ACTIONS(1461), 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_AT, @@ -103519,25 +98999,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89590] = 3, + [86160] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2584), 5, - anon_sym_as, + ACTIONS(1463), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2582), 29, + ACTIONS(1461), 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_AT, @@ -103559,26 +99039,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89633] = 4, + [86203] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1441), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1444), 5, - anon_sym_as, + ACTIONS(1459), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 27, + ACTIONS(1457), 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_AT, @@ -103600,36 +99079,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89678] = 7, - ACTIONS(2601), 1, - anon_sym_as, - ACTIONS(2603), 1, - anon_sym_if, - ACTIONS(2605), 1, - anon_sym_and, - ACTIONS(2607), 1, - anon_sym_or, + [86246] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2469), 4, + ACTIONS(1965), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2467), 26, + ACTIONS(1951), 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -103644,20 +99119,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89729] = 3, + [86289] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1455), 5, + ACTIONS(1467), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1470), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1450), 29, + ACTIONS(1465), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -103666,7 +99143,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -103684,23 +99160,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89772] = 3, + [86334] = 7, + ACTIONS(2486), 1, + anon_sym_as, + ACTIONS(2488), 1, + anon_sym_if, + ACTIONS(2490), 1, + anon_sym_and, + ACTIONS(2492), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1485), 5, + ACTIONS(2310), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1483), 29, + ACTIONS(2306), 25, 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, @@ -103708,8 +99190,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -103724,26 +99204,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89815] = 4, + [86385] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1425), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1430), 5, + ACTIONS(1366), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1369), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1427), 27, + ACTIONS(1364), 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_AT, @@ -103765,35 +99245,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89860] = 7, - ACTIONS(2601), 1, + [86430] = 7, + ACTIONS(2486), 1, anon_sym_as, - ACTIONS(2603), 1, + ACTIONS(2488), 1, anon_sym_if, - ACTIONS(2605), 1, + ACTIONS(2490), 1, anon_sym_and, - ACTIONS(2607), 1, + ACTIONS(2492), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2428), 4, + ACTIONS(2351), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2424), 26, + ACTIONS(2349), 25, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_PLUS, anon_sym_DASH, @@ -103809,60 +99289,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89911] = 4, + [86481] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(268), 3, + ACTIONS(2418), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2416), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(270), 13, - anon_sym_STAR, + 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_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(298), 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, - [89956] = 4, - ACTIONS(2605), 1, - anon_sym_and, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [86524] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2465), 5, + ACTIONS(2378), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2463), 28, + ACTIONS(2376), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103876,6 +99353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_not, + anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, @@ -103891,26 +99369,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90001] = 5, - ACTIONS(2605), 1, + [86567] = 7, + ACTIONS(2497), 1, + anon_sym_as, + ACTIONS(2499), 1, + anon_sym_if, + ACTIONS(2501), 1, anon_sym_and, - ACTIONS(2607), 1, + ACTIONS(2503), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2461), 5, - anon_sym_as, + ACTIONS(2339), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2459), 27, + ACTIONS(2337), 26, 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, @@ -103933,30 +99413,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90048] = 4, - ACTIONS(1399), 1, - anon_sym_COLON_EQ, + [86618] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 5, + ACTIONS(1474), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 28, + ACTIONS(1472), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -103974,30 +99453,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90093] = 4, - ACTIONS(285), 1, - anon_sym_COLON_EQ, + [86661] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(270), 5, + ACTIONS(2402), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(268), 28, + ACTIONS(2400), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -104015,22 +99493,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90138] = 6, - ACTIONS(2605), 1, + [86704] = 6, + ACTIONS(2501), 1, anon_sym_and, - ACTIONS(2607), 1, + ACTIONS(2503), 1, anon_sym_or, - ACTIONS(2609), 1, + ACTIONS(2505), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2457), 4, + ACTIONS(2323), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2452), 27, + ACTIONS(2318), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104058,20 +99536,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90187] = 3, + [86753] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1455), 5, + ACTIONS(2394), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1450), 29, + ACTIONS(2392), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -104081,6 +99558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -104098,24 +99576,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90230] = 5, + [86796] = 5, + ACTIONS(2501), 1, + anon_sym_and, + ACTIONS(2503), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(344), 2, + ACTIONS(2302), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(347), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(603), 14, + ACTIONS(2300), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -104124,41 +99612,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(342), 15, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [86843] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1393), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1391), 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_AT, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90277] = 4, + [86886] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1425), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1430), 5, + ACTIONS(2370), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1427), 27, + ACTIONS(2368), 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_AT, @@ -104181,28 +99698,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90322] = 7, - ACTIONS(2601), 1, - anon_sym_as, - ACTIONS(2603), 1, - anon_sym_if, - ACTIONS(2605), 1, - anon_sym_and, - ACTIONS(2607), 1, - anon_sym_or, + [86929] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2440), 4, + ACTIONS(2374), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2436), 26, + ACTIONS(2372), 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, @@ -104211,6 +99722,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -104225,29 +99738,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90373] = 3, + [86972] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1413), 5, + ACTIONS(2386), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1411), 29, + ACTIONS(2384), 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -104265,29 +99778,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90416] = 3, + [87015] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1413), 5, + ACTIONS(2390), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1411), 29, + ACTIONS(2388), 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -104305,20 +99818,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90459] = 3, + [87058] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 5, + ACTIONS(2406), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2479), 29, + ACTIONS(2404), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -104328,6 +99840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -104345,20 +99858,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90502] = 3, + [87101] = 4, + ACTIONS(2501), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2418), 5, + ACTIONS(2296), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2416), 29, + ACTIONS(2294), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -104368,8 +99882,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, @@ -104385,36 +99899,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90545] = 7, - ACTIONS(2612), 1, - anon_sym_as, - ACTIONS(2614), 1, - anon_sym_if, - ACTIONS(2616), 1, - anon_sym_and, - ACTIONS(2618), 1, - anon_sym_or, + [87146] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2469), 5, + ACTIONS(2414), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2467), 25, + ACTIONS(2412), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_else, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -104429,17 +99939,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90596] = 3, + [87189] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2450), 5, + ACTIONS(2410), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2448), 29, + ACTIONS(2408), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104469,17 +99979,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90639] = 3, + [87232] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, + ACTIONS(2316), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 29, + ACTIONS(2314), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104509,17 +100019,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90682] = 3, + [87275] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1481), 5, + ACTIONS(1474), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1479), 29, + ACTIONS(1472), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104549,32 +100059,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90725] = 3, + [87318] = 7, + ACTIONS(2497), 1, + anon_sym_as, + ACTIONS(2499), 1, + anon_sym_if, + ACTIONS(2501), 1, + anon_sym_and, + ACTIONS(2503), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1481), 5, + ACTIONS(2310), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1479), 29, + ACTIONS(2306), 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_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -104589,32 +100103,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90768] = 3, + [87369] = 7, + ACTIONS(2497), 1, + anon_sym_as, + ACTIONS(2499), 1, + anon_sym_if, + ACTIONS(2501), 1, + anon_sym_and, + ACTIONS(2503), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2414), 5, - anon_sym_as, + ACTIONS(2351), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2412), 29, + ACTIONS(2349), 26, 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_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -104629,20 +100147,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90811] = 3, + [87420] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2414), 5, + ACTIONS(1403), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1406), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2412), 29, + ACTIONS(1401), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -104651,7 +100171,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -104669,17 +100188,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90854] = 3, + [87465] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2418), 5, + ACTIONS(2296), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2416), 29, + ACTIONS(2294), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104709,36 +100228,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90897] = 7, - ACTIONS(2612), 1, - anon_sym_as, - ACTIONS(2614), 1, - anon_sym_if, - ACTIONS(2616), 1, - anon_sym_and, - ACTIONS(2618), 1, - anon_sym_or, + [87508] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2428), 5, + ACTIONS(348), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(351), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2424), 25, + ACTIONS(605), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_not, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -104747,35 +100254,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(346), 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90948] = 3, + [87555] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 5, + ACTIONS(1381), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1386), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2479), 29, + ACTIONS(1383), 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -104793,32 +100311,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90991] = 4, - ACTIONS(2616), 1, - anon_sym_and, + [87600] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2465), 5, + ACTIONS(1448), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1451), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2463), 28, + ACTIONS(1446), 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_AT, anon_sym_LBRACK, anon_sym_not, + anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, @@ -104834,25 +100352,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91036] = 3, + [87645] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1437), 5, + ACTIONS(2398), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1435), 29, + ACTIONS(2396), 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_AT, @@ -104874,19 +100392,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91079] = 3, + [87688] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2485), 5, + ACTIONS(274), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2483), 29, + ACTIONS(272), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -104896,7 +100415,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -104914,17 +100432,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91122] = 3, + [87731] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2489), 5, + ACTIONS(2331), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2487), 29, + ACTIONS(2329), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104954,34 +100472,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91165] = 5, - ACTIONS(2616), 1, - anon_sym_and, - ACTIONS(2618), 1, - anon_sym_or, + [87774] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2461), 5, + ACTIONS(1393), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2459), 27, + ACTIONS(1391), 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -104996,35 +100512,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91212] = 6, - ACTIONS(2616), 1, - anon_sym_and, - ACTIONS(2618), 1, - anon_sym_or, - ACTIONS(2620), 1, - anon_sym_as, + [87817] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2457), 5, + ACTIONS(2335), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2452), 26, + ACTIONS(2333), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -105039,22 +100552,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91261] = 4, + [87860] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1492), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1495), 5, + ACTIONS(2382), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1490), 27, + ACTIONS(2380), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -105080,36 +100592,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91306] = 7, - ACTIONS(2612), 1, - anon_sym_as, - ACTIONS(2614), 1, - anon_sym_if, - ACTIONS(2616), 1, - anon_sym_and, - ACTIONS(2618), 1, - anon_sym_or, + [87903] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2440), 5, + ACTIONS(2378), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2436), 25, + ACTIONS(2376), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_else, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -105124,17 +100632,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91357] = 3, + [87946] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1495), 5, + ACTIONS(2343), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1490), 29, + ACTIONS(2341), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -105164,19 +100672,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91400] = 3, + [87989] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1444), 5, + ACTIONS(2363), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 29, + ACTIONS(2361), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -105186,7 +100695,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -105204,19 +100712,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91443] = 3, + [88032] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 5, + ACTIONS(2347), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2491), 29, + ACTIONS(2345), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -105226,7 +100735,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -105244,17 +100752,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91486] = 3, + [88075] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, + ACTIONS(2327), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 29, + ACTIONS(2325), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105284,20 +100792,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91529] = 3, + [88118] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2450), 5, + ACTIONS(1459), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2448), 29, + ACTIONS(1457), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -105307,6 +100814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -105324,17 +100832,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91572] = 3, + [88161] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2497), 5, + ACTIONS(1463), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2495), 29, + ACTIONS(1461), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -105364,17 +100872,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91615] = 3, + [88204] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2504), 5, + ACTIONS(1463), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2502), 29, + ACTIONS(1461), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -105404,17 +100912,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91658] = 3, + [88247] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(270), 5, + ACTIONS(2343), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(268), 29, + ACTIONS(2341), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105444,29 +100952,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91701] = 7, - ACTIONS(2623), 1, - anon_sym_as, - ACTIONS(2625), 1, - anon_sym_if, - ACTIONS(2627), 1, - anon_sym_and, - ACTIONS(2629), 1, - anon_sym_or, + [88290] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2469), 4, + ACTIONS(2335), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2467), 26, + ACTIONS(2333), 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, @@ -105474,6 +100976,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -105488,36 +100992,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91752] = 7, - ACTIONS(2623), 1, + [88333] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1379), 5, anon_sym_as, - ACTIONS(2625), 1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1377), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, - ACTIONS(2627), 1, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, anon_sym_and, - ACTIONS(2629), 1, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [88376] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2428), 4, + ACTIONS(1379), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2424), 26, + ACTIONS(1377), 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_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -105532,22 +101072,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91803] = 4, - ACTIONS(2627), 1, - anon_sym_and, + [88419] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2465), 5, + ACTIONS(2327), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2463), 28, + ACTIONS(2325), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -105557,7 +101094,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, + anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, @@ -105573,24 +101112,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91848] = 5, - ACTIONS(2627), 1, - anon_sym_and, - ACTIONS(2629), 1, - anon_sym_or, + [88462] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2461), 5, + ACTIONS(2347), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2459), 27, + ACTIONS(2345), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -105600,7 +101134,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -105615,19 +101152,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91895] = 3, + [88505] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2508), 5, + ACTIONS(2331), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2506), 29, + ACTIONS(2329), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -105637,7 +101175,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -105655,28 +101192,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91938] = 6, - ACTIONS(2627), 1, + [88548] = 7, + ACTIONS(2475), 1, anon_sym_and, - ACTIONS(2629), 1, + ACTIONS(2477), 1, anon_sym_or, - ACTIONS(2631), 1, + ACTIONS(2482), 1, anon_sym_as, + ACTIONS(2484), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2457), 4, + ACTIONS(2310), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2452), 27, + ACTIONS(2306), 26, 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, @@ -105698,29 +101236,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91987] = 3, + [88599] = 4, + STATE(1425), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2512), 5, - anon_sym_as, + ACTIONS(2172), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2510), 29, + ACTIONS(2170), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -105738,19 +101277,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92030] = 3, + [88644] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 5, + ACTIONS(2296), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2471), 29, + ACTIONS(2294), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -105760,7 +101300,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -105778,25 +101317,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92073] = 3, + [88687] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1463), 5, + ACTIONS(1386), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1389), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1383), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1381), 15, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [88734] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1446), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1451), 13, anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1453), 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, + [88779] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1386), 2, + anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1389), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1461), 29, + ACTIONS(1383), 14, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1381), 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [88826] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2316), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2314), 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_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -105818,66 +101482,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92116] = 7, - ACTIONS(2623), 1, - anon_sym_as, - ACTIONS(2625), 1, - anon_sym_if, - ACTIONS(2627), 1, - anon_sym_and, - ACTIONS(2629), 1, - anon_sym_or, + [88869] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2440), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2436), 26, + ACTIONS(1401), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(1406), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_not, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [92167] = 4, + ACTIONS(1408), 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, + [88914] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1394), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1397), 5, + ACTIONS(1470), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 27, + ACTIONS(1465), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -105886,6 +101545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -105903,62 +101563,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92212] = 3, + [88957] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2465), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2463), 29, + ACTIONS(1364), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(1369), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [92255] = 4, + ACTIONS(1375), 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, + [89002] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1452), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1455), 5, + ACTIONS(2363), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1450), 27, + ACTIONS(2361), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -105967,6 +101626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -105984,25 +101644,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92300] = 3, + [89045] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2072), 5, - anon_sym_as, + ACTIONS(2378), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2058), 29, + ACTIONS(2376), 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_AT, @@ -106024,69 +101684,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92343] = 3, + [89088] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1392), 29, + ACTIONS(272), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_LBRACK, + ACTIONS(274), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [92386] = 3, + ACTIONS(302), 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, + [89133] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2072), 5, + ACTIONS(2382), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2058), 29, + ACTIONS(2380), 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -106104,59 +101765,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92429] = 5, + [89176] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1433), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1427), 14, + ACTIONS(1465), 3, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1470), 13, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1425), 15, + ACTIONS(1375), 18, + sym__newline, + anon_sym_SEMI, 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [92476] = 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, + [89221] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2584), 5, + ACTIONS(2202), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2582), 29, + ACTIONS(2200), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -106164,11 +101824,11 @@ 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_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -106186,25 +101846,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92519] = 3, + [89264] = 5, + ACTIONS(289), 1, + anon_sym_COLON_EQ, + ACTIONS(648), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(270), 5, + ACTIONS(274), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(268), 29, + ACTIONS(272), 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_AT, @@ -106226,29 +101888,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92562] = 3, + [89311] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2580), 5, + ACTIONS(274), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2578), 29, + ACTIONS(272), 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -106266,17 +101928,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92605] = 3, + [89354] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(2398), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 29, + ACTIONS(2396), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -106306,25 +101968,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92648] = 3, + [89397] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2564), 5, + ACTIONS(1448), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1451), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 29, + ACTIONS(1446), 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_AT, @@ -106346,29 +102009,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92691] = 3, + [89442] = 5, + ACTIONS(1371), 1, + anon_sym_COLON_EQ, + ACTIONS(2194), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, - anon_sym_as, + ACTIONS(1369), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(1364), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -106386,32 +102051,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92734] = 3, + [89489] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(348), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(351), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(605), 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_AT, anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -106420,64 +102077,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [92777] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2548), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2546), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(346), 15, 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_AT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92820] = 4, - STATE(1359), 1, - aux_sym_comparison_operator_repeat1, + [89536] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2368), 4, + ACTIONS(2198), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2366), 29, + ACTIONS(2196), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -106507,26 +102133,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92865] = 4, - STATE(1508), 1, - aux_sym_comparison_operator_repeat1, + [89579] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2368), 5, + ACTIONS(1451), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2366), 28, + ACTIONS(1446), 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_AT, @@ -106548,20 +102173,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92910] = 3, + [89622] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2410), 5, + ACTIONS(1403), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1406), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2408), 29, + ACTIONS(1401), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -106570,7 +102197,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -106588,17 +102214,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92953] = 3, + [89667] = 8, + ACTIONS(2511), 1, + anon_sym_not, + ACTIONS(2517), 1, + anon_sym_is, + STATE(1398), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2410), 5, + ACTIONS(2176), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2514), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2408), 29, + ACTIONS(2508), 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(2174), 21, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -106606,12 +102245,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_AT, anon_sym_LBRACK, - anon_sym_not, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -106622,30 +102259,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [92996] = 5, + [89720] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 2, + ACTIONS(1366), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1369), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1433), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1427), 14, + ACTIONS(1364), 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_AT, anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -106654,81 +102294,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1425), 15, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [93043] = 4, + [89765] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1439), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1444), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1446), 18, - sym__newline, - anon_sym_SEMI, + ACTIONS(1467), 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, - [93088] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1430), 2, + anon_sym_RBRACK, + ACTIONS(1470), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1433), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1427), 14, + ACTIONS(1465), 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_AT, anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -106737,33 +102335,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1425), 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [93135] = 3, + [89810] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(1406), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(1401), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -106793,17 +102381,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [93178] = 3, + [89853] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(1965), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(1951), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -106833,60 +102421,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [93221] = 4, + [89896] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1490), 3, + ACTIONS(1369), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1364), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1495), 13, - anon_sym_STAR, + 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_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1497), 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, - [93266] = 3, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [89939] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(2410), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(2408), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -106896,7 +102484,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -106914,111 +102501,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [93309] = 4, + [89982] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1392), 3, + ACTIONS(2414), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2412), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1397), 13, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1403), 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, - [93354] = 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [90025] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1450), 3, + ACTIONS(1470), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1465), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1455), 13, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1403), 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, - [93399] = 3, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [90068] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2348), 4, + ACTIONS(2202), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2346), 30, + ACTIONS(2200), 29, 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_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -107036,25 +102621,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [93442] = 3, + [90111] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(2406), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 29, + ACTIONS(2404), 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_AT, @@ -107076,24 +102661,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [93485] = 5, + [90154] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(344), 2, + ACTIONS(2390), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(347), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(603), 14, + ACTIONS(2388), 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_AT, anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -107102,35 +102695,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(342), 15, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [93532] = 3, + [90197] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2564), 5, + ACTIONS(2386), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 29, + ACTIONS(2384), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -107140,7 +102724,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -107158,29 +102741,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [93575] = 3, + [90240] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2390), 4, + ACTIONS(2374), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2388), 30, - sym_string_start, + ACTIONS(2372), 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -107198,25 +102781,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [93618] = 3, + [90283] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2465), 5, + ACTIONS(2370), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2463), 29, + ACTIONS(2368), 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_AT, @@ -107238,25 +102821,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [93661] = 3, + [90326] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 5, + ACTIONS(2394), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2471), 29, + ACTIONS(2392), 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_AT, @@ -107278,25 +102861,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [93704] = 3, + [90369] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2348), 5, + ACTIONS(2402), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2346), 29, - sym_string_start, + ACTIONS(2400), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, @@ -107318,17 +102901,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [93747] = 3, + [90412] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2512), 5, + ACTIONS(2434), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2510), 29, + ACTIONS(2432), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -107358,17 +102941,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [93790] = 3, + [90455] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2508), 5, + ACTIONS(2438), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2506), 29, + ACTIONS(2436), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -107398,29 +102981,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [93833] = 3, + [90498] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2504), 5, + ACTIONS(1406), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2502), 29, + ACTIONS(1401), 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -107438,29 +103021,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [93876] = 3, + [90541] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2422), 5, + ACTIONS(1451), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 29, + ACTIONS(1446), 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -107478,29 +103061,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [93919] = 3, + [90584] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2580), 5, - anon_sym_as, + ACTIONS(2198), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2578), 29, + ACTIONS(2196), 29, + 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_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -107518,25 +103101,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [93962] = 3, + [90627] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2497), 5, + ACTIONS(2418), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2495), 29, + ACTIONS(2416), 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_AT, @@ -107558,24 +103141,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [94005] = 5, + [90670] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(344), 2, + ACTIONS(2438), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(347), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(603), 14, + ACTIONS(2436), 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_AT, anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -107584,33 +103175,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(342), 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [94052] = 3, + [90713] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 5, + ACTIONS(2418), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2491), 29, + ACTIONS(2416), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -107640,17 +103221,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [94095] = 3, + [90756] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2489), 5, + ACTIONS(2402), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2487), 29, + ACTIONS(2400), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -107680,25 +103261,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [94138] = 3, + [90799] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2485), 5, + ACTIONS(2434), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2483), 29, + ACTIONS(2432), 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_AT, @@ -107720,30 +103301,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [94181] = 4, - ACTIONS(285), 1, - anon_sym_COLON_EQ, + [90842] = 8, + ACTIONS(2523), 1, + anon_sym_not, + ACTIONS(2529), 1, + anon_sym_is, + STATE(1425), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(270), 5, + ACTIONS(2526), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2176), 3, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + ACTIONS(2520), 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(2174), 20, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [90895] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1369), 5, + anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(268), 28, + ACTIONS(1364), 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -107761,30 +103386,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [94226] = 4, - ACTIONS(1399), 1, - anon_sym_COLON_EQ, + [90938] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 5, + ACTIONS(1965), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 28, + ACTIONS(1951), 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -107802,32 +103426,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [94271] = 3, + [90981] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(270), 5, - anon_sym_as, + ACTIONS(1386), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1389), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(268), 29, + ACTIONS(1383), 14, 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -107836,35 +103452,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1381), 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [94314] = 3, + [91028] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2584), 5, - anon_sym_as, + ACTIONS(2394), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2582), 29, + ACTIONS(2392), 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -107882,26 +103508,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [94357] = 4, + [91071] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1441), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1444), 5, - anon_sym_as, + ACTIONS(2398), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 27, + ACTIONS(2396), 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_AT, @@ -107923,26 +103548,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [94402] = 4, + [91114] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1492), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1495), 5, - anon_sym_as, + ACTIONS(274), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1490), 27, + ACTIONS(272), 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_AT, @@ -107964,17 +103588,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [94447] = 3, + [91157] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2450), 5, + ACTIONS(2370), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2448), 29, + ACTIONS(2368), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -108004,26 +103628,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [94490] = 4, + [91200] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1394), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1397), 5, - anon_sym_as, + ACTIONS(2374), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 27, + ACTIONS(2372), 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_AT, @@ -108045,26 +103668,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [94535] = 4, + [91243] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1452), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1455), 5, - anon_sym_as, + ACTIONS(2386), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1450), 27, + ACTIONS(2384), 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_AT, @@ -108086,29 +103708,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [94580] = 3, + [91286] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2072), 5, - anon_sym_as, + ACTIONS(2390), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2058), 29, + ACTIONS(2388), 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -108126,29 +103748,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [94623] = 3, + [91329] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 5, - anon_sym_as, + ACTIONS(2406), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 29, + ACTIONS(2404), 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -108166,41 +103788,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [94666] = 8, - ACTIONS(2637), 1, - anon_sym_not, - ACTIONS(2643), 1, - anon_sym_is, - STATE(1508), 1, - aux_sym_comparison_operator_repeat1, + [91372] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2640), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2352), 3, + ACTIONS(2382), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2634), 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(2350), 20, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2380), 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_AT, anon_sym_LBRACK, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -108211,17 +103822,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [94719] = 3, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [91415] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, + ACTIONS(2414), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 29, + ACTIONS(2412), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -108251,17 +103868,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [94762] = 3, + [91458] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2414), 5, + ACTIONS(2363), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2412), 29, + ACTIONS(2361), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -108291,17 +103908,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [94805] = 3, + [91501] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2418), 5, + ACTIONS(2410), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2416), 29, + ACTIONS(2408), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -108331,25 +103948,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [94848] = 3, + [91544] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2390), 5, + ACTIONS(2347), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2388), 29, - sym_string_start, + ACTIONS(2345), 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_AT, @@ -108371,24 +103988,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [94891] = 3, + [91587] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1437), 5, + ACTIONS(2327), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1435), 28, + ACTIONS(2325), 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_AT, @@ -108410,24 +104028,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [94933] = 3, + [91630] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1413), 5, + ACTIONS(2343), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1411), 28, + ACTIONS(2341), 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_AT, @@ -108449,18 +104068,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [94975] = 4, - ACTIONS(1399), 1, + [91673] = 4, + ACTIONS(1371), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 4, + ACTIONS(1369), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1427), 28, + ACTIONS(1364), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -108489,20 +104109,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [95019] = 3, + [91718] = 4, + ACTIONS(289), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1455), 5, + ACTIONS(274), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1450), 28, + ACTIONS(272), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -108511,6 +104132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -108528,24 +104150,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [95061] = 3, + [91763] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1481), 5, + ACTIONS(348), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(351), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1479), 28, + ACTIONS(605), 14, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(346), 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [91810] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2335), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2333), 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_AT, @@ -108567,24 +104232,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [95103] = 3, + [91853] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1481), 5, + ACTIONS(2331), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1479), 28, + ACTIONS(2329), 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_AT, @@ -108606,35 +104272,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [95145] = 7, - ACTIONS(2646), 1, + [91896] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2296), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2294), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2648), 1, + anon_sym_GT_GT, anon_sym_if, - ACTIONS(2650), 1, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, anon_sym_and, - ACTIONS(2652), 1, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [91939] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2440), 4, + ACTIONS(2316), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2436), 25, + ACTIONS(2314), 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -108649,17 +104352,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [95195] = 3, + [91982] = 4, + ACTIONS(1371), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(270), 5, + ACTIONS(1386), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(268), 28, + ACTIONS(1383), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -108688,28 +104392,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [95237] = 3, + [92026] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1485), 5, + ACTIONS(1393), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1483), 28, + ACTIONS(1391), 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_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -108727,28 +104431,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [95279] = 3, + [92068] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2564), 5, + ACTIONS(1474), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 28, + ACTIONS(1472), 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_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -108766,16 +104470,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [95321] = 3, + [92110] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2414), 4, + ACTIONS(2378), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2412), 29, + ACTIONS(2376), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -108805,34 +104509,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [95363] = 6, - ACTIONS(2650), 1, + [92152] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1386), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1389), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1381), 14, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, anon_sym_and, - ACTIONS(2652), 1, anon_sym_or, - ACTIONS(2654), 1, - anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + ACTIONS(1383), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [92198] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2457), 4, + ACTIONS(1470), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2452), 26, + ACTIONS(1465), 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -108847,20 +104589,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [95411] = 4, - ACTIONS(1399), 1, - anon_sym_COLON_EQ, + [92240] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 4, + ACTIONS(2414), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1427), 28, + ACTIONS(2412), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -108886,18 +104628,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [95455] = 3, + [92282] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(1379), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 28, + ACTIONS(1377), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -108926,17 +104667,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [95497] = 3, + [92324] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(1379), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 28, + ACTIONS(1377), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -108965,16 +104706,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [95539] = 3, + [92366] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1495), 4, + ACTIONS(2434), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1490), 29, + ACTIONS(2432), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -109004,16 +104745,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [95581] = 3, + [92408] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1444), 4, + ACTIONS(2438), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 29, + ACTIONS(2436), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -109043,17 +104784,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [95623] = 3, + [92450] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2410), 5, + ACTIONS(1463), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2408), 28, + ACTIONS(1461), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -109082,20 +104823,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [95665] = 4, - ACTIONS(285), 1, - anon_sym_COLON_EQ, + [92492] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(344), 4, + ACTIONS(1463), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(603), 28, + ACTIONS(1461), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -109121,34 +104862,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [95709] = 5, - ACTIONS(2650), 1, + [92534] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1459), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1457), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, anon_sym_and, - ACTIONS(2652), 1, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [92576] = 4, + ACTIONS(1371), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2461), 4, + ACTIONS(1386), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2459), 27, + ACTIONS(1383), 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_AT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -109163,28 +104941,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [95755] = 3, + [92620] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(2418), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 28, + ACTIONS(2416), 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_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -109202,28 +104980,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [95797] = 3, + [92662] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(2402), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 28, + ACTIONS(2400), 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_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -109241,18 +105019,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [95839] = 4, - ACTIONS(2650), 1, - anon_sym_and, + [92704] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2465), 4, + ACTIONS(2394), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2463), 28, + ACTIONS(2392), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -109266,6 +105042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_not, + anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, @@ -109281,28 +105058,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [95883] = 3, + [92746] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2418), 4, + ACTIONS(1369), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2416), 29, + ACTIONS(1364), 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -109320,28 +105097,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [95925] = 3, + [92788] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 4, + ACTIONS(1965), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2479), 29, + ACTIONS(1951), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [92830] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1393), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1391), 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -109359,28 +105175,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [95967] = 3, + [92872] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2465), 5, + ACTIONS(2370), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2463), 28, + ACTIONS(2368), 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_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -109398,16 +105214,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [96009] = 3, + [92914] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2485), 4, + ACTIONS(2374), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2483), 29, + ACTIONS(2372), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -109437,71 +105253,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [96051] = 7, - ACTIONS(2646), 1, - anon_sym_as, - ACTIONS(2648), 1, - anon_sym_if, - ACTIONS(2650), 1, - anon_sym_and, - ACTIONS(2652), 1, - anon_sym_or, + [92956] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2428), 4, + ACTIONS(2386), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2424), 25, + ACTIONS(2384), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [96101] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2473), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2471), 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_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -109519,28 +105292,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [96143] = 3, + [92998] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2580), 5, + ACTIONS(2390), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2578), 28, + ACTIONS(2388), 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_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -109558,16 +105331,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [96185] = 3, + [93040] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2489), 4, + ACTIONS(2406), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2487), 29, + ACTIONS(2404), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -109597,16 +105370,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [96227] = 3, + [93082] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 4, + ACTIONS(2414), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2491), 29, + ACTIONS(2412), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -109636,34 +105409,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [96269] = 7, - ACTIONS(2646), 1, + [93124] = 7, + ACTIONS(2532), 1, anon_sym_as, - ACTIONS(2648), 1, + ACTIONS(2534), 1, anon_sym_if, - ACTIONS(2650), 1, + ACTIONS(2536), 1, anon_sym_and, - ACTIONS(2652), 1, + ACTIONS(2538), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2469), 4, + ACTIONS(2339), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2467), 25, + ACTIONS(2337), 24, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_PLUS, anon_sym_DASH, @@ -109679,16 +105452,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [96319] = 3, + [93174] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2497), 4, + ACTIONS(2410), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2495), 29, + ACTIONS(2408), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -109718,16 +105491,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [96361] = 3, + [93216] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2504), 4, + ACTIONS(1470), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2502), 29, + ACTIONS(1465), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -109757,16 +105530,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [96403] = 3, + [93258] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2508), 4, + ACTIONS(2316), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2506), 29, + ACTIONS(2314), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -109796,22 +105569,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [96445] = 3, + [93300] = 6, + ACTIONS(2536), 1, + anon_sym_and, + ACTIONS(2538), 1, + anon_sym_or, + ACTIONS(2540), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1444), 5, + ACTIONS(2323), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 28, + ACTIONS(2318), 25, 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, @@ -109819,8 +105597,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -109835,72 +105611,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [96487] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(344), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(347), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(342), 14, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_not, + [93348] = 5, + ACTIONS(2536), 1, anon_sym_and, + ACTIONS(2538), 1, anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - ACTIONS(603), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [96533] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2512), 4, + ACTIONS(2302), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2510), 29, + ACTIONS(2300), 26, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -109915,17 +105652,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [96575] = 3, + [93394] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 5, + ACTIONS(1474), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 28, + ACTIONS(1472), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -109954,23 +105691,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [96617] = 5, + [93436] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 2, + ACTIONS(2398), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(1433), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1427), 14, + ACTIONS(2396), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -109979,33 +105724,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1425), 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [96663] = 3, + [93478] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2512), 5, + ACTIONS(274), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2510), 28, + ACTIONS(272), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110034,30 +105769,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [96705] = 3, + [93520] = 4, + ACTIONS(2536), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 4, + ACTIONS(2296), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2471), 29, + ACTIONS(2294), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, @@ -110073,28 +105809,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [96747] = 3, + [93564] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2508), 5, + ACTIONS(2296), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2506), 28, + ACTIONS(2294), 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_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -110112,31 +105848,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [96789] = 3, + [93606] = 7, + ACTIONS(2532), 1, + anon_sym_as, + ACTIONS(2534), 1, + anon_sym_if, + ACTIONS(2536), 1, + anon_sym_and, + ACTIONS(2538), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1463), 5, + ACTIONS(2310), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1461), 28, + ACTIONS(2306), 24, 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_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -110151,17 +105891,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [96831] = 3, + [93656] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2504), 5, + ACTIONS(2382), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2502), 28, + ACTIONS(2380), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110190,31 +105930,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [96873] = 3, + [93698] = 7, + ACTIONS(2532), 1, + anon_sym_as, + ACTIONS(2534), 1, + anon_sym_if, + ACTIONS(2536), 1, + anon_sym_and, + ACTIONS(2538), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2497), 5, + ACTIONS(2351), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2495), 28, + ACTIONS(2349), 24, 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_AT, anon_sym_LBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -110229,28 +105973,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [96915] = 3, + [93748] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 5, + ACTIONS(2331), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2491), 28, + ACTIONS(2329), 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_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -110268,34 +106012,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [96957] = 7, - ACTIONS(2657), 1, + [93790] = 7, + ACTIONS(2543), 1, anon_sym_as, - ACTIONS(2659), 1, + ACTIONS(2545), 1, anon_sym_if, - ACTIONS(2661), 1, + ACTIONS(2547), 1, anon_sym_and, - ACTIONS(2663), 1, + ACTIONS(2549), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2469), 5, + ACTIONS(2339), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2467), 24, + ACTIONS(2337), 25, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_PLUS, anon_sym_DASH, @@ -110311,20 +106055,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [97007] = 3, + [93840] = 6, + ACTIONS(2547), 1, + anon_sym_and, + ACTIONS(2549), 1, + anon_sym_or, + ACTIONS(2551), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2465), 4, + ACTIONS(2323), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2463), 29, + ACTIONS(2318), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, @@ -110334,8 +106083,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -110350,31 +106097,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [97049] = 3, + [93888] = 5, + ACTIONS(2547), 1, + anon_sym_and, + ACTIONS(2549), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2489), 5, + ACTIONS(2302), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2487), 28, + ACTIONS(2300), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -110389,30 +106138,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [97091] = 3, + [93934] = 4, + ACTIONS(2547), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2485), 5, + ACTIONS(2296), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2483), 28, + ACTIONS(2294), 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_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, @@ -110428,34 +106178,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [97133] = 7, - ACTIONS(2657), 1, + [93978] = 7, + ACTIONS(2543), 1, anon_sym_as, - ACTIONS(2659), 1, + ACTIONS(2545), 1, anon_sym_if, - ACTIONS(2661), 1, + ACTIONS(2547), 1, anon_sym_and, - ACTIONS(2663), 1, + ACTIONS(2549), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2428), 5, + ACTIONS(2310), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2424), 24, + ACTIONS(2306), 25, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_PLUS, anon_sym_DASH, @@ -110471,16 +106221,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [97183] = 3, + [94028] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 4, + ACTIONS(2335), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 29, + ACTIONS(2333), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -110510,16 +106260,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [97225] = 3, + [94070] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 4, + ACTIONS(2343), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(2341), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -110549,16 +106299,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [97267] = 3, + [94112] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2410), 4, + ACTIONS(2327), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2408), 29, + ACTIONS(2325), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -110588,71 +106338,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [97309] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2481), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2479), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + [94154] = 7, + ACTIONS(2543), 1, anon_sym_as, - anon_sym_GT_GT, + ACTIONS(2545), 1, anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_not, + ACTIONS(2547), 1, anon_sym_and, + ACTIONS(2549), 1, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [97351] = 4, - ACTIONS(2661), 1, - anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2465), 5, + ACTIONS(2351), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2463), 27, + ACTIONS(2349), 25, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -110667,28 +106381,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [97395] = 3, + [94204] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2418), 5, + ACTIONS(2347), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2416), 28, + ACTIONS(2345), 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_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -110706,28 +106420,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [97437] = 3, + [94246] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2414), 5, + ACTIONS(2363), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2412), 28, + ACTIONS(2361), 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_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -110745,28 +106459,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [97479] = 3, + [94288] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 4, + ACTIONS(2378), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(2376), 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -110784,28 +106498,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [97521] = 3, + [94330] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1495), 5, + ACTIONS(2382), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1490), 28, + ACTIONS(2380), 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_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -110823,18 +106537,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [97563] = 4, - ACTIONS(1399), 1, - anon_sym_COLON_EQ, + [94372] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 4, + ACTIONS(2363), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1427), 28, + ACTIONS(2361), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110863,17 +106576,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [97607] = 3, + [94414] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, + ACTIONS(1451), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 28, + ACTIONS(1446), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110902,28 +106615,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [97649] = 3, + [94456] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2450), 5, + ACTIONS(1459), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2448), 28, + ACTIONS(1457), 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_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -110941,18 +106654,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [97691] = 4, - ACTIONS(285), 1, + [94498] = 4, + ACTIONS(289), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(344), 4, + ACTIONS(348), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(603), 28, + ACTIONS(605), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110981,28 +106694,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [97735] = 3, + [94542] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 4, + ACTIONS(2347), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(2345), 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -111020,28 +106733,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [97777] = 3, + [94584] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 4, + ACTIONS(2327), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 29, + ACTIONS(2325), 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -111059,16 +106772,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [97819] = 3, + [94626] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2072), 4, + ACTIONS(1406), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2058), 29, + ACTIONS(1401), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -111098,16 +106811,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [97861] = 3, + [94668] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1413), 4, + ACTIONS(1451), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1411), 29, + ACTIONS(1446), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -111137,17 +106850,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [97903] = 3, + [94710] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2584), 5, + ACTIONS(2343), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2582), 28, + ACTIONS(2341), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111176,16 +106889,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [97945] = 3, + [94752] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1413), 4, + ACTIONS(1463), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1411), 29, + ACTIONS(1461), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -111215,21 +106928,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [97987] = 5, - ACTIONS(2661), 1, + [94794] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(274), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(272), 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_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, anon_sym_and, - ACTIONS(2663), 1, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [94836] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2461), 5, + ACTIONS(2335), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2459), 26, + ACTIONS(2333), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111242,6 +106990,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -111256,28 +107006,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [98033] = 3, + [94878] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1481), 4, + ACTIONS(2331), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1479), 29, + ACTIONS(2329), 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -111295,16 +107045,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [98075] = 3, + [94920] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1481), 4, + ACTIONS(2398), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1479), 29, + ACTIONS(2396), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -111334,23 +107084,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [98117] = 5, + [94962] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(344), 2, + ACTIONS(1463), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(347), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(603), 14, + ACTIONS(1461), 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_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -111359,44 +107117,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(342), 15, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [95004] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1379), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1377), 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_AT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [98163] = 3, + [95046] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1485), 4, + ACTIONS(2296), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1483), 29, + ACTIONS(2294), 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -111414,16 +107201,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [98205] = 3, + [95088] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1437), 4, + ACTIONS(1379), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1435), 29, + ACTIONS(1377), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -111453,28 +107240,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [98247] = 3, + [95130] = 4, + ACTIONS(289), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1463), 4, + ACTIONS(348), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1461), 29, + ACTIONS(605), 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -111492,28 +107279,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [98289] = 3, + anon_sym_RBRACE, + [95174] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2564), 4, + ACTIONS(2316), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 29, + ACTIONS(2314), 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -111531,28 +107319,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [98331] = 3, + [95216] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2450), 4, + ACTIONS(1406), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2448), 29, + ACTIONS(1401), 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -111570,16 +107358,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [98373] = 3, + [95258] = 4, + ACTIONS(1371), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2422), 4, + ACTIONS(1386), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 29, + ACTIONS(1383), 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_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + [95302] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(348), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(351), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(605), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(346), 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [95348] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(348), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(351), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(346), 14, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + ACTIONS(605), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [95394] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1965), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1951), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -111609,16 +107519,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [98415] = 3, + [95436] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 4, + ACTIONS(1369), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 29, + ACTIONS(1364), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -111648,28 +107558,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [98457] = 3, + [95478] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2434), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2432), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [95520] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2584), 4, + ACTIONS(2438), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2582), 29, + ACTIONS(2436), 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -111687,28 +107636,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [98499] = 3, + [95562] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(270), 4, + ACTIONS(2418), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(268), 29, + ACTIONS(2416), 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -111726,28 +107675,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [98541] = 3, + [95604] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1455), 4, + ACTIONS(2402), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1450), 29, + ACTIONS(2400), 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_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -111765,27 +107714,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [98583] = 6, - ACTIONS(2661), 1, - anon_sym_and, - ACTIONS(2663), 1, - anon_sym_or, - ACTIONS(2665), 1, - anon_sym_as, + [95646] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2457), 5, + ACTIONS(2394), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2452), 25, + ACTIONS(2392), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_in, @@ -111793,6 +107737,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -111807,23 +107753,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [98631] = 5, + [95688] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 2, + ACTIONS(1386), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1433), 3, - anon_sym_EQ, + ACTIONS(1389), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1425), 14, - anon_sym_RPAREN, + ACTIONS(1383), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1381), 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, @@ -111833,13 +107794,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - ACTIONS(1427), 14, + [95734] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2410), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2408), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -111848,23 +107827,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98677] = 3, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [95776] = 4, + ACTIONS(289), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2580), 4, + ACTIONS(348), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2578), 29, + ACTIONS(605), 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_AT, @@ -111887,17 +107873,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [98719] = 3, + [95820] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2422), 5, + ACTIONS(2370), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 28, + ACTIONS(2368), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111926,35 +107912,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [98761] = 7, - ACTIONS(2657), 1, - anon_sym_as, - ACTIONS(2659), 1, - anon_sym_if, - ACTIONS(2661), 1, - anon_sym_and, - ACTIONS(2663), 1, - anon_sym_or, + [95862] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2440), 5, + ACTIONS(2374), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2436), 24, + ACTIONS(2372), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -111969,17 +107951,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [98811] = 3, + [95904] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1413), 5, + ACTIONS(2406), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1411), 28, + ACTIONS(2404), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112008,20 +107990,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [98853] = 4, - ACTIONS(285), 1, - anon_sym_COLON_EQ, + [95946] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(344), 4, + ACTIONS(2390), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(603), 28, + ACTIONS(2388), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -112030,7 +108012,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -112048,17 +108029,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [98897] = 3, + [95988] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2072), 5, + ACTIONS(2386), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2058), 28, + ACTIONS(2384), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112087,19 +108068,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [98939] = 3, + [96030] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 4, + ACTIONS(1386), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1427), 28, + ACTIONS(1383), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -112108,6 +108088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -112125,11 +108106,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [98980] = 3, + [96071] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1481), 13, + ACTIONS(1474), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -112143,7 +108124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1479), 19, + ACTIONS(1472), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -112163,53 +108144,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99021] = 3, + [96112] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1427), 28, + ACTIONS(272), 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_AT, anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_RBRACE, - [99062] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1490), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1495), 13, + ACTIONS(274), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -112223,7 +108166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1497), 16, + ACTIONS(302), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -112240,53 +108183,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99105] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1430), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1427), 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_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [99146] = 4, + [96155] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1427), 3, + ACTIONS(1446), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1430), 13, + ACTIONS(1451), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -112300,7 +108205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1425), 16, + ACTIONS(1453), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -112317,11 +108222,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99189] = 3, + [96198] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1413), 13, + ACTIONS(1383), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1386), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -112335,12 +108244,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1411), 19, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1381), 16, anon_sym_COMMA, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -112355,15 +108261,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99230] = 4, + [96241] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(603), 3, + ACTIONS(605), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(344), 13, + ACTIONS(348), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -112377,7 +108283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(342), 16, + ACTIONS(346), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -112394,15 +108300,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99273] = 4, + [96284] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1392), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1397), 13, + ACTIONS(1379), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -112416,9 +108318,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1403), 16, + ACTIONS(1377), 19, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -112433,11 +108338,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99316] = 3, + [96325] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1413), 13, + ACTIONS(1379), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -112451,7 +108356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1411), 19, + ACTIONS(1377), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -112471,7 +108376,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99357] = 3, + [96366] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1386), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1383), 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_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_RBRACE, + [96407] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -112509,15 +108452,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99398] = 4, + [96448] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1450), 3, + ACTIONS(1401), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1455), 13, + ACTIONS(1406), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -112531,7 +108474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1403), 16, + ACTIONS(1408), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -112548,15 +108491,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99441] = 4, + [96491] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1439), 3, + ACTIONS(1364), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1444), 13, + ACTIONS(1369), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -112570,7 +108513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1446), 16, + ACTIONS(1375), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -112587,15 +108530,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99484] = 4, + [96534] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(268), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(270), 13, + ACTIONS(1463), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -112609,9 +108548,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(298), 16, + ACTIONS(1461), 19, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -112626,11 +108568,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99527] = 3, + [96575] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1481), 13, + ACTIONS(1459), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -112644,7 +108586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1479), 19, + ACTIONS(1457), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -112664,11 +108606,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99568] = 3, + [96616] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1437), 13, + ACTIONS(1465), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1470), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -112682,12 +108628,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1435), 19, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1375), 16, anon_sym_COMMA, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -112702,11 +108645,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99609] = 3, + [96659] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1485), 13, + ACTIONS(1393), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -112720,7 +108663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1483), 19, + ACTIONS(1391), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -112740,22 +108683,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99650] = 7, - ACTIONS(2668), 1, + [96700] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1386), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1383), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [96741] = 7, + ACTIONS(2554), 1, anon_sym_as, - ACTIONS(2670), 1, + ACTIONS(2556), 1, anon_sym_if, - ACTIONS(2672), 1, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(2674), 1, + ACTIONS(2560), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2469), 2, + ACTIONS(2351), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2467), 18, + ACTIONS(2349), 18, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -112774,23 +108755,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99691] = 6, - ACTIONS(2672), 1, + [96782] = 5, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(2674), 1, + ACTIONS(2560), 1, anon_sym_or, - ACTIONS(2676), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2457), 2, + ACTIONS(2302), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2452), 19, + ACTIONS(2300), 20, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, @@ -112807,32 +108787,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99730] = 7, - ACTIONS(2668), 1, - anon_sym_as, - ACTIONS(2670), 1, - anon_sym_if, - ACTIONS(2672), 1, + [96819] = 4, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(2674), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2428), 2, + ACTIONS(2296), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2424), 18, + ACTIONS(2294), 21, 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_STAR_STAR, anon_sym_AT, anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -112841,20 +108818,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99771] = 4, - ACTIONS(2672), 1, + [96854] = 6, + ACTIONS(2558), 1, anon_sym_and, + ACTIONS(2560), 1, + anon_sym_or, + ACTIONS(2562), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2465), 2, + ACTIONS(2323), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2463), 21, + ACTIONS(2318), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, @@ -112863,7 +108843,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -112872,24 +108851,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99806] = 5, - ACTIONS(2672), 1, + [96893] = 7, + ACTIONS(2554), 1, + anon_sym_as, + ACTIONS(2556), 1, + anon_sym_if, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(2674), 1, + ACTIONS(2560), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2461), 2, + ACTIONS(2339), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2459), 20, + ACTIONS(2337), 18, 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_STAR_STAR, @@ -112904,22 +108885,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99843] = 7, - ACTIONS(2668), 1, + [96934] = 7, + ACTIONS(2554), 1, anon_sym_as, - ACTIONS(2670), 1, + ACTIONS(2556), 1, anon_sym_if, - ACTIONS(2672), 1, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(2674), 1, + ACTIONS(2560), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2440), 2, + ACTIONS(2310), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2436), 18, + ACTIONS(2306), 18, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -112938,20 +108919,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99884] = 4, + [96975] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1455), 2, + ACTIONS(1406), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 5, + ACTIONS(1408), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(1450), 14, + ACTIONS(1401), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -112966,20 +108947,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99916] = 4, + [97007] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1495), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1497), 5, + ACTIONS(1375), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(1490), 14, + ACTIONS(1364), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -112994,20 +108975,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99948] = 4, + [97039] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 2, + ACTIONS(274), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 5, + ACTIONS(302), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(1392), 14, + ACTIONS(272), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -113022,20 +109003,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99980] = 4, + [97071] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(270), 2, + ACTIONS(1451), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(298), 5, + ACTIONS(1453), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(268), 14, + ACTIONS(1446), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -113050,20 +109031,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [100012] = 4, + [97103] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1444), 2, + ACTIONS(1470), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1446), 5, + ACTIONS(1375), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(1439), 14, + ACTIONS(1465), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -113078,60 +109059,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [100044] = 8, - ACTIONS(2108), 1, - anon_sym_not, - ACTIONS(2120), 1, - anon_sym_is, - ACTIONS(2368), 1, - anon_sym_EQ, - STATE(1111), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2118), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2100), 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(2366), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [100083] = 8, - ACTIONS(2138), 1, + [97135] = 8, + ACTIONS(2031), 1, anon_sym_not, - ACTIONS(2150), 1, + ACTIONS(2043), 1, anon_sym_is, - ACTIONS(2368), 1, + ACTIONS(2172), 1, anon_sym_as, - STATE(1168), 1, + STATE(1071), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2148), 2, + ACTIONS(2041), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2130), 6, + ACTIONS(2023), 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(2366), 8, + ACTIONS(2170), 8, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, @@ -113140,29 +109090,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_RBRACE, - [100122] = 8, - ACTIONS(2074), 1, + [97174] = 8, + ACTIONS(1967), 1, anon_sym_not, - ACTIONS(2086), 1, + ACTIONS(1979), 1, anon_sym_is, - ACTIONS(2368), 1, + ACTIONS(2172), 1, anon_sym_EQ, - STATE(1139), 1, + STATE(1094), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2084), 2, + ACTIONS(1977), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2064), 6, + ACTIONS(1957), 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(2366), 8, + ACTIONS(2170), 8, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -113171,22 +109121,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_RBRACE, sym_type_conversion, - [100161] = 7, - ACTIONS(2668), 1, + [97213] = 7, + ACTIONS(2554), 1, anon_sym_as, - ACTIONS(2670), 1, + ACTIONS(2556), 1, anon_sym_if, - ACTIONS(2672), 1, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(2674), 1, + ACTIONS(2560), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2422), 2, + ACTIONS(2378), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2420), 14, + ACTIONS(2376), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -113201,41 +109151,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [100198] = 4, + [97250] = 8, + ACTIONS(2001), 1, + anon_sym_not, + ACTIONS(2013), 1, + anon_sym_is, + ACTIONS(2172), 1, + anon_sym_EQ, + STATE(1047), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(270), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(342), 3, - anon_sym_RPAREN, + ACTIONS(2011), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1993), 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(2170), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [97289] = 4, + ACTIONS(2567), 1, + anon_sym_COMMA, + STATE(1577), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2565), 17, + sym__newline, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(268), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [100228] = 4, - ACTIONS(2681), 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, + [97319] = 4, + ACTIONS(2570), 1, anon_sym_COMMA, - STATE(1640), 1, + STATE(1577), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2679), 17, + ACTIONS(884), 17, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -113253,18 +109234,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100258] = 4, + [97349] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1369), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2572), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1364), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [97379] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1425), 3, + ACTIONS(1381), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1392), 14, + ACTIONS(1364), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -113279,18 +109286,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [100288] = 4, + [97409] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 2, + ACTIONS(274), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2684), 3, + ACTIONS(744), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1392), 14, + ACTIONS(272), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -113305,29 +109312,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [100318] = 8, - ACTIONS(2223), 1, + [97439] = 8, + ACTIONS(2156), 1, anon_sym_not, - ACTIONS(2235), 1, + ACTIONS(2168), 1, anon_sym_is, - ACTIONS(2368), 1, + ACTIONS(2172), 1, anon_sym_as, - STATE(1247), 1, + STATE(1232), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2233), 2, + ACTIONS(2166), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2215), 6, + ACTIONS(2148), 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(2366), 7, + ACTIONS(2170), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [97477] = 8, + ACTIONS(2113), 1, + anon_sym_not, + ACTIONS(2125), 1, + anon_sym_is, + ACTIONS(2172), 1, + anon_sym_as, + STATE(1231), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2123), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2105), 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(2170), 7, anon_sym_COMMA, anon_sym_if, anon_sym_async, @@ -113335,18 +109372,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [100356] = 4, + [97515] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(270), 2, + ACTIONS(274), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(768), 3, + ACTIONS(346), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(268), 14, + ACTIONS(272), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -113361,47 +109398,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [100386] = 8, - ACTIONS(2264), 1, - anon_sym_not, - ACTIONS(2276), 1, - anon_sym_is, - ACTIONS(2368), 1, - anon_sym_as, - STATE(1273), 1, - aux_sym_comparison_operator_repeat1, + [97545] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2274), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2256), 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(2366), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [100424] = 4, - ACTIONS(2686), 1, + ACTIONS(1369), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1375), 2, anon_sym_COMMA, - STATE(1640), 1, - aux_sym__patterns_repeat1, + anon_sym_in, + ACTIONS(1364), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [97574] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(892), 17, + ACTIONS(2565), 18, sym__newline, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, @@ -113417,17 +109446,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100454] = 4, + [97599] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1403), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1455), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1450), 14, + ACTIONS(1381), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1364), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -113442,90 +109471,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [100483] = 13, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2284), 1, + [97628] = 7, + ACTIONS(2235), 1, + anon_sym_not, + ACTIONS(2247), 1, + anon_sym_is, + STATE(1398), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2245), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2227), 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(2170), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [97663] = 13, + ACTIONS(1947), 1, anon_sym_DOT, - ACTIONS(2298), 1, + ACTIONS(1963), 1, anon_sym_LBRACK, - ACTIONS(2692), 1, + ACTIONS(2069), 1, + anon_sym_LPAREN, + ACTIONS(2578), 1, anon_sym_STAR_STAR, - ACTIONS(2698), 1, + ACTIONS(2584), 1, anon_sym_PIPE, - ACTIONS(2700), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2702), 1, + ACTIONS(2588), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2688), 2, + ACTIONS(2574), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2576), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2696), 2, + ACTIONS(2582), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1462), 2, + STATE(1439), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2694), 3, + ACTIONS(2580), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [100530] = 10, - ACTIONS(2165), 1, + [97710] = 8, + ACTIONS(2067), 1, anon_sym_DOT, - ACTIONS(2167), 1, + ACTIONS(2069), 1, anon_sym_LPAREN, - ACTIONS(2179), 1, + ACTIONS(2081), 1, anon_sym_LBRACK, - ACTIONS(2692), 1, + ACTIONS(2578), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2688), 2, + ACTIONS(2132), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2696), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1462), 2, + STATE(1439), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2694), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2199), 5, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [100571] = 8, - ACTIONS(2165), 1, - anon_sym_DOT, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2179), 1, - anon_sym_LBRACK, - ACTIONS(2692), 1, - anon_sym_STAR_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2201), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1462), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2199), 10, + ACTIONS(2130), 10, anon_sym_GT_GT, anon_sym_AT, anon_sym_PLUS, @@ -113536,302 +109562,257 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [100608] = 4, + [97747] = 8, + ACTIONS(2172), 1, + anon_sym_EQ, + ACTIONS(2265), 1, + anon_sym_not, + ACTIONS(2277), 1, + anon_sym_is, + STATE(1425), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(270), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(298), 2, + ACTIONS(2275), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2170), 6, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(268), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [100637] = 13, - ACTIONS(2167), 1, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2257), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [97784] = 13, + ACTIONS(2069), 1, anon_sym_LPAREN, - ACTIONS(2207), 1, + ACTIONS(2190), 1, anon_sym_DOT, - ACTIONS(2221), 1, + ACTIONS(2192), 1, anon_sym_LBRACK, - ACTIONS(2692), 1, + ACTIONS(2578), 1, anon_sym_STAR_STAR, - ACTIONS(2698), 1, + ACTIONS(2584), 1, anon_sym_PIPE, - ACTIONS(2700), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2702), 1, + ACTIONS(2588), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2688), 2, + ACTIONS(2574), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2576), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2696), 2, + ACTIONS(2582), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1462), 2, + STATE(1439), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2694), 3, + ACTIONS(2580), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [100684] = 13, - ACTIONS(2122), 1, + [97831] = 13, + ACTIONS(2067), 1, anon_sym_DOT, - ACTIONS(2136), 1, - anon_sym_LBRACK, - ACTIONS(2167), 1, + ACTIONS(2069), 1, anon_sym_LPAREN, - ACTIONS(2692), 1, + ACTIONS(2081), 1, + anon_sym_LBRACK, + ACTIONS(2578), 1, anon_sym_STAR_STAR, - ACTIONS(2698), 1, + ACTIONS(2584), 1, anon_sym_PIPE, - ACTIONS(2700), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2702), 1, + ACTIONS(2588), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2688), 2, + ACTIONS(2574), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2576), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2696), 2, + ACTIONS(2582), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1462), 2, + STATE(1439), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2694), 3, + ACTIONS(2580), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [100731] = 12, - ACTIONS(2165), 1, - anon_sym_DOT, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2179), 1, - anon_sym_LBRACK, - ACTIONS(2692), 1, - anon_sym_STAR_STAR, - ACTIONS(2702), 1, - anon_sym_CARET, + [97878] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2199), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2688), 2, + ACTIONS(274), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2696), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1462), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2694), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [100776] = 11, - ACTIONS(2165), 1, + ACTIONS(744), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(272), 14, anon_sym_DOT, - ACTIONS(2167), 1, anon_sym_LPAREN, - ACTIONS(2179), 1, - anon_sym_LBRACK, - ACTIONS(2692), 1, - anon_sym_STAR_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2688), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2696), 2, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, - STATE(1462), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2199), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(2694), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [100819] = 8, - ACTIONS(2300), 1, - anon_sym_not, - ACTIONS(2312), 1, - anon_sym_is, - ACTIONS(2368), 1, - anon_sym_EQ, - STATE(1508), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2310), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2292), 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(2366), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [100856] = 13, - ACTIONS(2092), 1, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [97907] = 13, + ACTIONS(2069), 1, + anon_sym_LPAREN, + ACTIONS(2249), 1, anon_sym_DOT, - ACTIONS(2106), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2692), 1, + ACTIONS(2578), 1, anon_sym_STAR_STAR, - ACTIONS(2698), 1, + ACTIONS(2584), 1, anon_sym_PIPE, - ACTIONS(2700), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2702), 1, + ACTIONS(2588), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2688), 2, + ACTIONS(2574), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2576), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2696), 2, + ACTIONS(2582), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1462), 2, + STATE(1439), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2694), 3, + ACTIONS(2580), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [100903] = 13, - ACTIONS(2165), 1, + [97954] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1406), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1408), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1401), 14, anon_sym_DOT, - ACTIONS(2167), 1, anon_sym_LPAREN, - ACTIONS(2179), 1, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(2199), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - ACTIONS(2692), 1, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [97983] = 13, + ACTIONS(2069), 1, + anon_sym_LPAREN, + ACTIONS(2578), 1, anon_sym_STAR_STAR, - ACTIONS(2700), 1, + ACTIONS(2584), 1, + anon_sym_PIPE, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2702), 1, + ACTIONS(2588), 1, anon_sym_CARET, + ACTIONS(2590), 1, + anon_sym_DOT, + ACTIONS(2592), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2688), 2, + ACTIONS(2574), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2576), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2696), 2, + ACTIONS(2582), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1462), 2, + STATE(1439), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2694), 3, + ACTIONS(2580), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [100950] = 9, - ACTIONS(2165), 1, - anon_sym_DOT, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2179), 1, - anon_sym_LBRACK, - ACTIONS(2692), 1, - anon_sym_STAR_STAR, + [98030] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2688), 2, + ACTIONS(274), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1462), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2694), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2199), 7, + ACTIONS(302), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(272), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [100989] = 4, + [98059] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(270), 2, + ACTIONS(1451), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(768), 2, + ACTIONS(1453), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(268), 14, + ACTIONS(1446), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -113846,76 +109827,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [101018] = 4, + [98088] = 13, + ACTIONS(2069), 1, + anon_sym_LPAREN, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2154), 1, + anon_sym_LBRACK, + ACTIONS(2578), 1, + anon_sym_STAR_STAR, + ACTIONS(2584), 1, + anon_sym_PIPE, + ACTIONS(2586), 1, + anon_sym_AMP, + ACTIONS(2588), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(270), 2, + ACTIONS(2574), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(342), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(268), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2576), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, + anon_sym_LT_LT, + ACTIONS(2582), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1439), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2580), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [101047] = 13, - ACTIONS(2167), 1, + [98135] = 13, + ACTIONS(2069), 1, anon_sym_LPAREN, - ACTIONS(2248), 1, + ACTIONS(2219), 1, anon_sym_DOT, - ACTIONS(2262), 1, + ACTIONS(2233), 1, anon_sym_LBRACK, - ACTIONS(2692), 1, + ACTIONS(2578), 1, anon_sym_STAR_STAR, - ACTIONS(2698), 1, + ACTIONS(2584), 1, anon_sym_PIPE, - ACTIONS(2700), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2702), 1, + ACTIONS(2588), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2688), 2, + ACTIONS(2574), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2576), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2696), 2, + ACTIONS(2582), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1462), 2, + STATE(1439), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2694), 3, + ACTIONS(2580), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [101094] = 4, + [98182] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2684), 2, + ACTIONS(2572), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1392), 14, + ACTIONS(1364), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -113930,61 +109920,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [101123] = 13, - ACTIONS(2167), 1, + [98211] = 13, + ACTIONS(2015), 1, + anon_sym_DOT, + ACTIONS(2029), 1, + anon_sym_LBRACK, + ACTIONS(2069), 1, anon_sym_LPAREN, - ACTIONS(2692), 1, + ACTIONS(2578), 1, anon_sym_STAR_STAR, - ACTIONS(2698), 1, + ACTIONS(2584), 1, anon_sym_PIPE, - ACTIONS(2700), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2702), 1, + ACTIONS(2588), 1, anon_sym_CARET, - ACTIONS(2704), 1, - anon_sym_DOT, - ACTIONS(2706), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2688), 2, + ACTIONS(2574), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2576), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2696), 2, + ACTIONS(2582), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1462), 2, + STATE(1439), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2694), 3, + ACTIONS(2580), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [101170] = 8, - ACTIONS(2165), 1, - anon_sym_DOT, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2179), 1, - anon_sym_LBRACK, - ACTIONS(2692), 1, - anon_sym_STAR_STAR, + [98258] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2201), 2, + ACTIONS(1375), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1470), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1462), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2199), 10, + ACTIONS(1465), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -113993,74 +109979,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [101207] = 2, + [98287] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2708), 18, - sym__newline, - anon_sym_SEMI, + ACTIONS(1451), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1453), 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, - [101232] = 13, - ACTIONS(2054), 1, + anon_sym_RBRACK, + ACTIONS(1446), 14, anon_sym_DOT, - ACTIONS(2070), 1, - anon_sym_LBRACK, - ACTIONS(2167), 1, anon_sym_LPAREN, - ACTIONS(2692), 1, - anon_sym_STAR_STAR, - ACTIONS(2698), 1, - anon_sym_PIPE, - ACTIONS(2700), 1, - anon_sym_AMP, - ACTIONS(2702), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2688), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2696), 2, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, - STATE(1462), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2694), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [101279] = 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [98316] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 2, + ACTIONS(274), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1425), 2, + ACTIONS(302), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1392), 14, + ACTIONS(272), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -114075,27 +110029,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [101308] = 8, - ACTIONS(2165), 1, - anon_sym_DOT, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2179), 1, - anon_sym_LBRACK, - ACTIONS(2692), 1, - anon_sym_STAR_STAR, + [98345] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2243), 2, + ACTIONS(1406), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1462), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2241), 10, + ACTIONS(1408), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1401), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -114104,17 +110054,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [101345] = 4, + [98374] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1444), 2, + ACTIONS(1451), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1446), 2, + ACTIONS(1453), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1439), 14, + anon_sym_in, + ACTIONS(1446), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -114129,11 +110079,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [101374] = 2, + [98403] = 11, + ACTIONS(2067), 1, + anon_sym_DOT, + ACTIONS(2069), 1, + anon_sym_LPAREN, + ACTIONS(2081), 1, + anon_sym_LBRACK, + ACTIONS(2578), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2574), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2576), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2582), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1439), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2051), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(2580), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [98446] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1403), 18, + ACTIONS(2594), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -114152,51 +110134,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [101399] = 13, - ACTIONS(2165), 1, - anon_sym_DOT, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2179), 1, - anon_sym_LBRACK, - ACTIONS(2692), 1, - anon_sym_STAR_STAR, - ACTIONS(2698), 1, - anon_sym_PIPE, - ACTIONS(2700), 1, - anon_sym_AMP, - ACTIONS(2702), 1, - anon_sym_CARET, + [98471] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2688), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2696), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1462), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2694), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [101446] = 4, + ACTIONS(1375), 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, + [98496] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2596), 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, + [98521] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1444), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1446), 2, - anon_sym_RPAREN, + ACTIONS(1375), 2, anon_sym_COMMA, - ACTIONS(1439), 14, + anon_sym_RBRACK, + ACTIONS(1364), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -114211,23 +110205,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [101475] = 4, + [98550] = 8, + ACTIONS(2067), 1, + anon_sym_DOT, + ACTIONS(2069), 1, + anon_sym_LPAREN, + ACTIONS(2081), 1, + anon_sym_LBRACK, + ACTIONS(2578), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(270), 2, + ACTIONS(2053), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(298), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(268), 14, - anon_sym_DOT, - anon_sym_LPAREN, + STATE(1439), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2051), 10, anon_sym_GT_GT, - anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -114236,48 +110234,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [101504] = 4, + [98587] = 13, + ACTIONS(1985), 1, + anon_sym_DOT, + ACTIONS(1999), 1, + anon_sym_LBRACK, + ACTIONS(2069), 1, + anon_sym_LPAREN, + ACTIONS(2578), 1, + anon_sym_STAR_STAR, + ACTIONS(2584), 1, + anon_sym_PIPE, + ACTIONS(2586), 1, + anon_sym_AMP, + ACTIONS(2588), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1403), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1455), 2, + ACTIONS(2574), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1450), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2576), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, + anon_sym_LT_LT, + ACTIONS(2582), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1439), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2580), 3, anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [98634] = 10, + ACTIONS(2067), 1, + anon_sym_DOT, + ACTIONS(2069), 1, + anon_sym_LPAREN, + ACTIONS(2081), 1, anon_sym_LBRACK, + ACTIONS(2578), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2574), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2582), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1439), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2580), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(2051), 5, + anon_sym_GT_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [101533] = 4, + [98675] = 8, + ACTIONS(2067), 1, + anon_sym_DOT, + ACTIONS(2069), 1, + anon_sym_LPAREN, + ACTIONS(2081), 1, + anon_sym_LBRACK, + ACTIONS(2578), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1495), 2, + ACTIONS(2053), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1497), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1490), 14, - anon_sym_DOT, - anon_sym_LPAREN, + STATE(1439), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2051), 10, anon_sym_GT_GT, - anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -114286,42 +110328,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [101562] = 4, + [98712] = 9, + ACTIONS(2067), 1, + anon_sym_DOT, + ACTIONS(2069), 1, + anon_sym_LPAREN, + ACTIONS(2081), 1, + anon_sym_LBRACK, + ACTIONS(2578), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1444), 2, + ACTIONS(2574), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1446), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1439), 14, + STATE(1439), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2580), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2051), 7, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [98751] = 13, + ACTIONS(2051), 1, + anon_sym_PIPE, + ACTIONS(2067), 1, anon_sym_DOT, + ACTIONS(2069), 1, anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2081), 1, anon_sym_LBRACK, + ACTIONS(2578), 1, + anon_sym_STAR_STAR, + ACTIONS(2586), 1, + anon_sym_AMP, + ACTIONS(2588), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2574), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2576), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2582), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1439), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2580), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + [98798] = 12, + ACTIONS(2067), 1, + anon_sym_DOT, + ACTIONS(2069), 1, + anon_sym_LPAREN, + ACTIONS(2081), 1, + anon_sym_LBRACK, + ACTIONS(2578), 1, + anon_sym_STAR_STAR, + ACTIONS(2588), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2051), 2, anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2574), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2576), 2, + anon_sym_GT_GT, anon_sym_LT_LT, - [101591] = 4, + ACTIONS(2582), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1439), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2580), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [98843] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 2, + ACTIONS(1375), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1470), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1392), 14, + ACTIONS(1465), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -114336,17 +110450,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [101620] = 4, + [98872] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1403), 2, + ACTIONS(1375), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1455), 2, + ACTIONS(1470), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1450), 14, + ACTIONS(1465), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -114361,17 +110475,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [101649] = 4, + [98901] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 2, + ACTIONS(1406), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1403), 2, + ACTIONS(1408), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1392), 14, + ACTIONS(1401), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -114386,74 +110500,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [101678] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2679), 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, - [101703] = 13, - ACTIONS(2167), 1, + [98930] = 13, + ACTIONS(2069), 1, anon_sym_LPAREN, - ACTIONS(2392), 1, + ACTIONS(2097), 1, anon_sym_DOT, - ACTIONS(2394), 1, + ACTIONS(2111), 1, anon_sym_LBRACK, - ACTIONS(2692), 1, + ACTIONS(2578), 1, anon_sym_STAR_STAR, - ACTIONS(2698), 1, + ACTIONS(2584), 1, anon_sym_PIPE, - ACTIONS(2700), 1, + ACTIONS(2586), 1, anon_sym_AMP, - ACTIONS(2702), 1, + ACTIONS(2588), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2688), 2, + ACTIONS(2574), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2690), 2, + ACTIONS(2576), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2696), 2, + ACTIONS(2582), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1462), 2, + STATE(1439), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2694), 3, + ACTIONS(2580), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [101750] = 4, + [98977] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(270), 2, + ACTIONS(274), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(298), 2, - anon_sym_RPAREN, + ACTIONS(302), 2, anon_sym_COMMA, - ACTIONS(268), 14, + anon_sym_RBRACK, + ACTIONS(272), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -114468,17 +110559,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [101779] = 4, + [99006] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1495), 2, + ACTIONS(274), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1497), 2, + ACTIONS(346), 2, anon_sym_COMMA, - anon_sym_in, - ACTIONS(1490), 14, + anon_sym_COLON, + ACTIONS(272), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -114493,17 +110584,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [101808] = 4, + [99035] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1495), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1497), 2, + ACTIONS(1375), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1490), 14, + ACTIONS(1364), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -114518,74 +110609,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [101837] = 4, + [99064] = 13, + ACTIONS(2598), 1, + sym_identifier, + ACTIONS(2600), 1, + anon_sym_LPAREN, + ACTIONS(2602), 1, + anon_sym_STAR, + ACTIONS(2604), 1, + anon_sym_COLON, + ACTIONS(2606), 1, + anon_sym_STAR_STAR, + ACTIONS(2608), 1, + anon_sym_SLASH, + STATE(2103), 1, + sym_parameter, + STATE(2107), 1, + sym_tuple_pattern, + STATE(2326), 1, + sym_lambda_parameters, + STATE(2347), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1403), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1392), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [101866] = 13, - ACTIONS(2167), 1, + STATE(2302), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2304), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [99110] = 13, + ACTIONS(2598), 1, + sym_identifier, + ACTIONS(2600), 1, anon_sym_LPAREN, - ACTIONS(2316), 1, - anon_sym_DOT, - ACTIONS(2330), 1, - anon_sym_LBRACK, - ACTIONS(2692), 1, + ACTIONS(2602), 1, + anon_sym_STAR, + ACTIONS(2606), 1, anon_sym_STAR_STAR, - ACTIONS(2698), 1, - anon_sym_PIPE, - ACTIONS(2700), 1, - anon_sym_AMP, - ACTIONS(2702), 1, - anon_sym_CARET, + ACTIONS(2608), 1, + anon_sym_SLASH, + ACTIONS(2610), 1, + anon_sym_COLON, + STATE(2103), 1, + sym_parameter, + STATE(2107), 1, + sym_tuple_pattern, + STATE(2347), 1, + sym__parameters, + STATE(2376), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2688), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2690), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2696), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1462), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2694), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [101913] = 2, + STATE(2302), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2304), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [99156] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2710), 18, - sym__newline, - anon_sym_SEMI, + ACTIONS(2565), 17, anon_sym_COMMA, anon_sym_COLON, + anon_sym_in, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -114600,131 +110697,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [101938] = 7, - ACTIONS(2332), 1, - anon_sym_not, - ACTIONS(2344), 1, - anon_sym_is, - STATE(1359), 1, - aux_sym_comparison_operator_repeat1, + [99180] = 4, + ACTIONS(2612), 1, + anon_sym_COMMA, + STATE(1631), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2342), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2324), 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(2366), 7, + ACTIONS(2565), 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, + [99208] = 4, + ACTIONS(2615), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + STATE(1631), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(884), 15, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [101973] = 13, - ACTIONS(2712), 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, + [99236] = 5, + ACTIONS(2619), 1, + anon_sym_COLON, + ACTIONS(2621), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2617), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(2623), 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, + [99266] = 13, + ACTIONS(2598), 1, sym_identifier, - ACTIONS(2714), 1, + ACTIONS(2600), 1, anon_sym_LPAREN, - ACTIONS(2716), 1, + ACTIONS(2602), 1, anon_sym_STAR, - ACTIONS(2718), 1, - anon_sym_COLON, - ACTIONS(2720), 1, + ACTIONS(2606), 1, anon_sym_STAR_STAR, - ACTIONS(2722), 1, + ACTIONS(2608), 1, anon_sym_SLASH, - STATE(2064), 1, + ACTIONS(2625), 1, + anon_sym_COLON, + STATE(2103), 1, sym_parameter, - STATE(2262), 1, + STATE(2107), 1, sym_tuple_pattern, - STATE(2365), 1, - sym_lambda_parameters, - STATE(2524), 1, + STATE(2347), 1, sym__parameters, + STATE(2401), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2291), 2, + STATE(2302), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2272), 5, + STATE(2304), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [102019] = 13, - ACTIONS(2712), 1, + [99312] = 13, + ACTIONS(2598), 1, sym_identifier, - ACTIONS(2714), 1, + ACTIONS(2600), 1, anon_sym_LPAREN, - ACTIONS(2716), 1, + ACTIONS(2602), 1, anon_sym_STAR, - ACTIONS(2720), 1, + ACTIONS(2606), 1, anon_sym_STAR_STAR, - ACTIONS(2722), 1, + ACTIONS(2608), 1, anon_sym_SLASH, - ACTIONS(2724), 1, + ACTIONS(2627), 1, anon_sym_COLON, - STATE(2064), 1, + STATE(2103), 1, sym_parameter, - STATE(2262), 1, + STATE(2107), 1, sym_tuple_pattern, - STATE(2480), 1, - sym_lambda_parameters, - STATE(2524), 1, + STATE(2347), 1, sym__parameters, + STATE(2386), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2291), 2, + STATE(2302), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2272), 5, + STATE(2304), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [102065] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2708), 17, - anon_sym_COMMA, + [99358] = 6, + ACTIONS(2619), 1, anon_sym_COLON, - anon_sym_in, + ACTIONS(2621), 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, - [102089] = 2, + ACTIONS(2629), 1, + anon_sym_COMMA, + STATE(1578), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1403), 17, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_EQ, + ACTIONS(2623), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114738,49 +110862,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [102113] = 13, - ACTIONS(2712), 1, + [99390] = 13, + ACTIONS(2598), 1, sym_identifier, - ACTIONS(2714), 1, + ACTIONS(2600), 1, anon_sym_LPAREN, - ACTIONS(2716), 1, + ACTIONS(2602), 1, anon_sym_STAR, - ACTIONS(2720), 1, + ACTIONS(2606), 1, anon_sym_STAR_STAR, - ACTIONS(2722), 1, + ACTIONS(2608), 1, anon_sym_SLASH, - ACTIONS(2726), 1, + ACTIONS(2631), 1, anon_sym_COLON, - STATE(2064), 1, + STATE(2103), 1, sym_parameter, - STATE(2262), 1, + STATE(2107), 1, sym_tuple_pattern, - STATE(2386), 1, - sym_lambda_parameters, - STATE(2524), 1, + STATE(2347), 1, sym__parameters, + STATE(2429), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2291), 2, + STATE(2302), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2272), 5, + STATE(2304), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [102159] = 4, - ACTIONS(2728), 1, - anon_sym_COMMA, - STATE(1712), 1, - aux_sym__patterns_repeat1, + [99436] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(892), 15, + ACTIONS(2594), 17, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_in, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -114795,527 +110917,459 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [102187] = 13, - ACTIONS(2712), 1, + [99460] = 13, + ACTIONS(2598), 1, sym_identifier, - ACTIONS(2714), 1, + ACTIONS(2600), 1, anon_sym_LPAREN, - ACTIONS(2716), 1, + ACTIONS(2602), 1, anon_sym_STAR, - ACTIONS(2720), 1, + ACTIONS(2606), 1, anon_sym_STAR_STAR, - ACTIONS(2722), 1, + ACTIONS(2608), 1, anon_sym_SLASH, - ACTIONS(2730), 1, + ACTIONS(2633), 1, anon_sym_COLON, - STATE(2064), 1, + STATE(2103), 1, sym_parameter, - STATE(2262), 1, + STATE(2107), 1, sym_tuple_pattern, - STATE(2452), 1, - sym_lambda_parameters, - STATE(2524), 1, + STATE(2347), 1, sym__parameters, + STATE(2449), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2291), 2, + STATE(2302), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2272), 5, + STATE(2304), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [102233] = 13, - ACTIONS(2712), 1, + [99506] = 13, + ACTIONS(2598), 1, sym_identifier, - ACTIONS(2714), 1, + ACTIONS(2600), 1, anon_sym_LPAREN, - ACTIONS(2716), 1, + ACTIONS(2602), 1, anon_sym_STAR, - ACTIONS(2720), 1, + ACTIONS(2606), 1, anon_sym_STAR_STAR, - ACTIONS(2722), 1, + ACTIONS(2608), 1, anon_sym_SLASH, - ACTIONS(2732), 1, + ACTIONS(2635), 1, anon_sym_COLON, - STATE(2064), 1, + STATE(2103), 1, sym_parameter, - STATE(2262), 1, + STATE(2107), 1, sym_tuple_pattern, - STATE(2368), 1, - sym_lambda_parameters, - STATE(2524), 1, + STATE(2347), 1, sym__parameters, + STATE(2465), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2291), 2, + STATE(2302), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2272), 5, + STATE(2304), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [102279] = 13, - ACTIONS(2712), 1, + [99552] = 13, + ACTIONS(2598), 1, sym_identifier, - ACTIONS(2714), 1, + ACTIONS(2600), 1, anon_sym_LPAREN, - ACTIONS(2716), 1, + ACTIONS(2602), 1, anon_sym_STAR, - ACTIONS(2720), 1, + ACTIONS(2606), 1, anon_sym_STAR_STAR, - ACTIONS(2722), 1, + ACTIONS(2608), 1, anon_sym_SLASH, - ACTIONS(2734), 1, + ACTIONS(2637), 1, anon_sym_COLON, - STATE(2064), 1, + STATE(2103), 1, sym_parameter, - STATE(2262), 1, + STATE(2107), 1, sym_tuple_pattern, - STATE(2391), 1, - sym_lambda_parameters, - STATE(2524), 1, + STATE(2347), 1, sym__parameters, + STATE(2461), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2291), 2, + STATE(2302), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2272), 5, + STATE(2304), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [102325] = 13, - ACTIONS(2712), 1, - sym_identifier, - ACTIONS(2714), 1, - anon_sym_LPAREN, - ACTIONS(2716), 1, - anon_sym_STAR, - ACTIONS(2720), 1, - anon_sym_STAR_STAR, - ACTIONS(2722), 1, - anon_sym_SLASH, - ACTIONS(2736), 1, - anon_sym_COLON, - STATE(2064), 1, - sym_parameter, - STATE(2262), 1, - sym_tuple_pattern, - STATE(2498), 1, - sym_lambda_parameters, - STATE(2524), 1, - sym__parameters, + [99598] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2291), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2272), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [102371] = 13, - ACTIONS(2712), 1, + ACTIONS(1375), 17, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [99622] = 13, + ACTIONS(2598), 1, sym_identifier, - ACTIONS(2714), 1, + ACTIONS(2600), 1, anon_sym_LPAREN, - ACTIONS(2716), 1, + ACTIONS(2602), 1, anon_sym_STAR, - ACTIONS(2720), 1, + ACTIONS(2606), 1, anon_sym_STAR_STAR, - ACTIONS(2722), 1, + ACTIONS(2608), 1, anon_sym_SLASH, - ACTIONS(2738), 1, + ACTIONS(2639), 1, anon_sym_COLON, - STATE(2064), 1, + STATE(2103), 1, sym_parameter, - STATE(2262), 1, + STATE(2107), 1, sym_tuple_pattern, - STATE(2396), 1, - sym_lambda_parameters, - STATE(2524), 1, + STATE(2347), 1, sym__parameters, + STATE(2372), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2291), 2, + STATE(2302), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2272), 5, + STATE(2304), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [102417] = 13, - ACTIONS(2712), 1, + [99668] = 13, + ACTIONS(2598), 1, sym_identifier, - ACTIONS(2714), 1, + ACTIONS(2600), 1, anon_sym_LPAREN, - ACTIONS(2716), 1, + ACTIONS(2602), 1, anon_sym_STAR, - ACTIONS(2720), 1, + ACTIONS(2606), 1, anon_sym_STAR_STAR, - ACTIONS(2722), 1, + ACTIONS(2608), 1, anon_sym_SLASH, - ACTIONS(2740), 1, + ACTIONS(2641), 1, anon_sym_COLON, - STATE(2064), 1, + STATE(2103), 1, sym_parameter, - STATE(2262), 1, + STATE(2107), 1, sym_tuple_pattern, - STATE(2401), 1, - sym_lambda_parameters, - STATE(2524), 1, + STATE(2347), 1, sym__parameters, + STATE(2381), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2291), 2, + STATE(2302), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2272), 5, + STATE(2304), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [102463] = 13, - ACTIONS(2712), 1, - sym_identifier, - ACTIONS(2714), 1, - anon_sym_LPAREN, - ACTIONS(2716), 1, - anon_sym_STAR, - ACTIONS(2720), 1, - anon_sym_STAR_STAR, - ACTIONS(2722), 1, - anon_sym_SLASH, - ACTIONS(2742), 1, - anon_sym_COLON, - STATE(2064), 1, - sym_parameter, - STATE(2262), 1, - sym_tuple_pattern, - STATE(2334), 1, - sym_lambda_parameters, - STATE(2524), 1, - sym__parameters, + [99714] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2291), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2272), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [102509] = 13, - ACTIONS(2712), 1, + ACTIONS(2596), 17, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [99738] = 13, + ACTIONS(2598), 1, sym_identifier, - ACTIONS(2714), 1, + ACTIONS(2600), 1, anon_sym_LPAREN, - ACTIONS(2716), 1, + ACTIONS(2602), 1, anon_sym_STAR, - ACTIONS(2720), 1, + ACTIONS(2606), 1, anon_sym_STAR_STAR, - ACTIONS(2722), 1, + ACTIONS(2608), 1, anon_sym_SLASH, - ACTIONS(2744), 1, + ACTIONS(2643), 1, anon_sym_COLON, - STATE(2064), 1, + STATE(2103), 1, sym_parameter, - STATE(2262), 1, + STATE(2107), 1, sym_tuple_pattern, - STATE(2421), 1, - sym_lambda_parameters, - STATE(2524), 1, + STATE(2347), 1, sym__parameters, + STATE(2445), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2291), 2, + STATE(2302), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2272), 5, + STATE(2304), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [102555] = 13, - ACTIONS(2712), 1, + [99784] = 13, + ACTIONS(2598), 1, sym_identifier, - ACTIONS(2714), 1, + ACTIONS(2600), 1, anon_sym_LPAREN, - ACTIONS(2716), 1, + ACTIONS(2602), 1, anon_sym_STAR, - ACTIONS(2720), 1, + ACTIONS(2606), 1, anon_sym_STAR_STAR, - ACTIONS(2722), 1, + ACTIONS(2608), 1, anon_sym_SLASH, - ACTIONS(2746), 1, + ACTIONS(2645), 1, anon_sym_COLON, - STATE(2064), 1, + STATE(2103), 1, sym_parameter, - STATE(2262), 1, + STATE(2107), 1, sym_tuple_pattern, - STATE(2339), 1, - sym_lambda_parameters, - STATE(2524), 1, + STATE(2347), 1, sym__parameters, + STATE(2371), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2291), 2, + STATE(2302), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2272), 5, + STATE(2304), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [102601] = 13, - ACTIONS(2712), 1, + [99830] = 13, + ACTIONS(2598), 1, sym_identifier, - ACTIONS(2714), 1, + ACTIONS(2600), 1, anon_sym_LPAREN, - ACTIONS(2716), 1, + ACTIONS(2602), 1, anon_sym_STAR, - ACTIONS(2720), 1, + ACTIONS(2606), 1, anon_sym_STAR_STAR, - ACTIONS(2722), 1, + ACTIONS(2608), 1, anon_sym_SLASH, - ACTIONS(2748), 1, + ACTIONS(2647), 1, anon_sym_COLON, - STATE(2064), 1, + STATE(2103), 1, sym_parameter, - STATE(2262), 1, + STATE(2107), 1, sym_tuple_pattern, - STATE(2377), 1, - sym_lambda_parameters, - STATE(2524), 1, + STATE(2347), 1, sym__parameters, + STATE(2366), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2291), 2, + STATE(2302), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2272), 5, + STATE(2304), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [102647] = 13, - ACTIONS(2712), 1, + [99876] = 13, + ACTIONS(2598), 1, sym_identifier, - ACTIONS(2714), 1, + ACTIONS(2600), 1, anon_sym_LPAREN, - ACTIONS(2716), 1, + ACTIONS(2602), 1, anon_sym_STAR, - ACTIONS(2720), 1, + ACTIONS(2606), 1, anon_sym_STAR_STAR, - ACTIONS(2722), 1, + ACTIONS(2608), 1, anon_sym_SLASH, - ACTIONS(2750), 1, + ACTIONS(2649), 1, anon_sym_COLON, - STATE(2064), 1, + STATE(2103), 1, sym_parameter, - STATE(2262), 1, + STATE(2107), 1, sym_tuple_pattern, - STATE(2404), 1, - sym_lambda_parameters, - STATE(2524), 1, + STATE(2347), 1, sym__parameters, + STATE(2446), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2291), 2, + STATE(2302), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2272), 5, + STATE(2304), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [102693] = 6, - ACTIONS(2752), 1, - anon_sym_COMMA, - ACTIONS(2754), 1, - anon_sym_COLON, - ACTIONS(2756), 1, - anon_sym_EQ, - STATE(1646), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2758), 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, - [102725] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2710), 17, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [102749] = 13, - ACTIONS(2712), 1, + [99922] = 13, + ACTIONS(2598), 1, sym_identifier, - ACTIONS(2714), 1, + ACTIONS(2600), 1, anon_sym_LPAREN, - ACTIONS(2716), 1, + ACTIONS(2602), 1, anon_sym_STAR, - ACTIONS(2720), 1, + ACTIONS(2606), 1, anon_sym_STAR_STAR, - ACTIONS(2722), 1, + ACTIONS(2608), 1, anon_sym_SLASH, - ACTIONS(2760), 1, + ACTIONS(2651), 1, anon_sym_COLON, - STATE(2064), 1, + STATE(2103), 1, sym_parameter, - STATE(2262), 1, + STATE(2107), 1, sym_tuple_pattern, - STATE(2357), 1, - sym_lambda_parameters, - STATE(2524), 1, + STATE(2347), 1, sym__parameters, + STATE(2353), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2291), 2, + STATE(2302), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2272), 5, + STATE(2304), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [102795] = 13, - ACTIONS(2712), 1, + [99968] = 13, + ACTIONS(2598), 1, sym_identifier, - ACTIONS(2714), 1, + ACTIONS(2600), 1, anon_sym_LPAREN, - ACTIONS(2716), 1, + ACTIONS(2602), 1, anon_sym_STAR, - ACTIONS(2720), 1, + ACTIONS(2606), 1, anon_sym_STAR_STAR, - ACTIONS(2722), 1, + ACTIONS(2608), 1, anon_sym_SLASH, - ACTIONS(2762), 1, + ACTIONS(2653), 1, anon_sym_COLON, - STATE(2064), 1, + STATE(2103), 1, sym_parameter, - STATE(2262), 1, + STATE(2107), 1, sym_tuple_pattern, - STATE(2524), 1, + STATE(2347), 1, sym__parameters, - STATE(2533), 1, + STATE(2473), 1, sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2291), 2, + STATE(2302), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2272), 5, + STATE(2304), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [102841] = 13, - ACTIONS(2712), 1, + [100014] = 13, + ACTIONS(2598), 1, sym_identifier, - ACTIONS(2714), 1, + ACTIONS(2600), 1, anon_sym_LPAREN, - ACTIONS(2716), 1, + ACTIONS(2602), 1, anon_sym_STAR, - ACTIONS(2720), 1, + ACTIONS(2606), 1, anon_sym_STAR_STAR, - ACTIONS(2722), 1, + ACTIONS(2608), 1, anon_sym_SLASH, - ACTIONS(2764), 1, + ACTIONS(2655), 1, anon_sym_COLON, - STATE(2064), 1, + STATE(2103), 1, sym_parameter, - STATE(2262), 1, + STATE(2107), 1, sym_tuple_pattern, - STATE(2488), 1, + STATE(2340), 1, sym_lambda_parameters, - STATE(2524), 1, + STATE(2347), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2291), 2, + STATE(2302), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2272), 5, + STATE(2304), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [102887] = 4, - ACTIONS(2766), 1, + [100060] = 6, + ACTIONS(2619), 1, + anon_sym_COLON, + ACTIONS(2621), 1, + anon_sym_EQ, + ACTIONS(2657), 1, anon_sym_COMMA, - STATE(1712), 1, + STATE(1632), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2679), 15, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(2623), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115329,11985 +111383,12182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [102915] = 13, - ACTIONS(2712), 1, + [100092] = 13, + ACTIONS(2598), 1, sym_identifier, - ACTIONS(2714), 1, + ACTIONS(2600), 1, anon_sym_LPAREN, - ACTIONS(2716), 1, + ACTIONS(2602), 1, anon_sym_STAR, - ACTIONS(2720), 1, + ACTIONS(2606), 1, anon_sym_STAR_STAR, - ACTIONS(2722), 1, + ACTIONS(2608), 1, anon_sym_SLASH, - ACTIONS(2769), 1, + ACTIONS(2659), 1, anon_sym_COLON, - STATE(2064), 1, + STATE(2103), 1, sym_parameter, - STATE(2262), 1, + STATE(2107), 1, sym_tuple_pattern, - STATE(2403), 1, - sym_lambda_parameters, - STATE(2524), 1, + STATE(2347), 1, sym__parameters, + STATE(2393), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2291), 2, + STATE(2302), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2272), 5, + STATE(2304), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [102961] = 5, - ACTIONS(2754), 1, - anon_sym_COLON, - ACTIONS(2756), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2771), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(2758), 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, - [102991] = 13, - ACTIONS(2712), 1, + [100138] = 13, + ACTIONS(2598), 1, sym_identifier, - ACTIONS(2714), 1, + ACTIONS(2600), 1, anon_sym_LPAREN, - ACTIONS(2716), 1, + ACTIONS(2602), 1, anon_sym_STAR, - ACTIONS(2720), 1, + ACTIONS(2606), 1, anon_sym_STAR_STAR, - ACTIONS(2722), 1, + ACTIONS(2608), 1, anon_sym_SLASH, - ACTIONS(2773), 1, + ACTIONS(2661), 1, anon_sym_COLON, - STATE(2064), 1, + STATE(2103), 1, sym_parameter, - STATE(2262), 1, + STATE(2107), 1, sym_tuple_pattern, - STATE(2472), 1, - sym_lambda_parameters, - STATE(2524), 1, + STATE(2347), 1, sym__parameters, + STATE(2488), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2291), 2, + STATE(2302), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2272), 5, + STATE(2304), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [103037] = 6, - ACTIONS(2754), 1, - anon_sym_COLON, - ACTIONS(2756), 1, - anon_sym_EQ, - ACTIONS(2775), 1, - anon_sym_COMMA, - STATE(1695), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2758), 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, - [103069] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2679), 17, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [103093] = 12, - ACTIONS(2777), 1, + [100184] = 12, + ACTIONS(2663), 1, sym_identifier, - ACTIONS(2779), 1, + ACTIONS(2665), 1, anon_sym_LPAREN, - ACTIONS(2781), 1, + ACTIONS(2667), 1, anon_sym_RPAREN, - ACTIONS(2783), 1, + ACTIONS(2669), 1, anon_sym_STAR, - ACTIONS(2785), 1, + ACTIONS(2671), 1, anon_sym_STAR_STAR, - ACTIONS(2787), 1, + ACTIONS(2673), 1, anon_sym_SLASH, - STATE(2117), 1, + STATE(2186), 1, sym_parameter, - STATE(2119), 1, + STATE(2196), 1, sym_tuple_pattern, - STATE(2367), 1, + STATE(2413), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2128), 2, + STATE(2171), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2299), 5, + STATE(2225), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [103136] = 11, - ACTIONS(2712), 1, + [100227] = 11, + ACTIONS(2663), 1, sym_identifier, - ACTIONS(2714), 1, + ACTIONS(2665), 1, anon_sym_LPAREN, - ACTIONS(2716), 1, + ACTIONS(2669), 1, anon_sym_STAR, - ACTIONS(2720), 1, + ACTIONS(2671), 1, anon_sym_STAR_STAR, - ACTIONS(2722), 1, + ACTIONS(2673), 1, anon_sym_SLASH, - ACTIONS(2789), 1, - anon_sym_COLON, - STATE(2262), 1, + ACTIONS(2675), 1, + anon_sym_RPAREN, + STATE(2196), 1, sym_tuple_pattern, - STATE(2322), 1, + STATE(2283), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2291), 2, + STATE(2171), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2272), 5, + STATE(2225), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [103176] = 11, - ACTIONS(2777), 1, + [100267] = 4, + ACTIONS(2619), 1, + anon_sym_COLON, + ACTIONS(2621), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2623), 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, + [100293] = 11, + ACTIONS(2598), 1, sym_identifier, - ACTIONS(2779), 1, + ACTIONS(2600), 1, anon_sym_LPAREN, - ACTIONS(2783), 1, + ACTIONS(2602), 1, anon_sym_STAR, - ACTIONS(2785), 1, + ACTIONS(2606), 1, anon_sym_STAR_STAR, - ACTIONS(2787), 1, + ACTIONS(2608), 1, anon_sym_SLASH, - ACTIONS(2789), 1, - anon_sym_RPAREN, - STATE(2119), 1, + ACTIONS(2677), 1, + anon_sym_COLON, + STATE(2107), 1, sym_tuple_pattern, - STATE(2324), 1, + STATE(2299), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2128), 2, + STATE(2302), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2299), 5, + STATE(2304), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [103216] = 11, - ACTIONS(2712), 1, + [100333] = 11, + ACTIONS(2598), 1, sym_identifier, - ACTIONS(2714), 1, + ACTIONS(2600), 1, anon_sym_LPAREN, - ACTIONS(2716), 1, + ACTIONS(2602), 1, anon_sym_STAR, - ACTIONS(2720), 1, + ACTIONS(2606), 1, anon_sym_STAR_STAR, - ACTIONS(2722), 1, + ACTIONS(2608), 1, anon_sym_SLASH, - ACTIONS(2791), 1, + ACTIONS(2675), 1, anon_sym_COLON, - STATE(2262), 1, + STATE(2107), 1, sym_tuple_pattern, - STATE(2322), 1, + STATE(2299), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2291), 2, + STATE(2302), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2272), 5, + STATE(2304), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [103256] = 4, - ACTIONS(2754), 1, - anon_sym_COLON, - ACTIONS(2756), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2758), 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, - [103282] = 11, - ACTIONS(2777), 1, + [100373] = 11, + ACTIONS(2663), 1, sym_identifier, - ACTIONS(2779), 1, + ACTIONS(2665), 1, anon_sym_LPAREN, - ACTIONS(2783), 1, + ACTIONS(2669), 1, anon_sym_STAR, - ACTIONS(2785), 1, + ACTIONS(2671), 1, anon_sym_STAR_STAR, - ACTIONS(2787), 1, + ACTIONS(2673), 1, anon_sym_SLASH, - ACTIONS(2791), 1, + ACTIONS(2677), 1, anon_sym_RPAREN, - STATE(2119), 1, + STATE(2196), 1, sym_tuple_pattern, - STATE(2324), 1, + STATE(2283), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2128), 2, + STATE(2171), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2299), 5, + STATE(2225), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [103322] = 10, - ACTIONS(2712), 1, + [100413] = 10, + ACTIONS(2598), 1, sym_identifier, - ACTIONS(2714), 1, + ACTIONS(2600), 1, anon_sym_LPAREN, - ACTIONS(2716), 1, + ACTIONS(2602), 1, anon_sym_STAR, - ACTIONS(2720), 1, + ACTIONS(2606), 1, anon_sym_STAR_STAR, - ACTIONS(2722), 1, + ACTIONS(2608), 1, anon_sym_SLASH, - STATE(2262), 1, + STATE(2107), 1, sym_tuple_pattern, - STATE(2322), 1, + STATE(2299), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2291), 2, + STATE(2302), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2272), 5, + STATE(2304), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [103359] = 10, - ACTIONS(2777), 1, + [100450] = 10, + ACTIONS(2663), 1, sym_identifier, - ACTIONS(2779), 1, + ACTIONS(2665), 1, anon_sym_LPAREN, - ACTIONS(2783), 1, + ACTIONS(2669), 1, anon_sym_STAR, - ACTIONS(2785), 1, + ACTIONS(2671), 1, anon_sym_STAR_STAR, - ACTIONS(2787), 1, + ACTIONS(2673), 1, anon_sym_SLASH, - STATE(2119), 1, + STATE(2196), 1, sym_tuple_pattern, - STATE(2324), 1, + STATE(2283), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2128), 2, + STATE(2171), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2299), 5, + STATE(2225), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [103396] = 13, - ACTIONS(2793), 1, + [100487] = 13, + ACTIONS(2679), 1, anon_sym_COMMA, - ACTIONS(2795), 1, + ACTIONS(2681), 1, anon_sym_as, - ACTIONS(2797), 1, + ACTIONS(2683), 1, anon_sym_if, - ACTIONS(2799), 1, + ACTIONS(2685), 1, anon_sym_COLON, - ACTIONS(2801), 1, + ACTIONS(2687), 1, anon_sym_async, - ACTIONS(2803), 1, + ACTIONS(2689), 1, anon_sym_for, - ACTIONS(2805), 1, + ACTIONS(2691), 1, anon_sym_and, - ACTIONS(2807), 1, + ACTIONS(2693), 1, anon_sym_or, - ACTIONS(2809), 1, + ACTIONS(2695), 1, anon_sym_RBRACE, - STATE(1902), 1, + STATE(1791), 1, sym_for_in_clause, - STATE(2101), 1, + STATE(2022), 1, aux_sym__collection_elements_repeat1, - STATE(2336), 1, + STATE(2411), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [103437] = 13, - ACTIONS(2793), 1, + [100528] = 13, + ACTIONS(2679), 1, anon_sym_COMMA, - ACTIONS(2795), 1, + ACTIONS(2681), 1, anon_sym_as, - ACTIONS(2797), 1, + ACTIONS(2683), 1, anon_sym_if, - ACTIONS(2799), 1, + ACTIONS(2685), 1, anon_sym_COLON, - ACTIONS(2801), 1, + ACTIONS(2687), 1, anon_sym_async, - ACTIONS(2803), 1, + ACTIONS(2689), 1, anon_sym_for, - ACTIONS(2805), 1, + ACTIONS(2691), 1, anon_sym_and, - ACTIONS(2807), 1, + ACTIONS(2693), 1, anon_sym_or, - ACTIONS(2809), 1, + ACTIONS(2695), 1, anon_sym_RBRACE, - STATE(1902), 1, + STATE(1791), 1, sym_for_in_clause, - STATE(2101), 1, + STATE(2022), 1, aux_sym__collection_elements_repeat1, - STATE(2515), 1, + STATE(2317), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [103478] = 13, - ACTIONS(2793), 1, + [100569] = 13, + ACTIONS(2679), 1, anon_sym_COMMA, - ACTIONS(2795), 1, + ACTIONS(2681), 1, anon_sym_as, - ACTIONS(2797), 1, + ACTIONS(2683), 1, anon_sym_if, - ACTIONS(2799), 1, + ACTIONS(2685), 1, anon_sym_COLON, - ACTIONS(2801), 1, + ACTIONS(2687), 1, anon_sym_async, - ACTIONS(2803), 1, + ACTIONS(2689), 1, anon_sym_for, - ACTIONS(2805), 1, + ACTIONS(2691), 1, anon_sym_and, - ACTIONS(2807), 1, + ACTIONS(2693), 1, anon_sym_or, - ACTIONS(2809), 1, + ACTIONS(2695), 1, anon_sym_RBRACE, - STATE(1902), 1, + STATE(1791), 1, sym_for_in_clause, - STATE(2101), 1, + STATE(2022), 1, aux_sym__collection_elements_repeat1, - STATE(2349), 1, + STATE(2395), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [103519] = 13, - ACTIONS(2793), 1, + [100610] = 13, + ACTIONS(2679), 1, anon_sym_COMMA, - ACTIONS(2795), 1, + ACTIONS(2681), 1, anon_sym_as, - ACTIONS(2797), 1, + ACTIONS(2683), 1, anon_sym_if, - ACTIONS(2799), 1, + ACTIONS(2685), 1, anon_sym_COLON, - ACTIONS(2801), 1, + ACTIONS(2687), 1, anon_sym_async, - ACTIONS(2803), 1, + ACTIONS(2689), 1, anon_sym_for, - ACTIONS(2805), 1, + ACTIONS(2691), 1, anon_sym_and, - ACTIONS(2807), 1, + ACTIONS(2693), 1, anon_sym_or, - ACTIONS(2809), 1, + ACTIONS(2695), 1, anon_sym_RBRACE, - STATE(1902), 1, + STATE(1791), 1, sym_for_in_clause, - STATE(2101), 1, + STATE(2022), 1, aux_sym__collection_elements_repeat1, - STATE(2426), 1, + STATE(2484), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [103560] = 13, - ACTIONS(2793), 1, + [100651] = 13, + ACTIONS(2679), 1, anon_sym_COMMA, - ACTIONS(2795), 1, + ACTIONS(2681), 1, anon_sym_as, - ACTIONS(2797), 1, + ACTIONS(2683), 1, anon_sym_if, - ACTIONS(2799), 1, + ACTIONS(2685), 1, anon_sym_COLON, - ACTIONS(2801), 1, + ACTIONS(2687), 1, anon_sym_async, - ACTIONS(2803), 1, + ACTIONS(2689), 1, anon_sym_for, - ACTIONS(2805), 1, + ACTIONS(2691), 1, anon_sym_and, - ACTIONS(2807), 1, + ACTIONS(2693), 1, anon_sym_or, - ACTIONS(2809), 1, + ACTIONS(2695), 1, anon_sym_RBRACE, - STATE(1902), 1, + STATE(1791), 1, sym_for_in_clause, - STATE(2101), 1, + STATE(2022), 1, aux_sym__collection_elements_repeat1, - STATE(2375), 1, + STATE(2509), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [103601] = 13, - ACTIONS(2793), 1, + [100692] = 13, + ACTIONS(2679), 1, anon_sym_COMMA, - ACTIONS(2795), 1, + ACTIONS(2681), 1, anon_sym_as, - ACTIONS(2797), 1, + ACTIONS(2683), 1, anon_sym_if, - ACTIONS(2799), 1, + ACTIONS(2685), 1, anon_sym_COLON, - ACTIONS(2801), 1, + ACTIONS(2687), 1, anon_sym_async, - ACTIONS(2803), 1, + ACTIONS(2689), 1, anon_sym_for, - ACTIONS(2805), 1, + ACTIONS(2691), 1, anon_sym_and, - ACTIONS(2807), 1, + ACTIONS(2693), 1, anon_sym_or, - ACTIONS(2809), 1, + ACTIONS(2695), 1, anon_sym_RBRACE, - STATE(1902), 1, + STATE(1791), 1, sym_for_in_clause, - STATE(2101), 1, + STATE(2022), 1, aux_sym__collection_elements_repeat1, - STATE(2522), 1, + STATE(2456), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [103642] = 13, - ACTIONS(2793), 1, + [100733] = 13, + ACTIONS(2679), 1, anon_sym_COMMA, - ACTIONS(2795), 1, + ACTIONS(2681), 1, anon_sym_as, - ACTIONS(2797), 1, + ACTIONS(2683), 1, anon_sym_if, - ACTIONS(2799), 1, + ACTIONS(2685), 1, anon_sym_COLON, - ACTIONS(2801), 1, + ACTIONS(2687), 1, anon_sym_async, - ACTIONS(2803), 1, + ACTIONS(2689), 1, anon_sym_for, - ACTIONS(2805), 1, + ACTIONS(2691), 1, anon_sym_and, - ACTIONS(2807), 1, + ACTIONS(2693), 1, anon_sym_or, - ACTIONS(2809), 1, + ACTIONS(2695), 1, anon_sym_RBRACE, - STATE(1902), 1, + STATE(1791), 1, sym_for_in_clause, - STATE(2101), 1, + STATE(2022), 1, aux_sym__collection_elements_repeat1, - STATE(2387), 1, + STATE(2433), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [103683] = 13, - ACTIONS(2793), 1, + [100774] = 13, + ACTIONS(2679), 1, anon_sym_COMMA, - ACTIONS(2795), 1, + ACTIONS(2681), 1, anon_sym_as, - ACTIONS(2797), 1, + ACTIONS(2683), 1, anon_sym_if, - ACTIONS(2799), 1, + ACTIONS(2685), 1, anon_sym_COLON, - ACTIONS(2801), 1, + ACTIONS(2687), 1, anon_sym_async, - ACTIONS(2803), 1, + ACTIONS(2689), 1, anon_sym_for, - ACTIONS(2805), 1, + ACTIONS(2691), 1, anon_sym_and, - ACTIONS(2807), 1, + ACTIONS(2693), 1, anon_sym_or, - ACTIONS(2809), 1, + ACTIONS(2695), 1, anon_sym_RBRACE, - STATE(1902), 1, + STATE(1791), 1, sym_for_in_clause, - STATE(2101), 1, + STATE(2022), 1, aux_sym__collection_elements_repeat1, - STATE(2473), 1, + STATE(2356), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [103724] = 12, - ACTIONS(2811), 1, + [100815] = 12, + ACTIONS(2697), 1, anon_sym_RPAREN, - ACTIONS(2813), 1, + ACTIONS(2699), 1, anon_sym_COMMA, - ACTIONS(2815), 1, + ACTIONS(2701), 1, anon_sym_as, - ACTIONS(2817), 1, + ACTIONS(2703), 1, anon_sym_if, - ACTIONS(2819), 1, + ACTIONS(2705), 1, anon_sym_async, - ACTIONS(2821), 1, + ACTIONS(2707), 1, anon_sym_for, - ACTIONS(2823), 1, + ACTIONS(2709), 1, anon_sym_and, - ACTIONS(2825), 1, + ACTIONS(2711), 1, anon_sym_or, - STATE(1893), 1, + STATE(1788), 1, sym_for_in_clause, - STATE(2085), 1, + STATE(2073), 1, aux_sym_argument_list_repeat1, - STATE(2536), 1, + STATE(2346), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [103762] = 12, - ACTIONS(2815), 1, + [100853] = 12, + ACTIONS(2701), 1, anon_sym_as, - ACTIONS(2817), 1, + ACTIONS(2703), 1, anon_sym_if, - ACTIONS(2819), 1, + ACTIONS(2705), 1, anon_sym_async, - ACTIONS(2821), 1, + ACTIONS(2707), 1, anon_sym_for, - ACTIONS(2823), 1, + ACTIONS(2709), 1, anon_sym_and, - ACTIONS(2825), 1, + ACTIONS(2711), 1, anon_sym_or, - ACTIONS(2827), 1, + ACTIONS(2713), 1, anon_sym_RPAREN, - ACTIONS(2829), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - STATE(1893), 1, + STATE(1788), 1, sym_for_in_clause, - STATE(2251), 1, + STATE(2097), 1, aux_sym_argument_list_repeat1, - STATE(2518), 1, + STATE(2358), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [103800] = 12, - ACTIONS(2815), 1, - anon_sym_as, - ACTIONS(2817), 1, - anon_sym_if, - ACTIONS(2819), 1, - anon_sym_async, - ACTIONS(2821), 1, - anon_sym_for, - ACTIONS(2823), 1, - anon_sym_and, - ACTIONS(2825), 1, - anon_sym_or, - ACTIONS(2831), 1, - anon_sym_RPAREN, - ACTIONS(2833), 1, + [100891] = 12, + ACTIONS(2695), 1, + anon_sym_RBRACK, + ACTIONS(2717), 1, anon_sym_COMMA, - STATE(1893), 1, - sym_for_in_clause, - STATE(2158), 1, - aux_sym_argument_list_repeat1, - STATE(2459), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [103838] = 12, - ACTIONS(2815), 1, + ACTIONS(2719), 1, anon_sym_as, - ACTIONS(2817), 1, + ACTIONS(2721), 1, anon_sym_if, - ACTIONS(2819), 1, + ACTIONS(2723), 1, anon_sym_async, - ACTIONS(2821), 1, + ACTIONS(2725), 1, anon_sym_for, - ACTIONS(2823), 1, + ACTIONS(2727), 1, anon_sym_and, - ACTIONS(2825), 1, + ACTIONS(2729), 1, anon_sym_or, - ACTIONS(2835), 1, - anon_sym_RPAREN, - ACTIONS(2837), 1, - anon_sym_COMMA, - STATE(1893), 1, + STATE(1832), 1, sym_for_in_clause, - STATE(2123), 1, + STATE(2062), 1, aux_sym__collection_elements_repeat1, - STATE(2485), 1, + STATE(2435), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [103876] = 12, - ACTIONS(2815), 1, + [100929] = 12, + ACTIONS(2701), 1, anon_sym_as, - ACTIONS(2817), 1, + ACTIONS(2703), 1, anon_sym_if, - ACTIONS(2819), 1, + ACTIONS(2705), 1, anon_sym_async, - ACTIONS(2821), 1, + ACTIONS(2707), 1, anon_sym_for, - ACTIONS(2823), 1, + ACTIONS(2709), 1, anon_sym_and, - ACTIONS(2825), 1, + ACTIONS(2711), 1, anon_sym_or, - ACTIONS(2837), 1, - anon_sym_COMMA, - ACTIONS(2839), 1, + ACTIONS(2731), 1, anon_sym_RPAREN, - STATE(1893), 1, + ACTIONS(2733), 1, + anon_sym_COMMA, + STATE(1788), 1, sym_for_in_clause, - STATE(2123), 1, - aux_sym__collection_elements_repeat1, - STATE(2459), 1, + STATE(2156), 1, + aux_sym_argument_list_repeat1, + STATE(2364), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [103914] = 12, - ACTIONS(2809), 1, - anon_sym_RBRACK, - ACTIONS(2841), 1, - anon_sym_COMMA, - ACTIONS(2843), 1, + [100967] = 12, + ACTIONS(2701), 1, anon_sym_as, - ACTIONS(2845), 1, + ACTIONS(2703), 1, anon_sym_if, - ACTIONS(2847), 1, + ACTIONS(2705), 1, anon_sym_async, - ACTIONS(2849), 1, + ACTIONS(2707), 1, anon_sym_for, - ACTIONS(2851), 1, + ACTIONS(2709), 1, anon_sym_and, - ACTIONS(2853), 1, + ACTIONS(2711), 1, anon_sym_or, - STATE(1898), 1, + ACTIONS(2735), 1, + anon_sym_RPAREN, + ACTIONS(2737), 1, + anon_sym_COMMA, + STATE(1788), 1, sym_for_in_clause, - STATE(2077), 1, - aux_sym__collection_elements_repeat1, - STATE(2337), 1, + STATE(2120), 1, + aux_sym_argument_list_repeat1, + STATE(2313), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [103952] = 12, - ACTIONS(2809), 1, + [101005] = 12, + ACTIONS(2695), 1, anon_sym_RBRACK, - ACTIONS(2841), 1, + ACTIONS(2717), 1, anon_sym_COMMA, - ACTIONS(2843), 1, + ACTIONS(2719), 1, anon_sym_as, - ACTIONS(2845), 1, + ACTIONS(2721), 1, anon_sym_if, - ACTIONS(2847), 1, + ACTIONS(2723), 1, anon_sym_async, - ACTIONS(2849), 1, + ACTIONS(2725), 1, anon_sym_for, - ACTIONS(2851), 1, + ACTIONS(2727), 1, anon_sym_and, - ACTIONS(2853), 1, + ACTIONS(2729), 1, anon_sym_or, - STATE(1898), 1, + STATE(1832), 1, sym_for_in_clause, - STATE(2077), 1, + STATE(2062), 1, aux_sym__collection_elements_repeat1, - STATE(2347), 1, + STATE(2357), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [103990] = 12, - ACTIONS(2815), 1, + [101043] = 12, + ACTIONS(2701), 1, anon_sym_as, - ACTIONS(2817), 1, + ACTIONS(2703), 1, anon_sym_if, - ACTIONS(2819), 1, + ACTIONS(2705), 1, anon_sym_async, - ACTIONS(2821), 1, + ACTIONS(2707), 1, anon_sym_for, - ACTIONS(2823), 1, + ACTIONS(2709), 1, anon_sym_and, - ACTIONS(2825), 1, + ACTIONS(2711), 1, anon_sym_or, - ACTIONS(2837), 1, - anon_sym_COMMA, - ACTIONS(2855), 1, + ACTIONS(2739), 1, anon_sym_RPAREN, - STATE(1893), 1, + ACTIONS(2741), 1, + anon_sym_COMMA, + STATE(1788), 1, sym_for_in_clause, - STATE(2123), 1, + STATE(2194), 1, aux_sym__collection_elements_repeat1, - STATE(2389), 1, + STATE(2364), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104028] = 12, - ACTIONS(2815), 1, + [101081] = 12, + ACTIONS(2701), 1, anon_sym_as, - ACTIONS(2817), 1, + ACTIONS(2703), 1, anon_sym_if, - ACTIONS(2819), 1, + ACTIONS(2705), 1, anon_sym_async, - ACTIONS(2821), 1, + ACTIONS(2707), 1, anon_sym_for, - ACTIONS(2823), 1, + ACTIONS(2709), 1, anon_sym_and, - ACTIONS(2825), 1, + ACTIONS(2711), 1, anon_sym_or, - ACTIONS(2837), 1, - anon_sym_COMMA, - ACTIONS(2857), 1, + ACTIONS(2743), 1, anon_sym_RPAREN, - STATE(1893), 1, + ACTIONS(2745), 1, + anon_sym_COMMA, + STATE(1788), 1, sym_for_in_clause, - STATE(2123), 1, - aux_sym__collection_elements_repeat1, - STATE(2518), 1, + STATE(2167), 1, + aux_sym_argument_list_repeat1, + STATE(2505), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104066] = 12, - ACTIONS(2809), 1, - anon_sym_RBRACK, - ACTIONS(2841), 1, - anon_sym_COMMA, - ACTIONS(2843), 1, + [101119] = 12, + ACTIONS(2701), 1, anon_sym_as, - ACTIONS(2845), 1, + ACTIONS(2703), 1, anon_sym_if, - ACTIONS(2847), 1, + ACTIONS(2705), 1, anon_sym_async, - ACTIONS(2849), 1, + ACTIONS(2707), 1, anon_sym_for, - ACTIONS(2851), 1, + ACTIONS(2709), 1, anon_sym_and, - ACTIONS(2853), 1, + ACTIONS(2711), 1, anon_sym_or, - STATE(1898), 1, + ACTIONS(2741), 1, + anon_sym_COMMA, + ACTIONS(2747), 1, + anon_sym_RPAREN, + STATE(1788), 1, sym_for_in_clause, - STATE(2077), 1, + STATE(2194), 1, aux_sym__collection_elements_repeat1, - STATE(2443), 1, + STATE(2505), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104104] = 12, - ACTIONS(2809), 1, - anon_sym_RBRACK, - ACTIONS(2841), 1, - anon_sym_COMMA, - ACTIONS(2843), 1, + [101157] = 12, + ACTIONS(2701), 1, anon_sym_as, - ACTIONS(2845), 1, + ACTIONS(2703), 1, anon_sym_if, - ACTIONS(2847), 1, + ACTIONS(2705), 1, anon_sym_async, - ACTIONS(2849), 1, + ACTIONS(2707), 1, anon_sym_for, - ACTIONS(2851), 1, + ACTIONS(2709), 1, anon_sym_and, - ACTIONS(2853), 1, + ACTIONS(2711), 1, anon_sym_or, - STATE(1898), 1, + ACTIONS(2749), 1, + anon_sym_RPAREN, + ACTIONS(2751), 1, + anon_sym_COMMA, + STATE(1788), 1, sym_for_in_clause, - STATE(2077), 1, - aux_sym__collection_elements_repeat1, - STATE(2517), 1, + STATE(2045), 1, + aux_sym_argument_list_repeat1, + STATE(2440), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104142] = 12, - ACTIONS(2815), 1, + [101195] = 12, + ACTIONS(2701), 1, anon_sym_as, - ACTIONS(2817), 1, + ACTIONS(2703), 1, anon_sym_if, - ACTIONS(2819), 1, + ACTIONS(2705), 1, anon_sym_async, - ACTIONS(2821), 1, + ACTIONS(2707), 1, anon_sym_for, - ACTIONS(2823), 1, + ACTIONS(2709), 1, anon_sym_and, - ACTIONS(2825), 1, + ACTIONS(2711), 1, anon_sym_or, - ACTIONS(2837), 1, + ACTIONS(2741), 1, anon_sym_COMMA, - ACTIONS(2859), 1, + ACTIONS(2753), 1, anon_sym_RPAREN, - STATE(1893), 1, + STATE(1788), 1, sym_for_in_clause, - STATE(2123), 1, + STATE(2194), 1, aux_sym__collection_elements_repeat1, - STATE(2341), 1, + STATE(2346), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104180] = 12, - ACTIONS(2815), 1, + [101233] = 12, + ACTIONS(2695), 1, + anon_sym_RBRACK, + ACTIONS(2717), 1, + anon_sym_COMMA, + ACTIONS(2719), 1, anon_sym_as, - ACTIONS(2817), 1, + ACTIONS(2721), 1, anon_sym_if, - ACTIONS(2819), 1, + ACTIONS(2723), 1, anon_sym_async, - ACTIONS(2821), 1, + ACTIONS(2725), 1, anon_sym_for, - ACTIONS(2823), 1, + ACTIONS(2727), 1, anon_sym_and, - ACTIONS(2825), 1, + ACTIONS(2729), 1, anon_sym_or, - ACTIONS(2861), 1, - anon_sym_RPAREN, - ACTIONS(2863), 1, - anon_sym_COMMA, - STATE(1893), 1, + STATE(1832), 1, sym_for_in_clause, - STATE(2237), 1, - aux_sym_argument_list_repeat1, - STATE(2341), 1, + STATE(2062), 1, + aux_sym__collection_elements_repeat1, + STATE(2423), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104218] = 12, - ACTIONS(2809), 1, + [101271] = 12, + ACTIONS(2695), 1, anon_sym_RBRACK, - ACTIONS(2841), 1, + ACTIONS(2717), 1, anon_sym_COMMA, - ACTIONS(2843), 1, + ACTIONS(2719), 1, anon_sym_as, - ACTIONS(2845), 1, + ACTIONS(2721), 1, anon_sym_if, - ACTIONS(2847), 1, + ACTIONS(2723), 1, anon_sym_async, - ACTIONS(2849), 1, + ACTIONS(2725), 1, anon_sym_for, - ACTIONS(2851), 1, + ACTIONS(2727), 1, anon_sym_and, - ACTIONS(2853), 1, + ACTIONS(2729), 1, anon_sym_or, - STATE(1898), 1, + STATE(1832), 1, sym_for_in_clause, - STATE(2077), 1, + STATE(2062), 1, aux_sym__collection_elements_repeat1, - STATE(2388), 1, + STATE(2458), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104256] = 12, - ACTIONS(2815), 1, + [101309] = 12, + ACTIONS(2701), 1, anon_sym_as, - ACTIONS(2817), 1, + ACTIONS(2703), 1, anon_sym_if, - ACTIONS(2819), 1, + ACTIONS(2705), 1, anon_sym_async, - ACTIONS(2821), 1, + ACTIONS(2707), 1, anon_sym_for, - ACTIONS(2823), 1, + ACTIONS(2709), 1, anon_sym_and, - ACTIONS(2825), 1, + ACTIONS(2711), 1, anon_sym_or, - ACTIONS(2837), 1, + ACTIONS(2741), 1, anon_sym_COMMA, - ACTIONS(2865), 1, + ACTIONS(2755), 1, anon_sym_RPAREN, - STATE(1893), 1, + STATE(1788), 1, sym_for_in_clause, - STATE(2123), 1, + STATE(2194), 1, aux_sym__collection_elements_repeat1, - STATE(2536), 1, + STATE(2459), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104294] = 12, - ACTIONS(2815), 1, + [101347] = 12, + ACTIONS(2695), 1, + anon_sym_RBRACK, + ACTIONS(2717), 1, + anon_sym_COMMA, + ACTIONS(2719), 1, anon_sym_as, - ACTIONS(2817), 1, + ACTIONS(2721), 1, anon_sym_if, - ACTIONS(2819), 1, + ACTIONS(2723), 1, anon_sym_async, - ACTIONS(2821), 1, + ACTIONS(2725), 1, anon_sym_for, - ACTIONS(2823), 1, + ACTIONS(2727), 1, anon_sym_and, - ACTIONS(2825), 1, + ACTIONS(2729), 1, anon_sym_or, - ACTIONS(2865), 1, - anon_sym_RPAREN, - ACTIONS(2867), 1, - anon_sym_COMMA, - STATE(1893), 1, + STATE(1832), 1, sym_for_in_clause, - STATE(2123), 1, + STATE(2062), 1, aux_sym__collection_elements_repeat1, - STATE(2536), 1, + STATE(2480), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104332] = 12, - ACTIONS(2809), 1, - anon_sym_RBRACK, - ACTIONS(2841), 1, - anon_sym_COMMA, - ACTIONS(2843), 1, + [101385] = 12, + ACTIONS(2701), 1, anon_sym_as, - ACTIONS(2845), 1, + ACTIONS(2703), 1, anon_sym_if, - ACTIONS(2847), 1, + ACTIONS(2705), 1, anon_sym_async, - ACTIONS(2849), 1, + ACTIONS(2707), 1, anon_sym_for, - ACTIONS(2851), 1, + ACTIONS(2709), 1, anon_sym_and, - ACTIONS(2853), 1, + ACTIONS(2711), 1, anon_sym_or, - STATE(1898), 1, + ACTIONS(2757), 1, + anon_sym_RPAREN, + ACTIONS(2759), 1, + anon_sym_COMMA, + STATE(1788), 1, sym_for_in_clause, - STATE(2077), 1, - aux_sym__collection_elements_repeat1, - STATE(2502), 1, + STATE(2175), 1, + aux_sym_argument_list_repeat1, + STATE(2459), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104370] = 12, - ACTIONS(2815), 1, + [101423] = 12, + ACTIONS(2701), 1, anon_sym_as, - ACTIONS(2817), 1, + ACTIONS(2703), 1, anon_sym_if, - ACTIONS(2819), 1, + ACTIONS(2705), 1, anon_sym_async, - ACTIONS(2821), 1, + ACTIONS(2707), 1, anon_sym_for, - ACTIONS(2823), 1, + ACTIONS(2709), 1, anon_sym_and, - ACTIONS(2825), 1, + ACTIONS(2711), 1, anon_sym_or, - ACTIONS(2870), 1, - anon_sym_RPAREN, - ACTIONS(2872), 1, + ACTIONS(2741), 1, anon_sym_COMMA, - STATE(1893), 1, + ACTIONS(2761), 1, + anon_sym_RPAREN, + STATE(1788), 1, sym_for_in_clause, - STATE(2156), 1, - aux_sym_argument_list_repeat1, - STATE(2485), 1, + STATE(2194), 1, + aux_sym__collection_elements_repeat1, + STATE(2358), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104408] = 12, - ACTIONS(2815), 1, + [101461] = 12, + ACTIONS(2701), 1, anon_sym_as, - ACTIONS(2817), 1, + ACTIONS(2703), 1, anon_sym_if, - ACTIONS(2819), 1, + ACTIONS(2705), 1, anon_sym_async, - ACTIONS(2821), 1, + ACTIONS(2707), 1, anon_sym_for, - ACTIONS(2823), 1, + ACTIONS(2709), 1, anon_sym_and, - ACTIONS(2825), 1, + ACTIONS(2711), 1, anon_sym_or, - ACTIONS(2837), 1, + ACTIONS(2741), 1, anon_sym_COMMA, - ACTIONS(2874), 1, + ACTIONS(2763), 1, anon_sym_RPAREN, - STATE(1893), 1, + STATE(1788), 1, sym_for_in_clause, - STATE(2123), 1, + STATE(2194), 1, aux_sym__collection_elements_repeat1, - STATE(2478), 1, + STATE(2479), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104446] = 12, - ACTIONS(2809), 1, + [101499] = 12, + ACTIONS(2695), 1, anon_sym_RBRACK, - ACTIONS(2841), 1, + ACTIONS(2717), 1, anon_sym_COMMA, - ACTIONS(2843), 1, + ACTIONS(2719), 1, anon_sym_as, - ACTIONS(2845), 1, + ACTIONS(2721), 1, anon_sym_if, - ACTIONS(2847), 1, + ACTIONS(2723), 1, anon_sym_async, - ACTIONS(2849), 1, + ACTIONS(2725), 1, anon_sym_for, - ACTIONS(2851), 1, + ACTIONS(2727), 1, anon_sym_and, - ACTIONS(2853), 1, + ACTIONS(2729), 1, anon_sym_or, - STATE(1898), 1, + STATE(1832), 1, sym_for_in_clause, - STATE(2077), 1, + STATE(2062), 1, aux_sym__collection_elements_repeat1, - STATE(2474), 1, + STATE(2314), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104484] = 12, - ACTIONS(2815), 1, + [101537] = 12, + ACTIONS(2695), 1, + anon_sym_RBRACK, + ACTIONS(2717), 1, + anon_sym_COMMA, + ACTIONS(2719), 1, anon_sym_as, - ACTIONS(2817), 1, + ACTIONS(2721), 1, anon_sym_if, - ACTIONS(2819), 1, + ACTIONS(2723), 1, anon_sym_async, - ACTIONS(2821), 1, + ACTIONS(2725), 1, anon_sym_for, - ACTIONS(2823), 1, + ACTIONS(2727), 1, anon_sym_and, - ACTIONS(2825), 1, + ACTIONS(2729), 1, anon_sym_or, - ACTIONS(2876), 1, - anon_sym_RPAREN, - ACTIONS(2878), 1, - anon_sym_COMMA, - STATE(1893), 1, + STATE(1832), 1, sym_for_in_clause, - STATE(2208), 1, - aux_sym_argument_list_repeat1, - STATE(2346), 1, + STATE(2062), 1, + aux_sym__collection_elements_repeat1, + STATE(2377), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104522] = 12, - ACTIONS(2815), 1, + [101575] = 12, + ACTIONS(2701), 1, anon_sym_as, - ACTIONS(2817), 1, + ACTIONS(2703), 1, anon_sym_if, - ACTIONS(2819), 1, + ACTIONS(2705), 1, anon_sym_async, - ACTIONS(2821), 1, + ACTIONS(2707), 1, anon_sym_for, - ACTIONS(2823), 1, + ACTIONS(2709), 1, anon_sym_and, - ACTIONS(2825), 1, + ACTIONS(2711), 1, anon_sym_or, - ACTIONS(2837), 1, + ACTIONS(2741), 1, anon_sym_COMMA, - ACTIONS(2880), 1, + ACTIONS(2765), 1, anon_sym_RPAREN, - STATE(1893), 1, + STATE(1788), 1, sym_for_in_clause, - STATE(2123), 1, + STATE(2194), 1, aux_sym__collection_elements_repeat1, - STATE(2346), 1, + STATE(2313), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104560] = 12, - ACTIONS(2815), 1, + [101613] = 12, + ACTIONS(2701), 1, anon_sym_as, - ACTIONS(2817), 1, + ACTIONS(2703), 1, anon_sym_if, - ACTIONS(2819), 1, + ACTIONS(2705), 1, anon_sym_async, - ACTIONS(2821), 1, + ACTIONS(2707), 1, anon_sym_for, - ACTIONS(2823), 1, + ACTIONS(2709), 1, anon_sym_and, - ACTIONS(2825), 1, + ACTIONS(2711), 1, anon_sym_or, - ACTIONS(2882), 1, + ACTIONS(2767), 1, anon_sym_RPAREN, - ACTIONS(2884), 1, + ACTIONS(2769), 1, anon_sym_COMMA, - STATE(1893), 1, + STATE(1788), 1, sym_for_in_clause, - STATE(2181), 1, + STATE(2212), 1, aux_sym_argument_list_repeat1, - STATE(2389), 1, + STATE(2479), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104598] = 12, - ACTIONS(2815), 1, + [101651] = 12, + ACTIONS(2701), 1, anon_sym_as, - ACTIONS(2817), 1, + ACTIONS(2703), 1, anon_sym_if, - ACTIONS(2819), 1, + ACTIONS(2705), 1, anon_sym_async, - ACTIONS(2821), 1, + ACTIONS(2707), 1, anon_sym_for, - ACTIONS(2823), 1, + ACTIONS(2709), 1, anon_sym_and, - ACTIONS(2825), 1, + ACTIONS(2711), 1, anon_sym_or, - ACTIONS(2886), 1, + ACTIONS(2771), 1, anon_sym_RPAREN, - ACTIONS(2888), 1, + ACTIONS(2773), 1, anon_sym_COMMA, - STATE(1893), 1, + STATE(1788), 1, sym_for_in_clause, - STATE(2122), 1, - aux_sym_argument_list_repeat1, - STATE(2478), 1, + STATE(2194), 1, + aux_sym__collection_elements_repeat1, + STATE(2440), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104636] = 12, - ACTIONS(2809), 1, + [101689] = 12, + ACTIONS(2695), 1, anon_sym_RBRACK, - ACTIONS(2841), 1, + ACTIONS(2717), 1, anon_sym_COMMA, - ACTIONS(2843), 1, + ACTIONS(2719), 1, anon_sym_as, - ACTIONS(2845), 1, + ACTIONS(2721), 1, anon_sym_if, - ACTIONS(2847), 1, + ACTIONS(2723), 1, anon_sym_async, - ACTIONS(2849), 1, + ACTIONS(2725), 1, anon_sym_for, - ACTIONS(2851), 1, + ACTIONS(2727), 1, anon_sym_and, - ACTIONS(2853), 1, + ACTIONS(2729), 1, anon_sym_or, - STATE(1898), 1, + STATE(1832), 1, + sym_for_in_clause, + STATE(2062), 1, + aux_sym__collection_elements_repeat1, + STATE(2427), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [101727] = 12, + ACTIONS(2701), 1, + anon_sym_as, + ACTIONS(2703), 1, + anon_sym_if, + ACTIONS(2705), 1, + anon_sym_async, + ACTIONS(2707), 1, + anon_sym_for, + ACTIONS(2709), 1, + anon_sym_and, + ACTIONS(2711), 1, + anon_sym_or, + ACTIONS(2741), 1, + anon_sym_COMMA, + ACTIONS(2771), 1, + anon_sym_RPAREN, + STATE(1788), 1, sym_for_in_clause, - STATE(2077), 1, + STATE(2194), 1, aux_sym__collection_elements_repeat1, - STATE(2531), 1, + STATE(2440), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104674] = 8, + [101765] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2890), 1, + ACTIONS(2776), 1, anon_sym_LBRACE, - ACTIONS(2894), 1, + ACTIONS(2780), 1, sym__not_escape_sequence, - ACTIONS(2896), 1, + ACTIONS(2782), 1, sym_string_end, - STATE(1889), 1, + STATE(1831), 1, aux_sym_string_content_repeat1, - ACTIONS(2892), 3, + ACTIONS(2778), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - STATE(1760), 3, + STATE(1712), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [104703] = 8, + [101794] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2890), 1, + ACTIONS(2776), 1, anon_sym_LBRACE, - ACTIONS(2894), 1, + ACTIONS(2780), 1, sym__not_escape_sequence, - ACTIONS(2898), 1, + ACTIONS(2784), 1, sym_string_end, - STATE(1889), 1, + STATE(1831), 1, aux_sym_string_content_repeat1, - ACTIONS(2892), 3, + ACTIONS(2778), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - STATE(1775), 3, + STATE(1714), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [104732] = 8, + [101823] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2890), 1, + ACTIONS(2776), 1, anon_sym_LBRACE, - ACTIONS(2894), 1, + ACTIONS(2780), 1, sym__not_escape_sequence, - ACTIONS(2900), 1, + ACTIONS(2786), 1, sym_string_end, - STATE(1889), 1, + STATE(1831), 1, aux_sym_string_content_repeat1, - ACTIONS(2892), 3, + ACTIONS(2778), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - STATE(1777), 3, + STATE(1708), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [104761] = 8, + [101852] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2890), 1, + ACTIONS(2776), 1, anon_sym_LBRACE, - ACTIONS(2894), 1, + ACTIONS(2780), 1, sym__not_escape_sequence, - ACTIONS(2902), 1, + ACTIONS(2788), 1, sym_string_end, - STATE(1889), 1, + STATE(1831), 1, aux_sym_string_content_repeat1, - ACTIONS(2892), 3, + ACTIONS(2778), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - STATE(1767), 3, + STATE(1714), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [104790] = 8, + [101881] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2890), 1, + ACTIONS(2776), 1, anon_sym_LBRACE, - ACTIONS(2894), 1, + ACTIONS(2780), 1, sym__not_escape_sequence, - ACTIONS(2904), 1, + ACTIONS(2790), 1, sym_string_end, - STATE(1889), 1, + STATE(1831), 1, aux_sym_string_content_repeat1, - ACTIONS(2892), 3, + ACTIONS(2778), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - STATE(1775), 3, + STATE(1709), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [104819] = 8, + [101910] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2890), 1, + ACTIONS(2776), 1, anon_sym_LBRACE, - ACTIONS(2894), 1, + ACTIONS(2780), 1, sym__not_escape_sequence, - ACTIONS(2906), 1, + ACTIONS(2792), 1, sym_string_end, - STATE(1889), 1, + STATE(1831), 1, aux_sym_string_content_repeat1, - ACTIONS(2892), 3, + ACTIONS(2778), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - STATE(1775), 3, + STATE(1698), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [104848] = 8, + [101939] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2890), 1, + ACTIONS(2776), 1, anon_sym_LBRACE, - ACTIONS(2894), 1, + ACTIONS(2780), 1, sym__not_escape_sequence, - ACTIONS(2908), 1, + ACTIONS(2794), 1, sym_string_end, - STATE(1889), 1, + STATE(1831), 1, aux_sym_string_content_repeat1, - ACTIONS(2892), 3, + ACTIONS(2778), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - STATE(1773), 3, + STATE(1714), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [104877] = 8, + [101968] = 8, + ACTIONS(2796), 1, + anon_sym_COMMA, + ACTIONS(2798), 1, + anon_sym_as, + ACTIONS(2800), 1, + anon_sym_if, + ACTIONS(2804), 1, + anon_sym_and, + ACTIONS(2806), 1, + anon_sym_or, + STATE(1853), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2802), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [101997] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2890), 1, + ACTIONS(2776), 1, anon_sym_LBRACE, - ACTIONS(2894), 1, + ACTIONS(2780), 1, sym__not_escape_sequence, - ACTIONS(2910), 1, + ACTIONS(2808), 1, sym_string_end, - STATE(1889), 1, + STATE(1831), 1, aux_sym_string_content_repeat1, - ACTIONS(2892), 3, + ACTIONS(2778), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - STATE(1779), 3, + STATE(1714), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [104906] = 8, + [102026] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2890), 1, + ACTIONS(2776), 1, anon_sym_LBRACE, - ACTIONS(2894), 1, + ACTIONS(2780), 1, sym__not_escape_sequence, - ACTIONS(2912), 1, + ACTIONS(2810), 1, sym_string_end, - STATE(1889), 1, + STATE(1831), 1, aux_sym_string_content_repeat1, - ACTIONS(2892), 3, + ACTIONS(2778), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - STATE(1775), 3, + STATE(1700), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [104935] = 8, - ACTIONS(2914), 1, - anon_sym_COMMA, - ACTIONS(2916), 1, - anon_sym_as, - ACTIONS(2918), 1, - anon_sym_if, - ACTIONS(2922), 1, - anon_sym_and, - ACTIONS(2924), 1, - anon_sym_or, - STATE(1940), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2920), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [104964] = 8, + [102055] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2890), 1, + ACTIONS(2776), 1, anon_sym_LBRACE, - ACTIONS(2894), 1, + ACTIONS(2780), 1, sym__not_escape_sequence, - ACTIONS(2926), 1, + ACTIONS(2812), 1, sym_string_end, - STATE(1889), 1, + STATE(1831), 1, aux_sym_string_content_repeat1, - ACTIONS(2892), 3, + ACTIONS(2778), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - STATE(1772), 3, + STATE(1717), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [104993] = 8, + [102084] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2890), 1, + ACTIONS(2776), 1, anon_sym_LBRACE, - ACTIONS(2894), 1, + ACTIONS(2780), 1, sym__not_escape_sequence, - ACTIONS(2928), 1, + ACTIONS(2814), 1, sym_string_end, - STATE(1889), 1, + STATE(1831), 1, aux_sym_string_content_repeat1, - ACTIONS(2892), 3, + ACTIONS(2778), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - STATE(1775), 3, + STATE(1714), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [105022] = 8, + [102113] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2890), 1, + ACTIONS(2776), 1, anon_sym_LBRACE, - ACTIONS(2894), 1, + ACTIONS(2780), 1, sym__not_escape_sequence, - ACTIONS(2930), 1, + ACTIONS(2816), 1, sym_string_end, - STATE(1889), 1, + STATE(1831), 1, aux_sym_string_content_repeat1, - ACTIONS(2892), 3, + ACTIONS(2778), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - STATE(1770), 3, + STATE(1714), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [105051] = 8, + [102142] = 8, + ACTIONS(2796), 1, + anon_sym_COMMA, + ACTIONS(2798), 1, + anon_sym_as, + ACTIONS(2800), 1, + anon_sym_if, + ACTIONS(2804), 1, + anon_sym_and, + ACTIONS(2806), 1, + anon_sym_or, + STATE(1853), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2818), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [102171] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2890), 1, + ACTIONS(2776), 1, anon_sym_LBRACE, - ACTIONS(2894), 1, + ACTIONS(2780), 1, sym__not_escape_sequence, - ACTIONS(2932), 1, + ACTIONS(2820), 1, sym_string_end, - STATE(1889), 1, + STATE(1831), 1, aux_sym_string_content_repeat1, - ACTIONS(2892), 3, + ACTIONS(2778), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - STATE(1775), 3, + STATE(1705), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [105080] = 8, + [102200] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2890), 1, + ACTIONS(2776), 1, anon_sym_LBRACE, - ACTIONS(2894), 1, + ACTIONS(2780), 1, sym__not_escape_sequence, - ACTIONS(2934), 1, + ACTIONS(2822), 1, sym_string_end, - STATE(1889), 1, + STATE(1831), 1, aux_sym_string_content_repeat1, - ACTIONS(2892), 3, + ACTIONS(2778), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - STATE(1775), 3, + STATE(1714), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [105109] = 8, + [102229] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2890), 1, + ACTIONS(2776), 1, anon_sym_LBRACE, - ACTIONS(2894), 1, + ACTIONS(2780), 1, sym__not_escape_sequence, - ACTIONS(2936), 1, + ACTIONS(2824), 1, sym_string_end, - STATE(1889), 1, + STATE(1831), 1, aux_sym_string_content_repeat1, - ACTIONS(2892), 3, + ACTIONS(2778), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - STATE(1764), 3, + STATE(1716), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [105138] = 8, + [102258] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2938), 1, + ACTIONS(2826), 1, anon_sym_LBRACE, - ACTIONS(2944), 1, + ACTIONS(2832), 1, sym__not_escape_sequence, - ACTIONS(2947), 1, + ACTIONS(2835), 1, sym_string_end, - STATE(1889), 1, + STATE(1831), 1, aux_sym_string_content_repeat1, - ACTIONS(2941), 3, + ACTIONS(2829), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - STATE(1775), 3, + STATE(1714), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [105167] = 8, - ACTIONS(2914), 1, - anon_sym_COMMA, - ACTIONS(2916), 1, - anon_sym_as, - ACTIONS(2918), 1, - anon_sym_if, - ACTIONS(2922), 1, - anon_sym_and, - ACTIONS(2924), 1, - anon_sym_or, - STATE(1940), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2949), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [105196] = 8, + [102287] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2890), 1, + ACTIONS(2776), 1, anon_sym_LBRACE, - ACTIONS(2894), 1, + ACTIONS(2780), 1, sym__not_escape_sequence, - ACTIONS(2951), 1, + ACTIONS(2837), 1, sym_string_end, - STATE(1889), 1, + STATE(1831), 1, aux_sym_string_content_repeat1, - ACTIONS(2892), 3, + ACTIONS(2778), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - STATE(1775), 3, + STATE(1703), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [105225] = 8, + [102316] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2890), 1, + ACTIONS(2776), 1, anon_sym_LBRACE, - ACTIONS(2894), 1, + ACTIONS(2780), 1, sym__not_escape_sequence, - ACTIONS(2953), 1, + ACTIONS(2839), 1, sym_string_end, - STATE(1889), 1, + STATE(1831), 1, aux_sym_string_content_repeat1, - ACTIONS(2892), 3, + ACTIONS(2778), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - STATE(1763), 3, + STATE(1714), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [105254] = 8, + [102345] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2890), 1, + ACTIONS(2776), 1, anon_sym_LBRACE, - ACTIONS(2894), 1, + ACTIONS(2780), 1, sym__not_escape_sequence, - ACTIONS(2955), 1, + ACTIONS(2841), 1, sym_string_end, - STATE(1889), 1, + STATE(1831), 1, aux_sym_string_content_repeat1, - ACTIONS(2892), 3, + ACTIONS(2778), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - STATE(1775), 3, + STATE(1714), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [105283] = 6, - ACTIONS(2795), 1, + [102374] = 6, + ACTIONS(2681), 1, anon_sym_as, - ACTIONS(2797), 1, + ACTIONS(2683), 1, anon_sym_if, - ACTIONS(2805), 1, + ACTIONS(2691), 1, anon_sym_and, - ACTIONS(2807), 1, + ACTIONS(2693), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 5, + ACTIONS(2349), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [105307] = 5, - ACTIONS(2461), 1, + [102398] = 5, + ACTIONS(2302), 1, anon_sym_as, - ACTIONS(2805), 1, + ACTIONS(2691), 1, anon_sym_and, - ACTIONS(2807), 1, + ACTIONS(2693), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2459), 6, + ACTIONS(2300), 6, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [105329] = 5, - ACTIONS(2805), 1, + [102420] = 6, + ACTIONS(2798), 1, + anon_sym_as, + ACTIONS(2800), 1, + anon_sym_if, + ACTIONS(2804), 1, anon_sym_and, - ACTIONS(2807), 1, + ACTIONS(2806), 1, anon_sym_or, - ACTIONS(2957), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2843), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [102444] = 9, + ACTIONS(2847), 1, + anon_sym_from, + ACTIONS(2849), 1, + anon_sym_COMMA, + ACTIONS(2851), 1, anon_sym_as, + ACTIONS(2853), 1, + anon_sym_if, + ACTIONS(2855), 1, + anon_sym_and, + ACTIONS(2857), 1, + anon_sym_or, + STATE(1964), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2452), 6, + ACTIONS(2845), 2, + sym__newline, + anon_sym_SEMI, + [102474] = 6, + ACTIONS(2851), 1, + anon_sym_as, + ACTIONS(2853), 1, + anon_sym_if, + ACTIONS(2855), 1, + anon_sym_and, + ACTIONS(2857), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2337), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_EQ, + [102498] = 6, + ACTIONS(2798), 1, + anon_sym_as, + ACTIONS(2800), 1, + anon_sym_if, + ACTIONS(2804), 1, + anon_sym_and, + ACTIONS(2806), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2349), 5, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [102522] = 6, + ACTIONS(2681), 1, + anon_sym_as, + ACTIONS(2683), 1, anon_sym_if, + ACTIONS(2691), 1, + anon_sym_and, + ACTIONS(2693), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2337), 5, + anon_sym_COMMA, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [105351] = 6, - ACTIONS(2916), 1, + [102546] = 6, + ACTIONS(2798), 1, anon_sym_as, - ACTIONS(2918), 1, + ACTIONS(2800), 1, anon_sym_if, - ACTIONS(2922), 1, + ACTIONS(2804), 1, anon_sym_and, - ACTIONS(2924), 1, + ACTIONS(2806), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2960), 5, + ACTIONS(2337), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [105375] = 6, - ACTIONS(2962), 1, + [102570] = 6, + ACTIONS(2851), 1, anon_sym_as, - ACTIONS(2964), 1, + ACTIONS(2853), 1, anon_sym_if, - ACTIONS(2966), 1, + ACTIONS(2855), 1, anon_sym_and, - ACTIONS(2968), 1, + ACTIONS(2857), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2436), 5, + ACTIONS(2306), 5, sym__newline, anon_sym_SEMI, anon_sym_from, anon_sym_COMMA, anon_sym_EQ, - [105399] = 3, - ACTIONS(2922), 1, + [102594] = 3, + ACTIONS(2855), 1, anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2463), 8, + ACTIONS(2294), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_COLON, anon_sym_EQ, anon_sym_or, + [102612] = 4, + ACTIONS(2296), 1, + anon_sym_as, + ACTIONS(2691), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2294), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_or, anon_sym_RBRACE, - sym_type_conversion, - [105417] = 6, - ACTIONS(2962), 1, + [102632] = 4, + ACTIONS(2804), 1, + anon_sym_and, + ACTIONS(2806), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2300), 7, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2964), 1, anon_sym_if, - ACTIONS(2966), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [102652] = 5, + ACTIONS(2855), 1, anon_sym_and, - ACTIONS(2968), 1, + ACTIONS(2857), 1, anon_sym_or, + ACTIONS(2859), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2424), 5, + ACTIONS(2318), 6, sym__newline, anon_sym_SEMI, anon_sym_from, anon_sym_COMMA, + anon_sym_if, anon_sym_EQ, - [105441] = 9, - ACTIONS(2962), 1, + [102674] = 5, + ACTIONS(2691), 1, + anon_sym_and, + ACTIONS(2693), 1, + anon_sym_or, + ACTIONS(2862), 1, anon_sym_as, - ACTIONS(2964), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2318), 6, + anon_sym_COMMA, anon_sym_if, - ACTIONS(2966), 1, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [102696] = 4, + ACTIONS(2855), 1, anon_sym_and, - ACTIONS(2968), 1, + ACTIONS(2857), 1, anon_sym_or, - ACTIONS(2972), 1, - anon_sym_from, - ACTIONS(2974), 1, - anon_sym_COMMA, - STATE(2013), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2970), 2, + ACTIONS(2300), 7, sym__newline, anon_sym_SEMI, - [105471] = 6, - ACTIONS(2916), 1, + anon_sym_from, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2918), 1, anon_sym_if, - ACTIONS(2922), 1, + anon_sym_EQ, + [102716] = 6, + ACTIONS(2851), 1, + anon_sym_as, + ACTIONS(2853), 1, + anon_sym_if, + ACTIONS(2855), 1, + anon_sym_and, + ACTIONS(2857), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2349), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_EQ, + [102740] = 3, + ACTIONS(2804), 1, anon_sym_and, - ACTIONS(2924), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2976), 5, + ACTIONS(2294), 8, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_EQ, + anon_sym_or, anon_sym_RBRACE, sym_type_conversion, - [105495] = 6, - ACTIONS(2795), 1, + [102758] = 6, + ACTIONS(2798), 1, anon_sym_as, - ACTIONS(2797), 1, + ACTIONS(2800), 1, anon_sym_if, - ACTIONS(2805), 1, + ACTIONS(2804), 1, anon_sym_and, - ACTIONS(2807), 1, + ACTIONS(2806), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2436), 5, + ACTIONS(2306), 5, anon_sym_COMMA, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_EQ, anon_sym_RBRACE, - [105519] = 4, - ACTIONS(2922), 1, + sym_type_conversion, + [102782] = 5, + ACTIONS(2804), 1, anon_sym_and, - ACTIONS(2924), 1, + ACTIONS(2806), 1, anon_sym_or, + ACTIONS(2865), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2459), 7, + ACTIONS(2318), 6, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [105539] = 6, - ACTIONS(2916), 1, + [102804] = 6, + ACTIONS(2681), 1, anon_sym_as, - ACTIONS(2918), 1, + ACTIONS(2683), 1, anon_sym_if, - ACTIONS(2922), 1, + ACTIONS(2691), 1, anon_sym_and, - ACTIONS(2924), 1, + ACTIONS(2693), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2424), 5, + ACTIONS(2306), 5, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - sym_type_conversion, - [105563] = 5, - ACTIONS(2922), 1, + [102828] = 6, + ACTIONS(2798), 1, + anon_sym_as, + ACTIONS(2800), 1, + anon_sym_if, + ACTIONS(2804), 1, anon_sym_and, - ACTIONS(2924), 1, + ACTIONS(2806), 1, anon_sym_or, - ACTIONS(2978), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2452), 6, + ACTIONS(2868), 5, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [105585] = 6, - ACTIONS(2916), 1, + [102852] = 9, + ACTIONS(2870), 1, + anon_sym_COMMA, + ACTIONS(2872), 1, anon_sym_as, - ACTIONS(2918), 1, + ACTIONS(2874), 1, anon_sym_if, - ACTIONS(2922), 1, + ACTIONS(2876), 1, + anon_sym_COLON, + ACTIONS(2878), 1, + anon_sym_RBRACK, + ACTIONS(2880), 1, anon_sym_and, - ACTIONS(2924), 1, + ACTIONS(2882), 1, anon_sym_or, + STATE(2066), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2436), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [105609] = 3, - ACTIONS(2966), 1, + [102881] = 6, + ACTIONS(2701), 1, + anon_sym_as, + ACTIONS(2703), 1, + anon_sym_if, + ACTIONS(2709), 1, anon_sym_and, + ACTIONS(2711), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2463), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2306), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + [102904] = 5, + ACTIONS(2701), 1, anon_sym_as, - anon_sym_if, - anon_sym_EQ, + ACTIONS(2709), 1, + anon_sym_and, + ACTIONS(2711), 1, anon_sym_or, - [105627] = 6, - ACTIONS(2916), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2884), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [102925] = 8, + ACTIONS(2849), 1, + anon_sym_COMMA, + ACTIONS(2851), 1, anon_sym_as, - ACTIONS(2918), 1, + ACTIONS(2853), 1, anon_sym_if, - ACTIONS(2922), 1, + ACTIONS(2855), 1, anon_sym_and, - ACTIONS(2924), 1, + ACTIONS(2857), 1, anon_sym_or, + STATE(1964), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [105651] = 6, - ACTIONS(2962), 1, + ACTIONS(2886), 2, + sym__newline, + anon_sym_SEMI, + [102952] = 8, + ACTIONS(2851), 1, anon_sym_as, - ACTIONS(2964), 1, + ACTIONS(2853), 1, anon_sym_if, - ACTIONS(2966), 1, + ACTIONS(2855), 1, anon_sym_and, - ACTIONS(2968), 1, + ACTIONS(2857), 1, anon_sym_or, + ACTIONS(2890), 1, + anon_sym_COMMA, + STATE(1969), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 5, + ACTIONS(2888), 2, sym__newline, anon_sym_SEMI, - anon_sym_from, + [102979] = 9, + ACTIONS(2872), 1, + anon_sym_as, + ACTIONS(2874), 1, + anon_sym_if, + ACTIONS(2876), 1, + anon_sym_COLON, + ACTIONS(2880), 1, + anon_sym_and, + ACTIONS(2882), 1, + anon_sym_or, + ACTIONS(2892), 1, anon_sym_COMMA, - anon_sym_EQ, - [105675] = 4, - ACTIONS(2465), 1, + ACTIONS(2894), 1, + anon_sym_RBRACK, + STATE(2216), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [103008] = 5, + ACTIONS(2701), 1, anon_sym_as, - ACTIONS(2805), 1, + ACTIONS(2709), 1, anon_sym_and, + ACTIONS(2711), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2463), 7, + ACTIONS(2884), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, + [103029] = 9, + ACTIONS(2554), 1, + anon_sym_as, + ACTIONS(2558), 1, + anon_sym_and, + ACTIONS(2560), 1, anon_sym_or, - anon_sym_RBRACE, - [105695] = 4, - ACTIONS(2966), 1, + ACTIONS(2896), 1, + anon_sym_COMMA, + ACTIONS(2898), 1, + anon_sym_if, + ACTIONS(2900), 1, + anon_sym_COLON, + STATE(1907), 1, + aux_sym_case_clause_repeat1, + STATE(2462), 1, + sym_if_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [103058] = 5, + ACTIONS(2701), 1, + anon_sym_as, + ACTIONS(2709), 1, anon_sym_and, - ACTIONS(2968), 1, + ACTIONS(2711), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2459), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2884), 5, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [103079] = 6, + ACTIONS(2851), 1, anon_sym_as, + ACTIONS(2853), 1, anon_sym_if, - anon_sym_EQ, - [105715] = 5, - ACTIONS(2966), 1, + ACTIONS(2855), 1, anon_sym_and, - ACTIONS(2968), 1, + ACTIONS(2857), 1, anon_sym_or, - ACTIONS(2981), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2452), 6, + ACTIONS(2868), 4, sym__newline, anon_sym_SEMI, anon_sym_from, anon_sym_COMMA, - anon_sym_if, - anon_sym_EQ, - [105737] = 6, - ACTIONS(2795), 1, + [103102] = 6, + ACTIONS(2701), 1, anon_sym_as, - ACTIONS(2797), 1, + ACTIONS(2703), 1, anon_sym_if, - ACTIONS(2805), 1, + ACTIONS(2709), 1, anon_sym_and, - ACTIONS(2807), 1, + ACTIONS(2711), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2424), 5, + ACTIONS(2337), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [105761] = 5, - ACTIONS(2843), 1, - anon_sym_as, + [103125] = 8, + ACTIONS(2849), 1, + anon_sym_COMMA, ACTIONS(2851), 1, - anon_sym_and, + anon_sym_as, ACTIONS(2853), 1, + anon_sym_if, + ACTIONS(2855), 1, + anon_sym_and, + ACTIONS(2857), 1, + anon_sym_or, + STATE(1964), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2902), 2, + sym__newline, + anon_sym_SEMI, + [103152] = 5, + ACTIONS(2681), 1, + anon_sym_as, + ACTIONS(2691), 1, + anon_sym_and, + ACTIONS(2693), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2984), 5, + ACTIONS(2884), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, + anon_sym_RBRACE, + [103173] = 9, + ACTIONS(2872), 1, + anon_sym_as, + ACTIONS(2874), 1, + anon_sym_if, + ACTIONS(2876), 1, + anon_sym_COLON, + ACTIONS(2880), 1, + anon_sym_and, + ACTIONS(2882), 1, + anon_sym_or, + ACTIONS(2904), 1, + anon_sym_COMMA, + ACTIONS(2906), 1, + anon_sym_RBRACK, + STATE(2160), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [103202] = 9, + ACTIONS(2872), 1, + anon_sym_as, + ACTIONS(2874), 1, + anon_sym_if, + ACTIONS(2876), 1, + anon_sym_COLON, + ACTIONS(2880), 1, + anon_sym_and, + ACTIONS(2882), 1, + anon_sym_or, + ACTIONS(2908), 1, + anon_sym_COMMA, + ACTIONS(2910), 1, + anon_sym_RBRACK, + STATE(2162), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [103231] = 9, + ACTIONS(2872), 1, + anon_sym_as, + ACTIONS(2874), 1, + anon_sym_if, + ACTIONS(2876), 1, + anon_sym_COLON, + ACTIONS(2880), 1, + anon_sym_and, + ACTIONS(2882), 1, + anon_sym_or, + ACTIONS(2912), 1, + anon_sym_COMMA, + ACTIONS(2914), 1, anon_sym_RBRACK, - [105782] = 7, - ACTIONS(1362), 1, + STATE(2101), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [103260] = 7, + ACTIONS(1324), 1, anon_sym_except, - ACTIONS(1366), 1, + ACTIONS(1328), 1, anon_sym_except_STAR, - ACTIONS(2986), 1, + ACTIONS(2916), 1, anon_sym_finally, - STATE(855), 1, + STATE(751), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(494), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(495), 2, + STATE(568), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - [105807] = 9, - ACTIONS(2988), 1, + STATE(571), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + [103285] = 8, + ACTIONS(2849), 1, anon_sym_COMMA, - ACTIONS(2990), 1, + ACTIONS(2851), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2853), 1, anon_sym_if, - ACTIONS(2994), 1, - anon_sym_COLON, - ACTIONS(2996), 1, - anon_sym_RBRACK, - ACTIONS(2998), 1, + ACTIONS(2855), 1, anon_sym_and, - ACTIONS(3000), 1, + ACTIONS(2857), 1, anon_sym_or, - STATE(2163), 1, - aux_sym_subscript_repeat1, + STATE(1964), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105836] = 5, - ACTIONS(2843), 1, - anon_sym_as, - ACTIONS(2851), 1, + ACTIONS(2617), 2, + sym__newline, + anon_sym_SEMI, + [103312] = 7, + ACTIONS(59), 1, + anon_sym_AT, + ACTIONS(2918), 1, + anon_sym_async, + ACTIONS(2920), 1, + anon_sym_def, + ACTIONS(2922), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(767), 2, + sym_function_definition, + sym_class_definition, + STATE(1881), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [103337] = 5, + ACTIONS(2709), 1, anon_sym_and, - ACTIONS(2853), 1, + ACTIONS(2711), 1, anon_sym_or, + ACTIONS(2924), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2984), 5, + ACTIONS(2318), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [105857] = 6, - ACTIONS(2843), 1, + [103358] = 9, + ACTIONS(2872), 1, anon_sym_as, - ACTIONS(2845), 1, + ACTIONS(2874), 1, anon_sym_if, - ACTIONS(2851), 1, + ACTIONS(2876), 1, + anon_sym_COLON, + ACTIONS(2880), 1, anon_sym_and, - ACTIONS(2853), 1, + ACTIONS(2882), 1, anon_sym_or, + ACTIONS(2927), 1, + anon_sym_COMMA, + ACTIONS(2929), 1, + anon_sym_RBRACK, + STATE(2169), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2424), 4, - anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [105880] = 6, - ACTIONS(2843), 1, + [103387] = 5, + ACTIONS(2719), 1, anon_sym_as, - ACTIONS(2845), 1, - anon_sym_if, - ACTIONS(2851), 1, + ACTIONS(2727), 1, anon_sym_and, - ACTIONS(2853), 1, + ACTIONS(2729), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2436), 4, + ACTIONS(2884), 5, anon_sym_COMMA, + anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [105903] = 7, - ACTIONS(59), 1, - anon_sym_AT, - ACTIONS(3002), 1, - anon_sym_async, - ACTIONS(3004), 1, - anon_sym_def, - ACTIONS(3006), 1, - anon_sym_class, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(858), 2, - sym_function_definition, - sym_class_definition, - STATE(1961), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [105928] = 7, - ACTIONS(1344), 1, - anon_sym_except, - ACTIONS(1354), 1, + [103408] = 7, + ACTIONS(1316), 1, anon_sym_except_STAR, - ACTIONS(3008), 1, + ACTIONS(1320), 1, + anon_sym_except, + ACTIONS(2931), 1, anon_sym_finally, - STATE(899), 1, + STATE(748), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(525), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(529), 2, + STATE(535), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - [105953] = 4, - ACTIONS(2465), 1, + STATE(536), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + [103433] = 6, + ACTIONS(2719), 1, anon_sym_as, - ACTIONS(2823), 1, + ACTIONS(2721), 1, + anon_sym_if, + ACTIONS(2727), 1, anon_sym_and, + ACTIONS(2729), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2463), 6, - anon_sym_RPAREN, + ACTIONS(2349), 4, anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_or, - [105972] = 5, - ACTIONS(2795), 1, + anon_sym_RBRACK, + [103456] = 5, + ACTIONS(2681), 1, anon_sym_as, - ACTIONS(2805), 1, + ACTIONS(2691), 1, anon_sym_and, - ACTIONS(2807), 1, + ACTIONS(2693), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2984), 5, + ACTIONS(2884), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [105993] = 5, - ACTIONS(2815), 1, + [103477] = 9, + ACTIONS(2872), 1, anon_sym_as, - ACTIONS(2823), 1, + ACTIONS(2874), 1, + anon_sym_if, + ACTIONS(2876), 1, + anon_sym_COLON, + ACTIONS(2880), 1, anon_sym_and, - ACTIONS(2825), 1, + ACTIONS(2882), 1, anon_sym_or, + ACTIONS(2933), 1, + anon_sym_COMMA, + ACTIONS(2935), 1, + anon_sym_RBRACK, + STATE(2047), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2984), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [106014] = 5, - ACTIONS(2815), 1, + [103506] = 5, + ACTIONS(2719), 1, anon_sym_as, - ACTIONS(2823), 1, + ACTIONS(2727), 1, anon_sym_and, - ACTIONS(2825), 1, + ACTIONS(2729), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2984), 5, - anon_sym_RPAREN, + ACTIONS(2884), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [106035] = 5, - ACTIONS(2851), 1, + anon_sym_RBRACK, + [103527] = 6, + ACTIONS(2719), 1, + anon_sym_as, + ACTIONS(2721), 1, + anon_sym_if, + ACTIONS(2727), 1, anon_sym_and, - ACTIONS(2853), 1, + ACTIONS(2729), 1, anon_sym_or, - ACTIONS(3010), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2452), 5, + ACTIONS(2306), 4, anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [106056] = 5, - ACTIONS(2461), 1, + [103550] = 8, + ACTIONS(2851), 1, anon_sym_as, - ACTIONS(2823), 1, + ACTIONS(2853), 1, + anon_sym_if, + ACTIONS(2855), 1, anon_sym_and, - ACTIONS(2825), 1, + ACTIONS(2857), 1, anon_sym_or, + ACTIONS(2939), 1, + anon_sym_COMMA, + STATE(1989), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2459), 5, - anon_sym_RPAREN, + ACTIONS(2937), 2, + sym__newline, + anon_sym_SEMI, + [103577] = 4, + ACTIONS(2296), 1, + anon_sym_as, + ACTIONS(2727), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2294), 6, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [106077] = 6, - ACTIONS(2815), 1, + anon_sym_RBRACK, + anon_sym_or, + [103596] = 5, + ACTIONS(2302), 1, anon_sym_as, - ACTIONS(2817), 1, - anon_sym_if, - ACTIONS(2823), 1, + ACTIONS(2709), 1, anon_sym_and, - ACTIONS(2825), 1, + ACTIONS(2711), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2424), 4, + ACTIONS(2300), 5, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, anon_sym_async, anon_sym_for, - [106100] = 6, - ACTIONS(2962), 1, + [103617] = 7, + ACTIONS(1324), 1, + anon_sym_except, + ACTIONS(1328), 1, + anon_sym_except_STAR, + ACTIONS(2916), 1, + anon_sym_finally, + STATE(829), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(493), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(494), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [103642] = 5, + ACTIONS(2302), 1, anon_sym_as, - ACTIONS(2964), 1, - anon_sym_if, - ACTIONS(2966), 1, + ACTIONS(2727), 1, anon_sym_and, - ACTIONS(2968), 1, + ACTIONS(2729), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2976), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2300), 5, anon_sym_COMMA, - [106123] = 5, - ACTIONS(2843), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [103663] = 4, + ACTIONS(2296), 1, anon_sym_as, - ACTIONS(2851), 1, + ACTIONS(2709), 1, anon_sym_and, - ACTIONS(2853), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2984), 5, + ACTIONS(2294), 6, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [106144] = 8, - ACTIONS(2962), 1, + anon_sym_or, + [103682] = 9, + ACTIONS(2872), 1, anon_sym_as, - ACTIONS(2964), 1, + ACTIONS(2874), 1, anon_sym_if, - ACTIONS(2966), 1, + ACTIONS(2876), 1, + anon_sym_COLON, + ACTIONS(2880), 1, anon_sym_and, - ACTIONS(2968), 1, + ACTIONS(2882), 1, anon_sym_or, - ACTIONS(3015), 1, + ACTIONS(2941), 1, anon_sym_COMMA, - STATE(2050), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(2943), 1, + anon_sym_RBRACK, + STATE(2081), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3013), 2, - sym__newline, - anon_sym_SEMI, - [106171] = 5, - ACTIONS(2823), 1, + [103711] = 9, + ACTIONS(2872), 1, + anon_sym_as, + ACTIONS(2874), 1, + anon_sym_if, + ACTIONS(2876), 1, + anon_sym_COLON, + ACTIONS(2880), 1, anon_sym_and, - ACTIONS(2825), 1, + ACTIONS(2882), 1, anon_sym_or, - ACTIONS(3017), 1, - anon_sym_as, + ACTIONS(2945), 1, + anon_sym_COMMA, + ACTIONS(2947), 1, + anon_sym_RBRACK, + STATE(2096), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2452), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [106192] = 6, - ACTIONS(2795), 1, + [103740] = 6, + ACTIONS(2719), 1, anon_sym_as, - ACTIONS(2797), 1, + ACTIONS(2721), 1, anon_sym_if, - ACTIONS(2805), 1, + ACTIONS(2727), 1, anon_sym_and, - ACTIONS(2807), 1, + ACTIONS(2729), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3020), 4, + ACTIONS(2337), 4, anon_sym_COMMA, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [106215] = 9, - ACTIONS(2990), 1, + anon_sym_RBRACK, + [103763] = 9, + ACTIONS(2872), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2874), 1, anon_sym_if, - ACTIONS(2994), 1, + ACTIONS(2876), 1, anon_sym_COLON, - ACTIONS(2998), 1, + ACTIONS(2880), 1, anon_sym_and, - ACTIONS(3000), 1, + ACTIONS(2882), 1, anon_sym_or, - ACTIONS(3022), 1, + ACTIONS(2949), 1, anon_sym_COMMA, - ACTIONS(3024), 1, + ACTIONS(2951), 1, anon_sym_RBRACK, - STATE(2244), 1, + STATE(2116), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106244] = 9, - ACTIONS(2668), 1, - anon_sym_as, - ACTIONS(2672), 1, + [103792] = 7, + ACTIONS(59), 1, + anon_sym_AT, + ACTIONS(2953), 1, + anon_sym_async, + ACTIONS(2955), 1, + anon_sym_def, + ACTIONS(2957), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(818), 2, + sym_function_definition, + sym_class_definition, + STATE(1881), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [103817] = 5, + ACTIONS(2727), 1, anon_sym_and, - ACTIONS(2674), 1, + ACTIONS(2729), 1, anon_sym_or, - ACTIONS(3026), 1, - anon_sym_COMMA, - ACTIONS(3028), 1, - anon_sym_if, - ACTIONS(3030), 1, - anon_sym_COLON, - STATE(2021), 1, - aux_sym_case_clause_repeat1, - STATE(2494), 1, - sym_if_clause, + ACTIONS(2959), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106273] = 8, - ACTIONS(2962), 1, + ACTIONS(2318), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [103838] = 8, + ACTIONS(2851), 1, anon_sym_as, - ACTIONS(2964), 1, + ACTIONS(2853), 1, anon_sym_if, - ACTIONS(2966), 1, + ACTIONS(2855), 1, anon_sym_and, - ACTIONS(2968), 1, + ACTIONS(2857), 1, anon_sym_or, - ACTIONS(2974), 1, + ACTIONS(2964), 1, anon_sym_COMMA, - STATE(2013), 1, + STATE(2002), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2920), 2, - sym__newline, - anon_sym_SEMI, - [106300] = 8, - ACTIONS(2962), 1, + ACTIONS(2962), 2, + sym__newline, + anon_sym_SEMI, + [103865] = 7, + ACTIONS(1316), 1, + anon_sym_except_STAR, + ACTIONS(1320), 1, + anon_sym_except, + ACTIONS(2931), 1, + anon_sym_finally, + STATE(828), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(482), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + STATE(483), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + [103890] = 5, + ACTIONS(2719), 1, anon_sym_as, - ACTIONS(2964), 1, - anon_sym_if, - ACTIONS(2966), 1, + ACTIONS(2727), 1, anon_sym_and, - ACTIONS(2968), 1, + ACTIONS(2729), 1, anon_sym_or, - ACTIONS(2974), 1, - anon_sym_COMMA, - STATE(2013), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2771), 2, - sym__newline, - anon_sym_SEMI, - [106327] = 9, - ACTIONS(2990), 1, + ACTIONS(2884), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [103911] = 6, + ACTIONS(2681), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2683), 1, anon_sym_if, - ACTIONS(2994), 1, - anon_sym_COLON, - ACTIONS(2998), 1, + ACTIONS(2691), 1, anon_sym_and, - ACTIONS(3000), 1, + ACTIONS(2693), 1, anon_sym_or, - ACTIONS(3032), 1, - anon_sym_COMMA, - ACTIONS(3034), 1, - anon_sym_RBRACK, - STATE(2241), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106356] = 8, - ACTIONS(2962), 1, + ACTIONS(2966), 4, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [103934] = 8, + ACTIONS(2849), 1, + anon_sym_COMMA, + ACTIONS(2851), 1, anon_sym_as, - ACTIONS(2964), 1, + ACTIONS(2853), 1, anon_sym_if, - ACTIONS(2966), 1, + ACTIONS(2855), 1, anon_sym_and, - ACTIONS(2968), 1, + ACTIONS(2857), 1, anon_sym_or, - ACTIONS(3038), 1, - anon_sym_COMMA, - STATE(2049), 1, - aux_sym_print_statement_repeat1, + STATE(1964), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3036), 2, + ACTIONS(2802), 2, sym__newline, anon_sym_SEMI, - [106383] = 8, - ACTIONS(2962), 1, + [103961] = 8, + ACTIONS(2851), 1, anon_sym_as, - ACTIONS(2964), 1, + ACTIONS(2853), 1, anon_sym_if, - ACTIONS(2966), 1, + ACTIONS(2855), 1, anon_sym_and, - ACTIONS(2968), 1, + ACTIONS(2857), 1, anon_sym_or, - ACTIONS(3042), 1, + ACTIONS(2964), 1, anon_sym_COMMA, - STATE(2039), 1, + STATE(1986), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3040), 2, + ACTIONS(2968), 2, sym__newline, anon_sym_SEMI, - [106410] = 5, - ACTIONS(2461), 1, + [103988] = 6, + ACTIONS(2701), 1, anon_sym_as, - ACTIONS(2851), 1, + ACTIONS(2703), 1, + anon_sym_if, + ACTIONS(2709), 1, anon_sym_and, - ACTIONS(2853), 1, + ACTIONS(2711), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2459), 5, + ACTIONS(2349), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [106431] = 9, - ACTIONS(2990), 1, + [104011] = 5, + ACTIONS(2681), 1, anon_sym_as, - ACTIONS(2992), 1, - anon_sym_if, - ACTIONS(2994), 1, - anon_sym_COLON, - ACTIONS(2998), 1, + ACTIONS(2691), 1, anon_sym_and, - ACTIONS(3000), 1, + ACTIONS(2693), 1, anon_sym_or, - ACTIONS(3044), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2884), 5, anon_sym_COMMA, - ACTIONS(3046), 1, - anon_sym_RBRACK, - STATE(2169), 1, - aux_sym_subscript_repeat1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [104032] = 6, + ACTIONS(2687), 1, + anon_sym_async, + ACTIONS(2689), 1, + anon_sym_for, + ACTIONS(2970), 1, + anon_sym_if, + ACTIONS(2972), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106460] = 4, - ACTIONS(2465), 1, - anon_sym_as, - ACTIONS(2851), 1, - anon_sym_and, + STATE(1809), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [104054] = 6, + ACTIONS(2705), 1, + anon_sym_async, + ACTIONS(2707), 1, + anon_sym_for, + ACTIONS(2974), 1, + anon_sym_RPAREN, + ACTIONS(2976), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2463), 6, + STATE(1813), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [104076] = 8, + ACTIONS(2687), 1, + anon_sym_async, + ACTIONS(2689), 1, + anon_sym_for, + ACTIONS(2978), 1, anon_sym_COMMA, - anon_sym_if, + ACTIONS(2980), 1, + anon_sym_RBRACE, + STATE(1791), 1, + sym_for_in_clause, + STATE(2198), 1, + aux_sym_dictionary_repeat1, + STATE(2490), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [104102] = 6, + ACTIONS(2723), 1, anon_sym_async, + ACTIONS(2725), 1, anon_sym_for, + ACTIONS(2972), 1, anon_sym_RBRACK, - anon_sym_or, - [106479] = 6, - ACTIONS(2843), 1, - anon_sym_as, - ACTIONS(2845), 1, + ACTIONS(2982), 1, anon_sym_if, - ACTIONS(2851), 1, - anon_sym_and, - ACTIONS(2853), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 4, - anon_sym_COMMA, + STATE(1795), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [104124] = 6, + ACTIONS(2687), 1, anon_sym_async, + ACTIONS(2689), 1, anon_sym_for, - anon_sym_RBRACK, - [106502] = 8, - ACTIONS(2962), 1, - anon_sym_as, - ACTIONS(2964), 1, + ACTIONS(2970), 1, anon_sym_if, - ACTIONS(2966), 1, - anon_sym_and, - ACTIONS(2968), 1, - anon_sym_or, ACTIONS(2974), 1, - anon_sym_COMMA, - STATE(2013), 1, - aux_sym_assert_statement_repeat1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3048), 2, - sym__newline, - anon_sym_SEMI, - [106529] = 6, - ACTIONS(2815), 1, + STATE(1787), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [104146] = 8, + ACTIONS(2749), 1, + anon_sym_RPAREN, + ACTIONS(2751), 1, + anon_sym_COMMA, + ACTIONS(2984), 1, anon_sym_as, - ACTIONS(2817), 1, + ACTIONS(2986), 1, anon_sym_if, - ACTIONS(2823), 1, + ACTIONS(2988), 1, anon_sym_and, - ACTIONS(2825), 1, + ACTIONS(2990), 1, anon_sym_or, + STATE(2045), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - [106552] = 5, - ACTIONS(2815), 1, + [104172] = 8, + ACTIONS(2554), 1, anon_sym_as, - ACTIONS(2823), 1, + ACTIONS(2556), 1, + anon_sym_if, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(2825), 1, + ACTIONS(2560), 1, anon_sym_or, + ACTIONS(2992), 1, + anon_sym_COMMA, + ACTIONS(2994), 1, + anon_sym_COLON, + STATE(2026), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2984), 5, - anon_sym_RPAREN, + [104198] = 8, + ACTIONS(2687), 1, + anon_sym_async, + ACTIONS(2689), 1, + anon_sym_for, + ACTIONS(2996), 1, anon_sym_COMMA, + ACTIONS(2998), 1, + anon_sym_RBRACE, + STATE(1791), 1, + sym_for_in_clause, + STATE(2153), 1, + aux_sym_dictionary_repeat1, + STATE(2402), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [104224] = 6, + ACTIONS(3000), 1, anon_sym_if, + ACTIONS(3003), 1, anon_sym_async, + ACTIONS(3006), 1, anon_sym_for, - [106573] = 9, - ACTIONS(2668), 1, + ACTIONS(3009), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1795), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [104246] = 8, + ACTIONS(2554), 1, anon_sym_as, - ACTIONS(2672), 1, + ACTIONS(2556), 1, + anon_sym_if, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(2674), 1, + ACTIONS(2560), 1, anon_sym_or, - ACTIONS(3028), 1, - anon_sym_if, - ACTIONS(3050), 1, + ACTIONS(3011), 1, anon_sym_COMMA, - ACTIONS(3052), 1, + ACTIONS(3013), 1, anon_sym_COLON, - STATE(1986), 1, - aux_sym_case_clause_repeat1, - STATE(2449), 1, - sym_if_clause, + STATE(2065), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106602] = 9, - ACTIONS(2990), 1, + [104272] = 7, + ACTIONS(1186), 1, + anon_sym_COLON, + ACTIONS(2872), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2874), 1, anon_sym_if, - ACTIONS(2994), 1, - anon_sym_COLON, - ACTIONS(2998), 1, + ACTIONS(2880), 1, anon_sym_and, - ACTIONS(3000), 1, + ACTIONS(2882), 1, anon_sym_or, - ACTIONS(3054), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1184), 2, anon_sym_COMMA, - ACTIONS(3056), 1, anon_sym_RBRACK, - STATE(2098), 1, - aux_sym_subscript_repeat1, + [104296] = 8, + ACTIONS(2802), 1, + anon_sym_RBRACK, + ACTIONS(2872), 1, + anon_sym_as, + ACTIONS(2874), 1, + anon_sym_if, + ACTIONS(2880), 1, + anon_sym_and, + ACTIONS(2882), 1, + anon_sym_or, + ACTIONS(3015), 1, + anon_sym_COMMA, + STATE(2015), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106631] = 8, - ACTIONS(2962), 1, + [104322] = 8, + ACTIONS(2802), 1, + anon_sym_RPAREN, + ACTIONS(2984), 1, anon_sym_as, - ACTIONS(2964), 1, + ACTIONS(2986), 1, anon_sym_if, - ACTIONS(2966), 1, + ACTIONS(2988), 1, anon_sym_and, - ACTIONS(2968), 1, + ACTIONS(2990), 1, anon_sym_or, - ACTIONS(2974), 1, + ACTIONS(3017), 1, anon_sym_COMMA, - STATE(2013), 1, + STATE(2051), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3058), 2, - sym__newline, - anon_sym_SEMI, - [106658] = 5, - ACTIONS(2795), 1, + [104348] = 5, + ACTIONS(2719), 1, anon_sym_as, - ACTIONS(2805), 1, + ACTIONS(2727), 1, anon_sym_and, - ACTIONS(2807), 1, + ACTIONS(2729), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2984), 5, - anon_sym_COMMA, + ACTIONS(3019), 4, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [106679] = 6, - ACTIONS(2815), 1, + anon_sym_RBRACK, + [104368] = 5, + ACTIONS(2681), 1, anon_sym_as, - ACTIONS(2817), 1, - anon_sym_if, - ACTIONS(2823), 1, + ACTIONS(2691), 1, anon_sym_and, - ACTIONS(2825), 1, + ACTIONS(2693), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2436), 4, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3019), 4, + anon_sym_if, anon_sym_async, anon_sym_for, - [106702] = 9, - ACTIONS(2990), 1, + anon_sym_RBRACE, + [104388] = 5, + ACTIONS(2701), 1, anon_sym_as, - ACTIONS(2992), 1, - anon_sym_if, - ACTIONS(2994), 1, - anon_sym_COLON, - ACTIONS(2998), 1, + ACTIONS(2709), 1, anon_sym_and, - ACTIONS(3000), 1, + ACTIONS(2711), 1, anon_sym_or, - ACTIONS(3060), 1, - anon_sym_COMMA, - ACTIONS(3062), 1, - anon_sym_RBRACK, - STATE(2184), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106731] = 9, - ACTIONS(2990), 1, + ACTIONS(3019), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [104408] = 8, + ACTIONS(2554), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2556), 1, anon_sym_if, - ACTIONS(2994), 1, - anon_sym_COLON, - ACTIONS(2998), 1, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(3000), 1, + ACTIONS(2560), 1, anon_sym_or, - ACTIONS(3064), 1, + ACTIONS(3021), 1, anon_sym_COMMA, - ACTIONS(3066), 1, - anon_sym_RBRACK, - STATE(2153), 1, - aux_sym_subscript_repeat1, + ACTIONS(3023), 1, + anon_sym_COLON, + STATE(2213), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106760] = 8, - ACTIONS(2962), 1, + [104434] = 6, + ACTIONS(2984), 1, anon_sym_as, - ACTIONS(2964), 1, + ACTIONS(2986), 1, anon_sym_if, - ACTIONS(2966), 1, + ACTIONS(2988), 1, anon_sym_and, - ACTIONS(2968), 1, + ACTIONS(2990), 1, anon_sym_or, - ACTIONS(3042), 1, - anon_sym_COMMA, - STATE(2047), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3068), 2, - sym__newline, - anon_sym_SEMI, - [106787] = 9, - ACTIONS(2990), 1, + ACTIONS(2349), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [104456] = 6, + ACTIONS(2984), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2986), 1, anon_sym_if, - ACTIONS(2994), 1, - anon_sym_COLON, - ACTIONS(2998), 1, + ACTIONS(2988), 1, anon_sym_and, - ACTIONS(3000), 1, + ACTIONS(2990), 1, anon_sym_or, - ACTIONS(3070), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2306), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3072), 1, - anon_sym_RBRACK, - STATE(2185), 1, - aux_sym_subscript_repeat1, + anon_sym_EQ, + [104478] = 6, + ACTIONS(3009), 1, + anon_sym_RPAREN, + ACTIONS(3025), 1, + anon_sym_if, + ACTIONS(3028), 1, + anon_sym_async, + ACTIONS(3031), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106816] = 9, - ACTIONS(2990), 1, + STATE(1806), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [104500] = 8, + ACTIONS(2554), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2556), 1, anon_sym_if, - ACTIONS(2994), 1, - anon_sym_COLON, - ACTIONS(2998), 1, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(3000), 1, + ACTIONS(2560), 1, anon_sym_or, - ACTIONS(3074), 1, + ACTIONS(2992), 1, anon_sym_COMMA, - ACTIONS(3076), 1, - anon_sym_RBRACK, - STATE(2205), 1, - aux_sym_subscript_repeat1, + ACTIONS(3034), 1, + anon_sym_COLON, + STATE(2026), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106845] = 7, - ACTIONS(1344), 1, - anon_sym_except, - ACTIONS(1354), 1, - anon_sym_except_STAR, - ACTIONS(3008), 1, - anon_sym_finally, - STATE(850), 1, - sym_finally_clause, + [104526] = 8, + ACTIONS(2687), 1, + anon_sym_async, + ACTIONS(2689), 1, + anon_sym_for, + ACTIONS(3036), 1, + anon_sym_COMMA, + ACTIONS(3038), 1, + anon_sym_RBRACE, + STATE(1791), 1, + sym_for_in_clause, + STATE(2190), 1, + aux_sym_dictionary_repeat1, + STATE(2455), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(485), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(491), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [106870] = 7, - ACTIONS(1362), 1, - anon_sym_except, - ACTIONS(1366), 1, - anon_sym_except_STAR, - ACTIONS(2986), 1, - anon_sym_finally, - STATE(833), 1, - sym_finally_clause, + [104552] = 6, + ACTIONS(3009), 1, + anon_sym_RBRACE, + ACTIONS(3040), 1, + anon_sym_if, + ACTIONS(3043), 1, + anon_sym_async, + ACTIONS(3046), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(630), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - STATE(641), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - [106895] = 7, - ACTIONS(59), 1, - anon_sym_AT, - ACTIONS(3078), 1, + STATE(1809), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [104574] = 8, + ACTIONS(2687), 1, anon_sym_async, - ACTIONS(3080), 1, - anon_sym_def, - ACTIONS(3082), 1, - anon_sym_class, + ACTIONS(2689), 1, + anon_sym_for, + ACTIONS(3049), 1, + anon_sym_COMMA, + ACTIONS(3051), 1, + anon_sym_RBRACE, + STATE(1791), 1, + sym_for_in_clause, + STATE(2033), 1, + aux_sym_dictionary_repeat1, + STATE(2432), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(837), 2, - sym_function_definition, - sym_class_definition, - STATE(1961), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [106920] = 5, - ACTIONS(2795), 1, + [104600] = 8, + ACTIONS(2554), 1, anon_sym_as, - ACTIONS(2805), 1, + ACTIONS(2556), 1, + anon_sym_if, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(2807), 1, + ACTIONS(2560), 1, anon_sym_or, + ACTIONS(2992), 1, + anon_sym_COMMA, + ACTIONS(3053), 1, + anon_sym_COLON, + STATE(2026), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2984), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [106941] = 9, - ACTIONS(2990), 1, + [104626] = 6, + ACTIONS(2851), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2853), 1, anon_sym_if, - ACTIONS(2994), 1, - anon_sym_COLON, - ACTIONS(2998), 1, + ACTIONS(2855), 1, anon_sym_and, - ACTIONS(3000), 1, + ACTIONS(2857), 1, anon_sym_or, - ACTIONS(3084), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3055), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(3086), 1, - anon_sym_RBRACK, - STATE(2126), 1, - aux_sym_subscript_repeat1, + [104648] = 6, + ACTIONS(2705), 1, + anon_sym_async, + ACTIONS(2707), 1, + anon_sym_for, + ACTIONS(2972), 1, + anon_sym_RPAREN, + ACTIONS(2976), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106970] = 4, - ACTIONS(3088), 1, + STATE(1806), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [104670] = 6, + ACTIONS(2554), 1, + anon_sym_as, + ACTIONS(2556), 1, + anon_sym_if, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(3090), 1, + ACTIONS(2560), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2459), 5, - anon_sym_RPAREN, + ACTIONS(3057), 3, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + anon_sym_COLON, anon_sym_EQ, - [106988] = 6, - ACTIONS(2847), 1, + [104692] = 8, + ACTIONS(2687), 1, anon_sym_async, - ACTIONS(2849), 1, + ACTIONS(2689), 1, anon_sym_for, - ACTIONS(3092), 1, - anon_sym_if, - ACTIONS(3094), 1, - anon_sym_RBRACK, + ACTIONS(3059), 1, + anon_sym_COMMA, + ACTIONS(3061), 1, + anon_sym_RBRACE, + STATE(1791), 1, + sym_for_in_clause, + STATE(2085), 1, + aux_sym_dictionary_repeat1, + STATE(2351), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1878), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [107010] = 6, - ACTIONS(2962), 1, + [104718] = 3, + ACTIONS(2880), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2294), 6, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2964), 1, anon_sym_if, - ACTIONS(2966), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_or, + [104734] = 4, + ACTIONS(2880), 1, anon_sym_and, - ACTIONS(2968), 1, + ACTIONS(2882), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3096), 3, - sym__newline, - anon_sym_SEMI, + ACTIONS(2300), 5, anon_sym_COMMA, - [107032] = 5, - ACTIONS(2795), 1, anon_sym_as, - ACTIONS(2805), 1, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + [104752] = 5, + ACTIONS(2880), 1, anon_sym_and, - ACTIONS(2807), 1, + ACTIONS(2882), 1, anon_sym_or, + ACTIONS(3063), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3098), 4, + ACTIONS(2318), 4, + anon_sym_COMMA, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [107052] = 6, - ACTIONS(2962), 1, + anon_sym_COLON, + anon_sym_RBRACK, + [104772] = 8, + ACTIONS(3066), 1, + sym_identifier, + ACTIONS(3068), 1, + anon_sym_LPAREN, + ACTIONS(3070), 1, + anon_sym_STAR, + STATE(1936), 1, + sym_dotted_name, + STATE(1992), 1, + sym_aliased_import, + STATE(2288), 1, + sym_wildcard_import, + STATE(2292), 1, + sym__import_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [104798] = 6, + ACTIONS(2872), 1, anon_sym_as, - ACTIONS(2964), 1, + ACTIONS(2874), 1, anon_sym_if, - ACTIONS(2966), 1, + ACTIONS(2880), 1, anon_sym_and, - ACTIONS(2968), 1, + ACTIONS(2882), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3100), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_EQ, - [107074] = 5, - ACTIONS(2998), 1, + ACTIONS(2349), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + [104820] = 6, + ACTIONS(2872), 1, + anon_sym_as, + ACTIONS(2874), 1, + anon_sym_if, + ACTIONS(2880), 1, anon_sym_and, - ACTIONS(3000), 1, + ACTIONS(2882), 1, anon_sym_or, - ACTIONS(3102), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2452), 4, + ACTIONS(2337), 3, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, - [107094] = 6, - ACTIONS(2990), 1, + [104842] = 7, + ACTIONS(2872), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2874), 1, anon_sym_if, - ACTIONS(2998), 1, + ACTIONS(2876), 1, + anon_sym_COLON, + ACTIONS(2880), 1, anon_sym_and, - ACTIONS(3000), 1, + ACTIONS(2882), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2436), 3, + ACTIONS(3072), 2, anon_sym_COMMA, - anon_sym_COLON, anon_sym_RBRACK, - [107116] = 8, - ACTIONS(2801), 1, - anon_sym_async, - ACTIONS(2803), 1, - anon_sym_for, - ACTIONS(3105), 1, - anon_sym_COMMA, - ACTIONS(3107), 1, - anon_sym_RBRACE, - STATE(1902), 1, - sym_for_in_clause, - STATE(2178), 1, - aux_sym_dictionary_repeat1, - STATE(2373), 1, - sym__comprehension_clauses, + [104866] = 3, + ACTIONS(2988), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107142] = 8, - ACTIONS(2668), 1, + ACTIONS(2294), 6, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2670), 1, anon_sym_if, - ACTIONS(2672), 1, + anon_sym_EQ, + anon_sym_or, + [104882] = 4, + ACTIONS(2988), 1, anon_sym_and, - ACTIONS(2674), 1, + ACTIONS(2990), 1, anon_sym_or, - ACTIONS(3109), 1, - anon_sym_COMMA, - ACTIONS(3111), 1, - anon_sym_COLON, - STATE(2194), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107168] = 3, - ACTIONS(2998), 1, + ACTIONS(2300), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_EQ, + [104900] = 7, + ACTIONS(2872), 1, + anon_sym_as, + ACTIONS(2874), 1, + anon_sym_if, + ACTIONS(2880), 1, anon_sym_and, + ACTIONS(2882), 1, + anon_sym_or, + ACTIONS(3074), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2463), 6, + ACTIONS(1294), 2, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_RBRACK, - anon_sym_or, - [107184] = 3, - ACTIONS(3088), 1, + [104924] = 5, + ACTIONS(2988), 1, anon_sym_and, + ACTIONS(2990), 1, + anon_sym_or, + ACTIONS(3076), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2463), 6, + ACTIONS(2318), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_EQ, - anon_sym_or, - [107200] = 8, - ACTIONS(2668), 1, + [104944] = 7, + ACTIONS(3079), 1, + sym_identifier, + ACTIONS(3081), 1, + anon_sym_DOT, + ACTIONS(3083), 1, + anon_sym___future__, + STATE(1972), 1, + aux_sym_import_prefix_repeat1, + STATE(2016), 1, + sym_import_prefix, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2476), 2, + sym_relative_import, + sym_dotted_name, + [104968] = 8, + ACTIONS(2554), 1, anon_sym_as, - ACTIONS(2670), 1, + ACTIONS(2556), 1, anon_sym_if, - ACTIONS(2672), 1, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(2674), 1, + ACTIONS(2560), 1, anon_sym_or, - ACTIONS(3109), 1, + ACTIONS(2992), 1, anon_sym_COMMA, - ACTIONS(3113), 1, + ACTIONS(3085), 1, anon_sym_COLON, - STATE(2194), 1, + STATE(2026), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107226] = 8, - ACTIONS(2801), 1, - anon_sym_async, - ACTIONS(2803), 1, - anon_sym_for, - ACTIONS(3115), 1, - anon_sym_COMMA, - ACTIONS(3117), 1, - anon_sym_RBRACE, - STATE(1902), 1, - sym_for_in_clause, - STATE(2218), 1, - aux_sym_dictionary_repeat1, - STATE(2350), 1, - sym__comprehension_clauses, + [104994] = 6, + ACTIONS(2984), 1, + anon_sym_as, + ACTIONS(2986), 1, + anon_sym_if, + ACTIONS(2988), 1, + anon_sym_and, + ACTIONS(2990), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107252] = 8, - ACTIONS(2811), 1, + ACTIONS(3057), 3, anon_sym_RPAREN, - ACTIONS(2813), 1, anon_sym_COMMA, - ACTIONS(3088), 1, - anon_sym_and, - ACTIONS(3090), 1, - anon_sym_or, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3121), 1, - anon_sym_if, - STATE(2085), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, + anon_sym_EQ, + [105016] = 7, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - [107278] = 7, + ACTIONS(3087), 1, + anon_sym_LBRACE, + ACTIONS(3092), 1, + sym__not_escape_sequence, + ACTIONS(3095), 1, + sym_string_end, + STATE(1830), 1, + aux_sym_string_content_repeat1, + ACTIONS(3089), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [105040] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3123), 1, + ACTIONS(3097), 1, anon_sym_LBRACE, - ACTIONS(3128), 1, + ACTIONS(3101), 1, sym__not_escape_sequence, - ACTIONS(3131), 1, + ACTIONS(3103), 1, sym_string_end, - STATE(1864), 1, + STATE(1830), 1, aux_sym_string_content_repeat1, - ACTIONS(3125), 3, + ACTIONS(3099), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [107302] = 6, - ACTIONS(3088), 1, - anon_sym_and, - ACTIONS(3090), 1, - anon_sym_or, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3121), 1, + [105064] = 6, + ACTIONS(2723), 1, + anon_sym_async, + ACTIONS(2725), 1, + anon_sym_for, + ACTIONS(2974), 1, + anon_sym_RBRACK, + ACTIONS(2982), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2424), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [107324] = 6, - ACTIONS(2962), 1, + STATE(1790), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [105086] = 6, + ACTIONS(2984), 1, anon_sym_as, - ACTIONS(2964), 1, + ACTIONS(2986), 1, anon_sym_if, - ACTIONS(2966), 1, + ACTIONS(2988), 1, anon_sym_and, - ACTIONS(2968), 1, + ACTIONS(2990), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3133), 3, - sym__newline, - anon_sym_SEMI, + ACTIONS(2337), 3, + anon_sym_RPAREN, anon_sym_COMMA, - [107346] = 6, - ACTIONS(2819), 1, + anon_sym_EQ, + [105108] = 8, + ACTIONS(2687), 1, anon_sym_async, - ACTIONS(2821), 1, + ACTIONS(2689), 1, anon_sym_for, - ACTIONS(3094), 1, - anon_sym_RPAREN, - ACTIONS(3135), 1, - anon_sym_if, + ACTIONS(3105), 1, + anon_sym_COMMA, + ACTIONS(3107), 1, + anon_sym_RBRACE, + STATE(1791), 1, + sym_for_in_clause, + STATE(2141), 1, + aux_sym_dictionary_repeat1, + STATE(2400), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1869), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [107368] = 8, - ACTIONS(2801), 1, + [105134] = 8, + ACTIONS(2687), 1, anon_sym_async, - ACTIONS(2803), 1, + ACTIONS(2689), 1, anon_sym_for, - ACTIONS(3137), 1, + ACTIONS(3109), 1, anon_sym_COMMA, - ACTIONS(3139), 1, + ACTIONS(3111), 1, anon_sym_RBRACE, - STATE(1902), 1, + STATE(1791), 1, sym_for_in_clause, - STATE(2166), 1, + STATE(2137), 1, aux_sym_dictionary_repeat1, - STATE(2384), 1, + STATE(2318), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107394] = 6, - ACTIONS(3141), 1, - anon_sym_RPAREN, - ACTIONS(3143), 1, + [105160] = 6, + ACTIONS(2872), 1, + anon_sym_as, + ACTIONS(2874), 1, anon_sym_if, - ACTIONS(3146), 1, - anon_sym_async, - ACTIONS(3149), 1, - anon_sym_for, + ACTIONS(2880), 1, + anon_sym_and, + ACTIONS(2882), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1869), 3, + ACTIONS(2306), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + [105182] = 8, + ACTIONS(2687), 1, + anon_sym_async, + ACTIONS(2689), 1, + anon_sym_for, + ACTIONS(3113), 1, + anon_sym_COMMA, + ACTIONS(3115), 1, + anon_sym_RBRACE, + STATE(1791), 1, sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [107416] = 7, - ACTIONS(3152), 1, - sym_identifier, - ACTIONS(3154), 1, - anon_sym_DOT, - ACTIONS(3156), 1, - anon_sym___future__, - STATE(2055), 1, - aux_sym_import_prefix_repeat1, - STATE(2120), 1, - sym_import_prefix, + STATE(2014), 1, + aux_sym_dictionary_repeat1, + STATE(2337), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2448), 2, - sym_relative_import, - sym_dotted_name, - [107440] = 5, - ACTIONS(3088), 1, + [105208] = 6, + ACTIONS(2851), 1, + anon_sym_as, + ACTIONS(2853), 1, + anon_sym_if, + ACTIONS(2855), 1, anon_sym_and, - ACTIONS(3090), 1, + ACTIONS(2857), 1, anon_sym_or, - ACTIONS(3158), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3057), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [105230] = 6, + ACTIONS(2851), 1, anon_sym_as, + ACTIONS(2853), 1, + anon_sym_if, + ACTIONS(2855), 1, + anon_sym_and, + ACTIONS(2857), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2452), 4, - anon_sym_RPAREN, + ACTIONS(3117), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_if, - anon_sym_EQ, - [107460] = 5, - ACTIONS(2843), 1, + [105252] = 6, + ACTIONS(2984), 1, anon_sym_as, - ACTIONS(2851), 1, + ACTIONS(2986), 1, + anon_sym_if, + ACTIONS(2988), 1, anon_sym_and, - ACTIONS(2853), 1, + ACTIONS(2990), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3098), 4, + ACTIONS(3119), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [105273] = 4, + ACTIONS(3121), 1, + anon_sym_COMMA, + STATE(1841), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3124), 4, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [107480] = 8, - ACTIONS(2920), 1, - anon_sym_RBRACK, - ACTIONS(2990), 1, + [105290] = 6, + ACTIONS(2984), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2986), 1, anon_sym_if, - ACTIONS(2998), 1, + ACTIONS(2988), 1, anon_sym_and, - ACTIONS(3000), 1, + ACTIONS(2990), 1, anon_sym_or, - ACTIONS(3161), 1, - anon_sym_COMMA, - STATE(2092), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107506] = 8, - ACTIONS(2668), 1, + ACTIONS(3126), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [105311] = 6, + ACTIONS(2554), 1, anon_sym_as, - ACTIONS(2670), 1, + ACTIONS(2556), 1, anon_sym_if, - ACTIONS(2672), 1, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(2674), 1, + ACTIONS(2560), 1, anon_sym_or, - ACTIONS(3109), 1, - anon_sym_COMMA, - ACTIONS(3163), 1, - anon_sym_COLON, - STATE(2194), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107532] = 8, - ACTIONS(2801), 1, - anon_sym_async, - ACTIONS(2803), 1, - anon_sym_for, - ACTIONS(3165), 1, + ACTIONS(2868), 2, anon_sym_COMMA, - ACTIONS(3167), 1, - anon_sym_RBRACE, - STATE(1902), 1, - sym_for_in_clause, - STATE(2223), 1, - aux_sym_dictionary_repeat1, - STATE(2416), 1, - sym__comprehension_clauses, + anon_sym_COLON, + [105332] = 4, + ACTIONS(3128), 1, + anon_sym_COMMA, + STATE(1846), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107558] = 8, - ACTIONS(2668), 1, + ACTIONS(884), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [105349] = 6, + ACTIONS(2872), 1, anon_sym_as, - ACTIONS(2670), 1, + ACTIONS(2874), 1, anon_sym_if, - ACTIONS(2672), 1, + ACTIONS(2880), 1, anon_sym_and, - ACTIONS(2674), 1, + ACTIONS(2882), 1, anon_sym_or, - ACTIONS(3169), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2868), 2, anon_sym_COMMA, - ACTIONS(3171), 1, - anon_sym_COLON, - STATE(2070), 1, - aux_sym_match_statement_repeat1, + anon_sym_RBRACK, + [105370] = 4, + ACTIONS(3130), 1, + anon_sym_COMMA, + STATE(1846), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107584] = 4, - ACTIONS(2998), 1, - anon_sym_and, - ACTIONS(3000), 1, - anon_sym_or, + ACTIONS(2565), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [105387] = 4, + ACTIONS(3135), 1, + anon_sym_DOT, + STATE(1847), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2459), 5, + ACTIONS(3133), 4, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_as, + [105404] = 6, + ACTIONS(2872), 1, + anon_sym_as, + ACTIONS(2874), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - [107602] = 6, - ACTIONS(3141), 1, - anon_sym_RBRACK, - ACTIONS(3173), 1, - anon_sym_if, - ACTIONS(3176), 1, - anon_sym_async, - ACTIONS(3179), 1, - anon_sym_for, + ACTIONS(2880), 1, + anon_sym_and, + ACTIONS(2882), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1878), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [107624] = 8, - ACTIONS(2920), 1, - anon_sym_RPAREN, - ACTIONS(3088), 1, - anon_sym_and, - ACTIONS(3090), 1, - anon_sym_or, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3121), 1, - anon_sym_if, - ACTIONS(3182), 1, + ACTIONS(3138), 2, anon_sym_COMMA, - STATE(2093), 1, - aux_sym_assert_statement_repeat1, + anon_sym_RBRACK, + [105425] = 4, + ACTIONS(3142), 1, + anon_sym_DOT, + STATE(1872), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107650] = 8, - ACTIONS(2801), 1, - anon_sym_async, - ACTIONS(2803), 1, - anon_sym_for, - ACTIONS(3184), 1, + ACTIONS(3140), 4, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(3186), 1, - anon_sym_RBRACE, - STATE(1902), 1, - sym_for_in_clause, - STATE(2132), 1, - aux_sym_dictionary_repeat1, - STATE(2422), 1, - sym__comprehension_clauses, + anon_sym_as, + [105442] = 6, + ACTIONS(2851), 1, + anon_sym_as, + ACTIONS(2853), 1, + anon_sym_if, + ACTIONS(2855), 1, + anon_sym_and, + ACTIONS(2857), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107676] = 8, - ACTIONS(3188), 1, - sym_identifier, - ACTIONS(3190), 1, - anon_sym_LPAREN, - ACTIONS(3192), 1, - anon_sym_STAR, - STATE(1990), 1, - sym_dotted_name, - STATE(2054), 1, - sym_aliased_import, - STATE(2304), 1, - sym__import_list, - STATE(2306), 1, - sym_wildcard_import, - ACTIONS(3), 2, + ACTIONS(3144), 2, + sym__newline, + anon_sym_SEMI, + [105463] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - [107702] = 6, - ACTIONS(2668), 1, + ACTIONS(3146), 2, + anon_sym_LBRACE, + sym__not_escape_sequence, + ACTIONS(3148), 4, + sym__string_content, + sym_string_end, + sym__escape_interpolation, + sym_escape_sequence, + [105480] = 6, + ACTIONS(2554), 1, anon_sym_as, - ACTIONS(2670), 1, + ACTIONS(2556), 1, anon_sym_if, - ACTIONS(2672), 1, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(2674), 1, + ACTIONS(2560), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3100), 3, + ACTIONS(3150), 2, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - [107724] = 8, - ACTIONS(2668), 1, - anon_sym_as, - ACTIONS(2670), 1, - anon_sym_if, - ACTIONS(2672), 1, - anon_sym_and, - ACTIONS(2674), 1, - anon_sym_or, - ACTIONS(3109), 1, + [105501] = 4, + ACTIONS(3152), 1, anon_sym_COMMA, - ACTIONS(3194), 1, - anon_sym_COLON, - STATE(2194), 1, + STATE(1859), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107750] = 6, - ACTIONS(2990), 1, + ACTIONS(1080), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [105518] = 6, + ACTIONS(2798), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2800), 1, anon_sym_if, - ACTIONS(2998), 1, + ACTIONS(2804), 1, anon_sym_and, - ACTIONS(3000), 1, + ACTIONS(2806), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 3, + ACTIONS(3154), 2, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - [107772] = 6, - ACTIONS(3088), 1, + anon_sym_RBRACE, + [105539] = 6, + ACTIONS(2851), 1, + anon_sym_as, + ACTIONS(2853), 1, + anon_sym_if, + ACTIONS(2855), 1, anon_sym_and, - ACTIONS(3090), 1, + ACTIONS(2857), 1, anon_sym_or, - ACTIONS(3119), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2843), 2, + sym__newline, + anon_sym_SEMI, + [105560] = 6, + ACTIONS(2984), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(2986), 1, anon_sym_if, + ACTIONS(2988), 1, + anon_sym_and, + ACTIONS(2990), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 3, + ACTIONS(2843), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_EQ, - [107794] = 8, - ACTIONS(2801), 1, - anon_sym_async, - ACTIONS(2803), 1, - anon_sym_for, - ACTIONS(3196), 1, - anon_sym_COMMA, - ACTIONS(3198), 1, - anon_sym_RBRACE, - STATE(1902), 1, - sym_for_in_clause, - STATE(2106), 1, - aux_sym_dictionary_repeat1, - STATE(2469), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [107820] = 6, - ACTIONS(3088), 1, - anon_sym_and, - ACTIONS(3090), 1, - anon_sym_or, - ACTIONS(3119), 1, + [105581] = 6, + ACTIONS(2984), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(2986), 1, anon_sym_if, + ACTIONS(2988), 1, + anon_sym_and, + ACTIONS(2990), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2436), 3, + ACTIONS(3154), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_EQ, - [107842] = 8, - ACTIONS(2668), 1, + [105602] = 7, + ACTIONS(2554), 1, anon_sym_as, - ACTIONS(2670), 1, + ACTIONS(2556), 1, anon_sym_if, - ACTIONS(2672), 1, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(2674), 1, + ACTIONS(2560), 1, anon_sym_or, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3202), 1, + ACTIONS(3019), 1, anon_sym_COLON, - STATE(2121), 1, - aux_sym_match_statement_repeat1, + ACTIONS(3156), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107868] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3204), 1, - anon_sym_LBRACE, - ACTIONS(3208), 1, - sym__not_escape_sequence, - ACTIONS(3210), 1, - sym_string_end, - STATE(1864), 1, - aux_sym_string_content_repeat1, - ACTIONS(3206), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [107892] = 6, - ACTIONS(3088), 1, - anon_sym_and, - ACTIONS(3090), 1, - anon_sym_or, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3121), 1, - anon_sym_if, + [105625] = 4, + ACTIONS(3158), 1, + anon_sym_COMMA, + STATE(1859), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3100), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2868), 4, + anon_sym_COLON, anon_sym_EQ, - [107914] = 7, - ACTIONS(2990), 1, + anon_sym_RBRACE, + sym_type_conversion, + [105642] = 5, + ACTIONS(2554), 1, anon_sym_as, - ACTIONS(2992), 1, - anon_sym_if, - ACTIONS(2998), 1, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(3000), 1, + ACTIONS(2560), 1, anon_sym_or, - ACTIONS(3212), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1316), 2, + ACTIONS(3161), 3, anon_sym_COMMA, - anon_sym_RBRACK, - [107938] = 8, - ACTIONS(2801), 1, - anon_sym_async, - ACTIONS(2803), 1, - anon_sym_for, - ACTIONS(3214), 1, + anon_sym_if, + anon_sym_COLON, + [105661] = 4, + ACTIONS(3163), 1, anon_sym_COMMA, - ACTIONS(3216), 1, - anon_sym_RBRACE, - STATE(1902), 1, - sym_for_in_clause, - STATE(2268), 1, - aux_sym_dictionary_repeat1, - STATE(2508), 1, - sym__comprehension_clauses, + STATE(1861), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107964] = 6, - ACTIONS(2819), 1, + ACTIONS(3124), 4, + anon_sym_RPAREN, + anon_sym_if, anon_sym_async, - ACTIONS(2821), 1, anon_sym_for, - ACTIONS(3135), 1, + [105678] = 6, + ACTIONS(2554), 1, + anon_sym_as, + ACTIONS(2556), 1, anon_sym_if, - ACTIONS(3218), 1, - anon_sym_RPAREN, + ACTIONS(2558), 1, + anon_sym_and, + ACTIONS(2560), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1867), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [107986] = 5, - ACTIONS(2815), 1, + ACTIONS(3166), 2, + anon_sym_COMMA, + anon_sym_COLON, + [105699] = 6, + ACTIONS(2851), 1, anon_sym_as, - ACTIONS(2823), 1, + ACTIONS(2853), 1, + anon_sym_if, + ACTIONS(2855), 1, anon_sym_and, - ACTIONS(2825), 1, + ACTIONS(2857), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3098), 4, + ACTIONS(3168), 2, + sym__newline, + anon_sym_SEMI, + [105720] = 4, + ACTIONS(3172), 1, + anon_sym_COMMA, + STATE(1861), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3170), 4, anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - [108006] = 7, - ACTIONS(2990), 1, + [105737] = 6, + ACTIONS(2872), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2874), 1, anon_sym_if, - ACTIONS(2994), 1, - anon_sym_COLON, - ACTIONS(2998), 1, + ACTIONS(2880), 1, anon_sym_and, - ACTIONS(3000), 1, + ACTIONS(2882), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3220), 2, + ACTIONS(3174), 2, anon_sym_COMMA, anon_sym_RBRACK, - [108030] = 7, - ACTIONS(1270), 1, - anon_sym_COLON, - ACTIONS(2990), 1, + [105758] = 6, + ACTIONS(2872), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2874), 1, anon_sym_if, - ACTIONS(2998), 1, + ACTIONS(2880), 1, anon_sym_and, - ACTIONS(3000), 1, + ACTIONS(2882), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1268), 2, + ACTIONS(3126), 2, anon_sym_COMMA, anon_sym_RBRACK, - [108054] = 6, - ACTIONS(2801), 1, - anon_sym_async, - ACTIONS(2803), 1, - anon_sym_for, - ACTIONS(3094), 1, - anon_sym_RBRACE, - ACTIONS(3222), 1, - anon_sym_if, + [105779] = 4, + ACTIONS(2558), 1, + anon_sym_and, + ACTIONS(2560), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1901), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [108076] = 6, - ACTIONS(2847), 1, - anon_sym_async, - ACTIONS(2849), 1, - anon_sym_for, - ACTIONS(3092), 1, + ACTIONS(2300), 4, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - ACTIONS(3218), 1, - anon_sym_RBRACK, + anon_sym_COLON, + [105796] = 6, + ACTIONS(2984), 1, + anon_sym_as, + ACTIONS(2986), 1, + anon_sym_if, + ACTIONS(2988), 1, + anon_sym_and, + ACTIONS(2990), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1851), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [108098] = 8, - ACTIONS(2801), 1, - anon_sym_async, - ACTIONS(2803), 1, - anon_sym_for, - ACTIONS(3224), 1, + ACTIONS(3138), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3226), 1, - anon_sym_RBRACE, - STATE(1902), 1, - sym_for_in_clause, - STATE(2078), 1, - aux_sym_dictionary_repeat1, - STATE(2520), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [108124] = 6, - ACTIONS(2990), 1, + [105817] = 6, + ACTIONS(2984), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2986), 1, anon_sym_if, - ACTIONS(2998), 1, + ACTIONS(2988), 1, anon_sym_and, - ACTIONS(3000), 1, + ACTIONS(2990), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2424), 3, + ACTIONS(3176), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - [108146] = 6, - ACTIONS(3141), 1, - anon_sym_RBRACE, - ACTIONS(3228), 1, + [105838] = 4, + ACTIONS(3178), 1, + anon_sym_COMMA, + STATE(1870), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3124), 4, anon_sym_if, - ACTIONS(3231), 1, anon_sym_async, - ACTIONS(3234), 1, anon_sym_for, + anon_sym_RBRACE, + [105855] = 4, + ACTIONS(3183), 1, + anon_sym_COMMA, + STATE(1861), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1901), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [108168] = 6, - ACTIONS(2801), 1, + ACTIONS(3181), 4, + anon_sym_RPAREN, + anon_sym_if, anon_sym_async, - ACTIONS(2803), 1, anon_sym_for, - ACTIONS(3218), 1, - anon_sym_RBRACE, - ACTIONS(3222), 1, - anon_sym_if, + [105872] = 4, + ACTIONS(3142), 1, + anon_sym_DOT, + STATE(1847), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1897), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [108190] = 4, - ACTIONS(3237), 1, + ACTIONS(3185), 4, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1909), 1, + anon_sym_as, + [105889] = 4, + ACTIONS(3189), 1, + anon_sym_COMMA, + STATE(1864), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3239), 4, + ACTIONS(3187), 4, + anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [108207] = 7, - ACTIONS(2670), 1, + [105906] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3191), 2, + anon_sym_LBRACE, + sym__not_escape_sequence, + ACTIONS(3193), 4, + sym__string_content, + sym_string_end, + sym__escape_interpolation, + sym_escape_sequence, + [105923] = 6, + ACTIONS(2872), 1, + anon_sym_as, + ACTIONS(2874), 1, anon_sym_if, - ACTIONS(2672), 1, + ACTIONS(2880), 1, anon_sym_and, - ACTIONS(2674), 1, + ACTIONS(2882), 1, anon_sym_or, - ACTIONS(3241), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1262), 2, anon_sym_COMMA, - ACTIONS(3243), 1, + anon_sym_RBRACK, + [105944] = 6, + ACTIONS(2554), 1, anon_sym_as, - ACTIONS(3245), 1, - anon_sym_COLON, + ACTIONS(2556), 1, + anon_sym_if, + ACTIONS(2558), 1, + anon_sym_and, + ACTIONS(2560), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108230] = 4, + ACTIONS(3195), 2, + anon_sym_COMMA, + anon_sym_COLON, + [105965] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3247), 2, + ACTIONS(3197), 2, anon_sym_LBRACE, sym__not_escape_sequence, - ACTIONS(3249), 4, + ACTIONS(3199), 4, sym__string_content, sym_string_end, sym__escape_interpolation, sym_escape_sequence, - [108247] = 4, - ACTIONS(3251), 1, - anon_sym_COMMA, - STATE(1929), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3253), 4, + [105982] = 6, + ACTIONS(2984), 1, + anon_sym_as, + ACTIONS(2986), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [108264] = 6, - ACTIONS(3088), 1, + ACTIONS(2988), 1, anon_sym_and, - ACTIONS(3090), 1, + ACTIONS(2990), 1, anon_sym_or, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3121), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3255), 2, + ACTIONS(3201), 2, anon_sym_RPAREN, anon_sym_COMMA, - [108285] = 6, - ACTIONS(2962), 1, + [106003] = 6, + ACTIONS(2984), 1, anon_sym_as, - ACTIONS(2964), 1, + ACTIONS(2986), 1, anon_sym_if, - ACTIONS(2966), 1, + ACTIONS(2988), 1, anon_sym_and, - ACTIONS(2968), 1, + ACTIONS(2990), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3257), 2, - sym__newline, - anon_sym_SEMI, - [108306] = 4, - ACTIONS(3259), 1, + ACTIONS(3166), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1929), 1, + [106024] = 4, + ACTIONS(3203), 1, + anon_sym_COMMA, + STATE(1870), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3261), 4, + ACTIONS(3170), 4, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [108323] = 6, - ACTIONS(2668), 1, - anon_sym_as, - ACTIONS(2670), 1, - anon_sym_if, - ACTIONS(2672), 1, - anon_sym_and, - ACTIONS(2674), 1, - anon_sym_or, + anon_sym_RBRACE, + [106041] = 4, + ACTIONS(3207), 1, + anon_sym_AT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2976), 2, - anon_sym_COMMA, - anon_sym_COLON, - [108344] = 4, - ACTIONS(3263), 1, + STATE(1881), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + ACTIONS(3205), 3, + anon_sym_async, + anon_sym_def, + anon_sym_class, + [106058] = 4, + ACTIONS(3210), 1, anon_sym_COMMA, - STATE(1906), 1, + STATE(1870), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3265), 4, + ACTIONS(3181), 4, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [108361] = 4, - ACTIONS(3269), 1, + anon_sym_RBRACE, + [106075] = 4, + ACTIONS(3214), 1, anon_sym_COMMA, - STATE(1912), 1, + STATE(1871), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3267), 4, + ACTIONS(3212), 4, anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - [108378] = 7, - ACTIONS(2668), 1, - anon_sym_as, - ACTIONS(2670), 1, - anon_sym_if, - ACTIONS(2672), 1, - anon_sym_and, - ACTIONS(2674), 1, - anon_sym_or, - ACTIONS(3098), 1, - anon_sym_COLON, - ACTIONS(3272), 1, - anon_sym_else, + [106092] = 4, + ACTIONS(3216), 1, + anon_sym_COMMA, + STATE(1880), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108401] = 4, - ACTIONS(3274), 1, + ACTIONS(3187), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [106109] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3218), 2, + anon_sym_LBRACE, + sym__not_escape_sequence, + ACTIONS(3220), 4, + sym__string_content, + sym_string_end, + sym__escape_interpolation, + sym_escape_sequence, + [106126] = 4, + ACTIONS(3222), 1, anon_sym_COMMA, - STATE(1914), 1, + STATE(1882), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3267), 4, + ACTIONS(3212), 4, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [108418] = 6, - ACTIONS(3088), 1, - anon_sym_and, - ACTIONS(3090), 1, - anon_sym_or, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3121), 1, - anon_sym_if, - ACTIONS(3), 2, + [106143] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3277), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [108439] = 4, - ACTIONS(3281), 1, - anon_sym_DOT, - STATE(1916), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, + ACTIONS(3224), 2, + anon_sym_LBRACE, + sym__not_escape_sequence, + ACTIONS(3226), 4, + sym__string_content, + sym_string_end, + sym__escape_interpolation, + sym_escape_sequence, + [106160] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3279), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - [108456] = 6, - ACTIONS(2962), 1, + ACTIONS(3228), 2, + anon_sym_LBRACE, + sym__not_escape_sequence, + ACTIONS(3230), 4, + sym__string_content, + sym_string_end, + sym__escape_interpolation, + sym_escape_sequence, + [106177] = 6, + ACTIONS(2798), 1, anon_sym_as, - ACTIONS(2964), 1, + ACTIONS(2800), 1, anon_sym_if, - ACTIONS(2966), 1, + ACTIONS(2804), 1, anon_sym_and, - ACTIONS(2968), 1, + ACTIONS(2806), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3284), 2, - sym__newline, - anon_sym_SEMI, - [108477] = 5, - ACTIONS(2668), 1, + ACTIONS(3126), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [106198] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3232), 2, + anon_sym_LBRACE, + sym__not_escape_sequence, + ACTIONS(3234), 4, + sym__string_content, + sym_string_end, + sym__escape_interpolation, + sym_escape_sequence, + [106215] = 6, + ACTIONS(2798), 1, anon_sym_as, - ACTIONS(2672), 1, + ACTIONS(2800), 1, + anon_sym_if, + ACTIONS(2804), 1, anon_sym_and, - ACTIONS(2674), 1, + ACTIONS(2806), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3286), 3, + ACTIONS(2966), 2, anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - [108496] = 4, - ACTIONS(3288), 1, + anon_sym_RBRACE, + [106236] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3236), 2, + anon_sym_LBRACE, + sym__not_escape_sequence, + ACTIONS(3238), 4, + sym__string_content, + sym_string_end, + sym__escape_interpolation, + sym_escape_sequence, + [106253] = 4, + ACTIONS(3240), 1, anon_sym_COMMA, - STATE(1914), 1, + STATE(1897), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3253), 4, + ACTIONS(3212), 4, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [108513] = 6, - ACTIONS(2990), 1, + anon_sym_RBRACK, + [106270] = 6, + ACTIONS(2984), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2986), 1, anon_sym_if, - ACTIONS(2998), 1, - anon_sym_and, - ACTIONS(3000), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3290), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [108534] = 6, - ACTIONS(3088), 1, + ACTIONS(2988), 1, anon_sym_and, - ACTIONS(3090), 1, + ACTIONS(2990), 1, anon_sym_or, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3121), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3292), 2, + ACTIONS(2868), 2, anon_sym_RPAREN, anon_sym_COMMA, - [108555] = 6, - ACTIONS(2990), 1, + [106291] = 6, + ACTIONS(2984), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2986), 1, anon_sym_if, - ACTIONS(2998), 1, - anon_sym_and, - ACTIONS(3000), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1318), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [108576] = 6, - ACTIONS(3088), 1, + ACTIONS(2988), 1, anon_sym_and, - ACTIONS(3090), 1, + ACTIONS(2990), 1, anon_sym_or, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3121), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3290), 2, + ACTIONS(3195), 2, anon_sym_RPAREN, anon_sym_COMMA, - [108597] = 4, - ACTIONS(3294), 1, + [106312] = 4, + ACTIONS(3242), 1, anon_sym_COMMA, - STATE(1914), 1, + STATE(1898), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3261), 4, + ACTIONS(3187), 4, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [108614] = 4, - ACTIONS(3296), 1, + anon_sym_RBRACK, + [106329] = 4, + ACTIONS(3244), 1, anon_sym_COMMA, - STATE(1925), 1, - aux_sym_assert_statement_repeat1, + STATE(1841), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2976), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [108631] = 4, - ACTIONS(3299), 1, + ACTIONS(3181), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [106346] = 4, + ACTIONS(3246), 1, anon_sym_COMMA, - STATE(1919), 1, + STATE(1841), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3265), 4, + ACTIONS(3170), 4, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [108648] = 6, - ACTIONS(3088), 1, + anon_sym_RBRACK, + [106363] = 7, + ACTIONS(2556), 1, + anon_sym_if, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(3090), 1, + ACTIONS(2560), 1, anon_sym_or, - ACTIONS(3119), 1, + ACTIONS(3248), 1, + anon_sym_COMMA, + ACTIONS(3250), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3252), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [106386] = 6, + ACTIONS(2872), 1, + anon_sym_as, + ACTIONS(2874), 1, anon_sym_if, + ACTIONS(2880), 1, + anon_sym_and, + ACTIONS(2882), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3301), 2, - anon_sym_RPAREN, + ACTIONS(1294), 2, anon_sym_COMMA, - [108669] = 6, - ACTIONS(3088), 1, + anon_sym_RBRACK, + [106407] = 6, + ACTIONS(2872), 1, + anon_sym_as, + ACTIONS(2874), 1, + anon_sym_if, + ACTIONS(2880), 1, anon_sym_and, - ACTIONS(3090), 1, + ACTIONS(2882), 1, anon_sym_or, - ACTIONS(3119), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2843), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [106428] = 6, + ACTIONS(2984), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(2986), 1, anon_sym_if, + ACTIONS(2988), 1, + anon_sym_and, + ACTIONS(2990), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3303), 2, + ACTIONS(3254), 2, anon_sym_RPAREN, anon_sym_COMMA, - [108690] = 4, - ACTIONS(3305), 1, + [106449] = 7, + ACTIONS(2556), 1, + anon_sym_if, + ACTIONS(2558), 1, + anon_sym_and, + ACTIONS(2560), 1, + anon_sym_or, + ACTIONS(3250), 1, + anon_sym_as, + ACTIONS(3256), 1, anon_sym_COMMA, - STATE(1929), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(3258), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3267), 4, + [106472] = 6, + ACTIONS(2798), 1, + anon_sym_as, + ACTIONS(2800), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [108707] = 4, - ACTIONS(3308), 1, + ACTIONS(2804), 1, + anon_sym_and, + ACTIONS(2806), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3138), 2, anon_sym_COMMA, - STATE(1924), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_RBRACE, + [106493] = 6, + ACTIONS(2554), 1, + anon_sym_as, + ACTIONS(2556), 1, + anon_sym_if, + ACTIONS(2558), 1, + anon_sym_and, + ACTIONS(2560), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3239), 4, + ACTIONS(3176), 2, + anon_sym_COMMA, + anon_sym_COLON, + [106514] = 6, + ACTIONS(2554), 1, + anon_sym_as, + ACTIONS(2556), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [108724] = 4, - ACTIONS(3310), 1, + ACTIONS(2558), 1, + anon_sym_and, + ACTIONS(2560), 1, + anon_sym_or, + ACTIONS(3260), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [106534] = 6, + ACTIONS(3262), 1, anon_sym_COMMA, - STATE(1942), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(3264), 1, + anon_sym_if, + ACTIONS(3266), 1, + anon_sym_COLON, + STATE(1978), 1, + aux_sym_case_clause_repeat1, + STATE(2418), 1, + sym_if_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [106554] = 4, + ACTIONS(3268), 1, + anon_sym_DOT, + STATE(1940), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3239), 4, + ACTIONS(3185), 3, anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [108741] = 6, - ACTIONS(2990), 1, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2992), 1, + [106570] = 6, + ACTIONS(2554), 1, + anon_sym_as, + ACTIONS(2556), 1, anon_sym_if, - ACTIONS(2998), 1, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(3000), 1, + ACTIONS(2560), 1, anon_sym_or, + ACTIONS(3270), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3312), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [108762] = 6, - ACTIONS(2990), 1, + [106590] = 6, + ACTIONS(2554), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2556), 1, anon_sym_if, - ACTIONS(2998), 1, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(3000), 1, + ACTIONS(2560), 1, anon_sym_or, + ACTIONS(3272), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2976), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [108783] = 6, - ACTIONS(2668), 1, + [106610] = 6, + ACTIONS(2554), 1, anon_sym_as, - ACTIONS(2670), 1, + ACTIONS(2556), 1, anon_sym_if, - ACTIONS(2672), 1, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(2674), 1, + ACTIONS(2560), 1, anon_sym_or, + ACTIONS(3274), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [106630] = 4, + ACTIONS(3268), 1, + anon_sym_DOT, + STATE(1908), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3277), 2, + ACTIONS(3140), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [108804] = 4, - ACTIONS(3), 1, + anon_sym_as, + [106646] = 6, + ACTIONS(2554), 1, + anon_sym_as, + ACTIONS(2556), 1, + anon_sym_if, + ACTIONS(2558), 1, + anon_sym_and, + ACTIONS(2560), 1, + anon_sym_or, + ACTIONS(3276), 1, + anon_sym_else, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3314), 2, - anon_sym_LBRACE, - sym__not_escape_sequence, - ACTIONS(3316), 4, - sym__string_content, - sym_string_end, - sym__escape_interpolation, - sym_escape_sequence, - [108821] = 6, - ACTIONS(2668), 1, + [106666] = 6, + ACTIONS(2554), 1, anon_sym_as, - ACTIONS(2670), 1, + ACTIONS(2556), 1, anon_sym_if, - ACTIONS(2672), 1, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(2674), 1, + ACTIONS(2560), 1, anon_sym_or, + ACTIONS(3019), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3318), 2, - anon_sym_COMMA, - anon_sym_COLON, - [108842] = 4, - ACTIONS(3320), 1, - anon_sym_COMMA, - STATE(1944), 1, - aux_sym__patterns_repeat1, + [106686] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(892), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [108859] = 6, - ACTIONS(2668), 1, + ACTIONS(3278), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [106698] = 6, + ACTIONS(2554), 1, anon_sym_as, - ACTIONS(2670), 1, + ACTIONS(2556), 1, anon_sym_if, - ACTIONS(2672), 1, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(2674), 1, + ACTIONS(2560), 1, anon_sym_or, + ACTIONS(3280), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [106718] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3322), 2, + ACTIONS(2565), 5, anon_sym_COMMA, anon_sym_COLON, - [108880] = 6, - ACTIONS(2916), 1, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [106730] = 6, + ACTIONS(2554), 1, anon_sym_as, - ACTIONS(2918), 1, + ACTIONS(2556), 1, anon_sym_if, - ACTIONS(2922), 1, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(2924), 1, + ACTIONS(2560), 1, anon_sym_or, + ACTIONS(3282), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3301), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [108901] = 4, - ACTIONS(3324), 1, - anon_sym_COMMA, - STATE(1925), 1, - aux_sym_assert_statement_repeat1, + [106750] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1130), 4, + ACTIONS(2594), 5, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [108918] = 4, - ACTIONS(3328), 1, - anon_sym_DOT, - STATE(1916), 1, - aux_sym_dotted_name_repeat1, + [106762] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3326), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - [108935] = 4, - ACTIONS(3330), 1, + ACTIONS(3124), 5, anon_sym_COMMA, - STATE(1912), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3261), 4, - anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - [108952] = 4, - ACTIONS(3332), 1, - anon_sym_COMMA, - STATE(1912), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_RBRACK, + [106774] = 5, + ACTIONS(3066), 1, + sym_identifier, + STATE(1996), 1, + sym_dotted_name, + STATE(2070), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3253), 4, - anon_sym_RPAREN, + ACTIONS(3284), 2, + sym__newline, + anon_sym_SEMI, + [106792] = 6, + ACTIONS(2554), 1, + anon_sym_as, + ACTIONS(2556), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - [108969] = 4, - ACTIONS(3334), 1, - anon_sym_COMMA, - STATE(1944), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2679), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [108986] = 4, - ACTIONS(3337), 1, - anon_sym_COMMA, - STATE(1943), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(2558), 1, + anon_sym_and, + ACTIONS(2560), 1, + anon_sym_or, + ACTIONS(3156), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3265), 4, - anon_sym_RPAREN, + [106812] = 6, + ACTIONS(2556), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - [109003] = 6, - ACTIONS(3088), 1, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(3090), 1, + ACTIONS(2560), 1, anon_sym_or, - ACTIONS(3119), 1, + ACTIONS(3286), 1, anon_sym_as, - ACTIONS(3121), 1, - anon_sym_if, + ACTIONS(3288), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3322), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [109024] = 6, - ACTIONS(3088), 1, - anon_sym_and, - ACTIONS(3090), 1, - anon_sym_or, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3121), 1, - anon_sym_if, + [106832] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3339), 2, - anon_sym_RPAREN, + ACTIONS(3133), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COMMA, - [109045] = 4, - ACTIONS(2672), 1, - anon_sym_and, - ACTIONS(2674), 1, - anon_sym_or, + anon_sym_as, + [106844] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2459), 4, + ACTIONS(3290), 5, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - [109062] = 6, - ACTIONS(2962), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [106856] = 6, + ACTIONS(2554), 1, anon_sym_as, - ACTIONS(2964), 1, + ACTIONS(2556), 1, anon_sym_if, - ACTIONS(2966), 1, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(2968), 1, + ACTIONS(2560), 1, anon_sym_or, + ACTIONS(3292), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2960), 2, - sym__newline, - anon_sym_SEMI, - [109083] = 6, - ACTIONS(2990), 1, + [106876] = 6, + ACTIONS(2554), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2556), 1, anon_sym_if, - ACTIONS(2998), 1, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(3000), 1, + ACTIONS(2560), 1, anon_sym_or, + ACTIONS(3294), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1316), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [109104] = 6, - ACTIONS(3088), 1, - anon_sym_and, - ACTIONS(3090), 1, - anon_sym_or, - ACTIONS(3119), 1, + [106896] = 6, + ACTIONS(2554), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(2556), 1, anon_sym_if, + ACTIONS(2558), 1, + anon_sym_and, + ACTIONS(2560), 1, + anon_sym_or, + ACTIONS(3296), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3341), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [109125] = 6, - ACTIONS(2916), 1, + [106916] = 6, + ACTIONS(2851), 1, anon_sym_as, - ACTIONS(2918), 1, + ACTIONS(2853), 1, anon_sym_if, - ACTIONS(2922), 1, + ACTIONS(2855), 1, anon_sym_and, - ACTIONS(2924), 1, + ACTIONS(2857), 1, anon_sym_or, + ACTIONS(3298), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3339), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [109146] = 6, - ACTIONS(2668), 1, - anon_sym_as, - ACTIONS(2670), 1, + [106936] = 6, + ACTIONS(2556), 1, anon_sym_if, - ACTIONS(2672), 1, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(2674), 1, + ACTIONS(2560), 1, anon_sym_or, + ACTIONS(3286), 1, + anon_sym_as, + ACTIONS(3300), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3341), 2, - anon_sym_COMMA, - anon_sym_COLON, - [109167] = 6, - ACTIONS(2990), 1, + [106956] = 6, + ACTIONS(2554), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2556), 1, anon_sym_if, - ACTIONS(2998), 1, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(3000), 1, + ACTIONS(2560), 1, anon_sym_or, + ACTIONS(3302), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2960), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [109188] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3343), 2, - anon_sym_LBRACE, - sym__not_escape_sequence, - ACTIONS(3345), 4, - sym__string_content, - sym_string_end, - sym__escape_interpolation, - sym_escape_sequence, - [109205] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3347), 2, - anon_sym_LBRACE, - sym__not_escape_sequence, - ACTIONS(3349), 4, - sym__string_content, - sym_string_end, - sym__escape_interpolation, - sym_escape_sequence, - [109222] = 7, - ACTIONS(2670), 1, + [106976] = 6, + ACTIONS(2554), 1, + anon_sym_as, + ACTIONS(2556), 1, anon_sym_if, - ACTIONS(2672), 1, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(2674), 1, + ACTIONS(2560), 1, anon_sym_or, - ACTIONS(3243), 1, - anon_sym_as, - ACTIONS(3351), 1, - anon_sym_COMMA, - ACTIONS(3353), 1, - anon_sym_COLON, + ACTIONS(3304), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109245] = 4, - ACTIONS(3328), 1, - anon_sym_DOT, - STATE(1941), 1, - aux_sym_dotted_name_repeat1, + [106996] = 6, + ACTIONS(2554), 1, + anon_sym_as, + ACTIONS(2556), 1, + anon_sym_if, + ACTIONS(2558), 1, + anon_sym_and, + ACTIONS(2560), 1, + anon_sym_or, + ACTIONS(3306), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3355), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, + [107016] = 6, + ACTIONS(2554), 1, anon_sym_as, - [109262] = 6, - ACTIONS(3088), 1, + ACTIONS(2556), 1, + anon_sym_if, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(3090), 1, + ACTIONS(2560), 1, anon_sym_or, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3121), 1, - anon_sym_if, + ACTIONS(3308), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2960), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [109283] = 6, - ACTIONS(2916), 1, + [107036] = 6, + ACTIONS(2554), 1, anon_sym_as, - ACTIONS(2918), 1, + ACTIONS(2556), 1, anon_sym_if, - ACTIONS(2922), 1, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(2924), 1, + ACTIONS(2560), 1, anon_sym_or, + ACTIONS(3310), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3290), 2, + [107056] = 5, + ACTIONS(3314), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [109304] = 4, - ACTIONS(3359), 1, - anon_sym_AT, + ACTIONS(3316), 1, + anon_sym_as, + STATE(1982), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1961), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - ACTIONS(3357), 3, - anon_sym_async, - anon_sym_def, - anon_sym_class, - [109321] = 6, - ACTIONS(2990), 1, + ACTIONS(3312), 2, + sym__newline, + anon_sym_SEMI, + [107074] = 6, + ACTIONS(2554), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2556), 1, anon_sym_if, - ACTIONS(2998), 1, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(3000), 1, + ACTIONS(2560), 1, anon_sym_or, + ACTIONS(3318), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3301), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [109342] = 6, - ACTIONS(3088), 1, - anon_sym_and, - ACTIONS(3090), 1, - anon_sym_or, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3121), 1, - anon_sym_if, + [107094] = 5, + ACTIONS(3066), 1, + sym_identifier, + STATE(1996), 1, + sym_dotted_name, + STATE(2070), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2976), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [109363] = 4, - ACTIONS(3), 1, + ACTIONS(3284), 2, + sym__newline, + anon_sym_SEMI, + [107112] = 6, + ACTIONS(3320), 1, + anon_sym_LBRACE, + ACTIONS(3323), 1, + anon_sym_RBRACE, + ACTIONS(3325), 1, + aux_sym_format_specifier_token1, + STATE(1939), 1, + aux_sym_format_specifier_repeat1, + STATE(2149), 1, + sym_interpolation, + ACTIONS(5), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3362), 2, - anon_sym_LBRACE, - sym__not_escape_sequence, - ACTIONS(3364), 4, - sym__string_content, - sym_string_end, - sym__escape_interpolation, - sym_escape_sequence, - [109380] = 4, - ACTIONS(3), 1, + [107132] = 4, + ACTIONS(3328), 1, + anon_sym_DOT, + STATE(1940), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3366), 2, - anon_sym_LBRACE, - sym__not_escape_sequence, - ACTIONS(3368), 4, - sym__string_content, - sym_string_end, - sym__escape_interpolation, - sym_escape_sequence, - [109397] = 4, - ACTIONS(3), 1, + ACTIONS(3133), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + [107148] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3370), 2, - anon_sym_LBRACE, - sym__not_escape_sequence, - ACTIONS(3372), 4, - sym__string_content, - sym_string_end, - sym__escape_interpolation, - sym_escape_sequence, - [109414] = 6, - ACTIONS(2916), 1, + ACTIONS(2596), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [107160] = 6, + ACTIONS(2554), 1, anon_sym_as, - ACTIONS(2918), 1, + ACTIONS(2556), 1, anon_sym_if, - ACTIONS(2922), 1, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(2924), 1, + ACTIONS(2560), 1, anon_sym_or, + ACTIONS(3331), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3020), 2, - anon_sym_COMMA, + [107180] = 6, + ACTIONS(3333), 1, + anon_sym_LBRACE, + ACTIONS(3335), 1, anon_sym_RBRACE, - [109435] = 4, - ACTIONS(3), 1, + ACTIONS(3337), 1, + aux_sym_format_specifier_token1, + STATE(1944), 1, + aux_sym_format_specifier_repeat1, + STATE(2149), 1, + sym_interpolation, + ACTIONS(5), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3374), 2, + [107200] = 6, + ACTIONS(3333), 1, anon_sym_LBRACE, - sym__not_escape_sequence, - ACTIONS(3376), 4, - sym__string_content, - sym_string_end, - sym__escape_interpolation, - sym_escape_sequence, - [109452] = 2, + ACTIONS(3339), 1, + anon_sym_RBRACE, + ACTIONS(3341), 1, + aux_sym_format_specifier_token1, + STATE(1939), 1, + aux_sym_format_specifier_repeat1, + STATE(2149), 1, + sym_interpolation, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [107220] = 6, + ACTIONS(3343), 1, + anon_sym_COLON, + ACTIONS(3345), 1, + anon_sym_EQ, + ACTIONS(3347), 1, + anon_sym_RBRACE, + ACTIONS(3349), 1, + sym_type_conversion, + STATE(2360), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3378), 5, + [107240] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3290), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [109464] = 4, - ACTIONS(3380), 1, - anon_sym_COMMA, - STATE(1970), 1, - aux_sym_assert_statement_repeat1, + anon_sym_RBRACE, + [107252] = 5, + ACTIONS(3066), 1, + sym_identifier, + STATE(1996), 1, + sym_dotted_name, + STATE(2070), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2976), 3, + ACTIONS(3351), 2, sym__newline, anon_sym_SEMI, - anon_sym_from, - [109480] = 2, + [107270] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3383), 5, - anon_sym_RPAREN, + ACTIONS(3124), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [109492] = 6, - ACTIONS(3385), 1, - anon_sym_LBRACE, - ACTIONS(3387), 1, anon_sym_RBRACE, - ACTIONS(3389), 1, - aux_sym_format_specifier_token1, - STATE(1998), 1, - aux_sym_format_specifier_repeat1, - STATE(2151), 1, - sym_interpolation, - ACTIONS(5), 2, + [107282] = 4, + ACTIONS(3353), 1, + anon_sym_COMMA, + STATE(1949), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109512] = 6, - ACTIONS(2668), 1, + ACTIONS(2868), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + [107298] = 6, + ACTIONS(2554), 1, anon_sym_as, - ACTIONS(2670), 1, + ACTIONS(2556), 1, anon_sym_if, - ACTIONS(2672), 1, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(2674), 1, + ACTIONS(2560), 1, anon_sym_or, - ACTIONS(3391), 1, + ACTIONS(3356), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109532] = 6, - ACTIONS(2668), 1, + [107318] = 6, + ACTIONS(3066), 1, + sym_identifier, + ACTIONS(3358), 1, + anon_sym_LPAREN, + STATE(1936), 1, + sym_dotted_name, + STATE(1992), 1, + sym_aliased_import, + STATE(2296), 1, + sym__import_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [107338] = 6, + ACTIONS(3343), 1, + anon_sym_COLON, + ACTIONS(3360), 1, + anon_sym_EQ, + ACTIONS(3362), 1, + anon_sym_RBRACE, + ACTIONS(3364), 1, + sym_type_conversion, + STATE(2389), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [107358] = 6, + ACTIONS(2554), 1, anon_sym_as, - ACTIONS(2670), 1, + ACTIONS(2556), 1, anon_sym_if, - ACTIONS(2672), 1, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(2674), 1, + ACTIONS(2560), 1, anon_sym_or, - ACTIONS(3393), 1, + ACTIONS(3366), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109552] = 2, + [107378] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2920), 5, + ACTIONS(3278), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [109564] = 6, - ACTIONS(2668), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [107390] = 6, + ACTIONS(2554), 1, anon_sym_as, - ACTIONS(2670), 1, + ACTIONS(2556), 1, anon_sym_if, - ACTIONS(2672), 1, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(2674), 1, + ACTIONS(2560), 1, anon_sym_or, - ACTIONS(3395), 1, - anon_sym_COLON, + ACTIONS(3368), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109584] = 6, - ACTIONS(2668), 1, + [107410] = 6, + ACTIONS(2554), 1, anon_sym_as, - ACTIONS(2670), 1, + ACTIONS(2556), 1, anon_sym_if, - ACTIONS(2672), 1, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(2674), 1, + ACTIONS(2560), 1, anon_sym_or, - ACTIONS(3397), 1, + ACTIONS(3370), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109604] = 6, - ACTIONS(2668), 1, + [107430] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2802), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [107442] = 6, + ACTIONS(2554), 1, anon_sym_as, - ACTIONS(2670), 1, + ACTIONS(2556), 1, anon_sym_if, - ACTIONS(2672), 1, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(2674), 1, + ACTIONS(2560), 1, anon_sym_or, - ACTIONS(3399), 1, - anon_sym_else, + ACTIONS(3372), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109624] = 6, - ACTIONS(2668), 1, + [107462] = 6, + ACTIONS(2554), 1, anon_sym_as, - ACTIONS(2670), 1, + ACTIONS(2556), 1, anon_sym_if, - ACTIONS(2672), 1, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(2674), 1, + ACTIONS(2560), 1, anon_sym_or, - ACTIONS(3401), 1, + ACTIONS(3374), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109644] = 2, + [107482] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1403), 5, + ACTIONS(1375), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [109656] = 6, - ACTIONS(2668), 1, + [107494] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3278), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [107506] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3124), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [107518] = 6, + ACTIONS(2554), 1, anon_sym_as, - ACTIONS(2670), 1, + ACTIONS(2556), 1, anon_sym_if, - ACTIONS(2672), 1, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(2674), 1, + ACTIONS(2560), 1, anon_sym_or, - ACTIONS(3403), 1, + ACTIONS(3376), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109676] = 4, - ACTIONS(3405), 1, - anon_sym_DOT, - STATE(1993), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3355), 3, - anon_sym_RPAREN, + [107538] = 4, + ACTIONS(3378), 1, anon_sym_COMMA, - anon_sym_as, - [109692] = 6, - ACTIONS(3385), 1, - anon_sym_LBRACE, - ACTIONS(3407), 1, - anon_sym_RBRACE, - ACTIONS(3409), 1, - aux_sym_format_specifier_token1, - STATE(1972), 1, - aux_sym_format_specifier_repeat1, - STATE(2151), 1, - sym_interpolation, - ACTIONS(5), 2, + STATE(1949), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109712] = 6, - ACTIONS(2668), 1, - anon_sym_as, - ACTIONS(2670), 1, - anon_sym_if, - ACTIONS(2672), 1, + ACTIONS(1080), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + [107554] = 4, + ACTIONS(2558), 1, anon_sym_and, - ACTIONS(2674), 1, + ACTIONS(2560), 1, anon_sym_or, - ACTIONS(3411), 1, - anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109732] = 6, - ACTIONS(2668), 1, + ACTIONS(2300), 3, anon_sym_as, - ACTIONS(2670), 1, anon_sym_if, - ACTIONS(2672), 1, - anon_sym_and, - ACTIONS(2674), 1, - anon_sym_or, - ACTIONS(3413), 1, anon_sym_COLON, + [107570] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109752] = 6, - ACTIONS(3415), 1, + ACTIONS(3290), 5, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3417), 1, anon_sym_if, - ACTIONS(3419), 1, - anon_sym_COLON, - STATE(2060), 1, - aux_sym_case_clause_repeat1, - STATE(2455), 1, - sym_if_clause, + anon_sym_async, + anon_sym_for, + [107582] = 5, + ACTIONS(3380), 1, + anon_sym_case, + ACTIONS(3382), 1, + sym__dedent, + STATE(1990), 1, + aux_sym__match_block_repeat1, + STATE(2300), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109772] = 2, + [107599] = 4, + ACTIONS(3386), 1, + anon_sym_COMMA, + STATE(1973), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3383), 5, + ACTIONS(3384), 2, + sym__newline, + anon_sym_SEMI, + [107614] = 4, + ACTIONS(3390), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [109784] = 6, - ACTIONS(2668), 1, - anon_sym_as, - ACTIONS(2670), 1, - anon_sym_if, - ACTIONS(2672), 1, - anon_sym_and, - ACTIONS(2674), 1, - anon_sym_or, - ACTIONS(3421), 1, - anon_sym_COLON, + STATE(1991), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109804] = 6, - ACTIONS(3423), 1, - anon_sym_COLON, - ACTIONS(3425), 1, - anon_sym_EQ, - ACTIONS(3427), 1, - anon_sym_RBRACE, - ACTIONS(3429), 1, - sym_type_conversion, - STATE(2407), 1, - sym_format_specifier, + ACTIONS(3388), 2, + sym__newline, + anon_sym_SEMI, + [107629] = 4, + ACTIONS(3394), 1, + anon_sym_COMMA, + STATE(1977), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109824] = 5, - ACTIONS(3433), 1, + ACTIONS(3392), 2, + sym__newline, + anon_sym_SEMI, + [107644] = 4, + ACTIONS(3394), 1, anon_sym_COMMA, - ACTIONS(3435), 1, - anon_sym_as, - STATE(2032), 1, - aux_sym__import_list_repeat1, + STATE(1977), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3431), 2, + ACTIONS(3396), 2, sym__newline, anon_sym_SEMI, - [109842] = 6, - ACTIONS(2668), 1, - anon_sym_as, - ACTIONS(2670), 1, - anon_sym_if, - ACTIONS(2672), 1, - anon_sym_and, - ACTIONS(2674), 1, - anon_sym_or, - ACTIONS(3437), 1, - anon_sym_else, + [107659] = 4, + ACTIONS(3400), 1, + anon_sym_DOT, + STATE(1981), 1, + aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109862] = 2, + ACTIONS(3398), 2, + anon_sym_import, + sym_identifier, + [107674] = 4, + ACTIONS(3404), 1, + anon_sym_COMMA, + STATE(1991), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3267), 5, + ACTIONS(3402), 2, + sym__newline, + anon_sym_SEMI, + [107689] = 5, + ACTIONS(3284), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [109874] = 4, - ACTIONS(3405), 1, - anon_sym_DOT, - STATE(2014), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(3406), 1, + sym_identifier, + STATE(2209), 1, + sym_dotted_name, + STATE(2222), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3326), 3, + [107706] = 5, + ACTIONS(3284), 1, anon_sym_RPAREN, + ACTIONS(3406), 1, + sym_identifier, + STATE(2209), 1, + sym_dotted_name, + STATE(2222), 1, + sym_aliased_import, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [107723] = 5, + ACTIONS(3380), 1, + anon_sym_case, + ACTIONS(3408), 1, + sym__dedent, + STATE(1979), 1, + aux_sym__match_block_repeat1, + STATE(2300), 1, + sym_case_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [107740] = 4, + ACTIONS(3412), 1, anon_sym_COMMA, - anon_sym_as, - [109890] = 6, - ACTIONS(2668), 1, - anon_sym_as, - ACTIONS(2670), 1, - anon_sym_if, - ACTIONS(2672), 1, - anon_sym_and, - ACTIONS(2674), 1, - anon_sym_or, - ACTIONS(3439), 1, - anon_sym_else, + STATE(1977), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109910] = 6, - ACTIONS(2668), 1, - anon_sym_as, - ACTIONS(2670), 1, - anon_sym_if, - ACTIONS(2672), 1, - anon_sym_and, - ACTIONS(2674), 1, - anon_sym_or, - ACTIONS(3441), 1, - anon_sym_else, + ACTIONS(3410), 2, + sym__newline, + anon_sym_SEMI, + [107755] = 4, + ACTIONS(3415), 1, + anon_sym_COMMA, + STATE(1978), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109930] = 6, - ACTIONS(2668), 1, - anon_sym_as, - ACTIONS(2670), 1, + ACTIONS(3418), 2, anon_sym_if, - ACTIONS(2672), 1, - anon_sym_and, - ACTIONS(2674), 1, - anon_sym_or, - ACTIONS(3443), 1, - anon_sym_else, + anon_sym_COLON, + [107770] = 5, + ACTIONS(3380), 1, + anon_sym_case, + ACTIONS(3420), 1, + sym__dedent, + STATE(1984), 1, + aux_sym__match_block_repeat1, + STATE(2300), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109950] = 6, - ACTIONS(2670), 1, - anon_sym_if, - ACTIONS(2672), 1, - anon_sym_and, - ACTIONS(2674), 1, - anon_sym_or, - ACTIONS(3445), 1, - anon_sym_as, - ACTIONS(3447), 1, + [107787] = 4, + ACTIONS(3424), 1, anon_sym_COLON, + ACTIONS(3426), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109970] = 6, - ACTIONS(3449), 1, - anon_sym_LBRACE, - ACTIONS(3452), 1, - anon_sym_RBRACE, - ACTIONS(3454), 1, - aux_sym_format_specifier_token1, - STATE(1998), 1, - aux_sym_format_specifier_repeat1, - STATE(2151), 1, - sym_interpolation, - ACTIONS(5), 2, + ACTIONS(3422), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [107802] = 4, + ACTIONS(3430), 1, + anon_sym_DOT, + STATE(1981), 1, + aux_sym_import_prefix_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109990] = 6, - ACTIONS(2668), 1, - anon_sym_as, - ACTIONS(2670), 1, - anon_sym_if, - ACTIONS(2672), 1, - anon_sym_and, - ACTIONS(2674), 1, - anon_sym_or, - ACTIONS(3457), 1, - anon_sym_else, + ACTIONS(3428), 2, + anon_sym_import, + sym_identifier, + [107817] = 4, + ACTIONS(3435), 1, + anon_sym_COMMA, + STATE(2003), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110010] = 6, - ACTIONS(2668), 1, - anon_sym_as, - ACTIONS(2670), 1, - anon_sym_if, - ACTIONS(2672), 1, - anon_sym_and, - ACTIONS(2674), 1, - anon_sym_or, - ACTIONS(3459), 1, - anon_sym_COLON, + ACTIONS(3433), 2, + sym__newline, + anon_sym_SEMI, + [107832] = 4, + ACTIONS(3437), 1, + anon_sym_COMMA, + STATE(2003), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110030] = 2, + ACTIONS(3433), 2, + sym__newline, + anon_sym_SEMI, + [107847] = 5, + ACTIONS(3439), 1, + anon_sym_case, + ACTIONS(3442), 1, + sym__dedent, + STATE(1984), 1, + aux_sym__match_block_repeat1, + STATE(2300), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2708), 5, - anon_sym_COMMA, + [107864] = 5, + ACTIONS(3343), 1, anon_sym_COLON, - anon_sym_EQ, + ACTIONS(3444), 1, anon_sym_RBRACE, + ACTIONS(3446), 1, sym_type_conversion, - [110042] = 2, + STATE(2444), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3378), 5, - anon_sym_RPAREN, + [107881] = 4, + ACTIONS(2964), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [110054] = 6, - ACTIONS(2668), 1, - anon_sym_as, - ACTIONS(2670), 1, - anon_sym_if, - ACTIONS(2672), 1, - anon_sym_and, - ACTIONS(2674), 1, - anon_sym_or, - ACTIONS(3461), 1, - anon_sym_else, + STATE(1949), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110074] = 2, + ACTIONS(3448), 2, + sym__newline, + anon_sym_SEMI, + [107896] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2679), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [110086] = 2, + ACTIONS(3450), 4, + anon_sym_async, + anon_sym_def, + anon_sym_class, + anon_sym_AT, + [107907] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2710), 5, + ACTIONS(3133), 4, + anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [110098] = 6, - ACTIONS(2668), 1, anon_sym_as, - ACTIONS(2670), 1, - anon_sym_if, - ACTIONS(2672), 1, - anon_sym_and, - ACTIONS(2674), 1, - anon_sym_or, - ACTIONS(3463), 1, - anon_sym_else, + [107918] = 4, + ACTIONS(3452), 1, + anon_sym_COMMA, + STATE(1949), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110118] = 6, - ACTIONS(2668), 1, - anon_sym_as, - ACTIONS(2670), 1, - anon_sym_if, - ACTIONS(2672), 1, - anon_sym_and, - ACTIONS(2674), 1, - anon_sym_or, - ACTIONS(3465), 1, - anon_sym_COLON, + ACTIONS(1276), 2, + sym__newline, + anon_sym_SEMI, + [107933] = 5, + ACTIONS(3380), 1, + anon_sym_case, + ACTIONS(3454), 1, + sym__dedent, + STATE(1984), 1, + aux_sym__match_block_repeat1, + STATE(2300), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110138] = 2, + [107950] = 4, + ACTIONS(3458), 1, + anon_sym_COMMA, + STATE(1991), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3378), 5, + ACTIONS(3456), 2, + sym__newline, + anon_sym_SEMI, + [107965] = 4, + ACTIONS(3314), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [110150] = 6, - ACTIONS(2668), 1, - anon_sym_as, - ACTIONS(2670), 1, - anon_sym_if, - ACTIONS(2672), 1, - anon_sym_and, - ACTIONS(2674), 1, - anon_sym_or, - ACTIONS(3467), 1, - anon_sym_else, + STATE(1983), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110170] = 6, - ACTIONS(2668), 1, - anon_sym_as, - ACTIONS(2670), 1, - anon_sym_if, - ACTIONS(2672), 1, - anon_sym_and, - ACTIONS(2674), 1, - anon_sym_or, - ACTIONS(3469), 1, - anon_sym_else, + ACTIONS(3312), 2, + sym__newline, + anon_sym_SEMI, + [107980] = 5, + ACTIONS(3406), 1, + sym_identifier, + STATE(1998), 1, + sym_dotted_name, + STATE(2069), 1, + sym_aliased_import, + STATE(2342), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110190] = 6, - ACTIONS(2668), 1, - anon_sym_as, - ACTIONS(2670), 1, - anon_sym_if, - ACTIONS(2672), 1, - anon_sym_and, - ACTIONS(2674), 1, - anon_sym_or, - ACTIONS(3471), 1, - anon_sym_COLON, + [107997] = 5, + ACTIONS(3066), 1, + sym_identifier, + STATE(1936), 1, + sym_dotted_name, + STATE(1992), 1, + sym_aliased_import, + STATE(2241), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110210] = 6, - ACTIONS(2668), 1, - anon_sym_as, - ACTIONS(2670), 1, - anon_sym_if, - ACTIONS(2672), 1, - anon_sym_and, - ACTIONS(2674), 1, - anon_sym_or, - ACTIONS(3473), 1, - anon_sym_COLON, + [108014] = 5, + ACTIONS(3406), 1, + sym_identifier, + STATE(1998), 1, + sym_dotted_name, + STATE(2069), 1, + sym_aliased_import, + STATE(2339), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110230] = 4, - ACTIONS(3475), 1, - anon_sym_COMMA, - STATE(1970), 1, - aux_sym_assert_statement_repeat1, + [108031] = 3, + ACTIONS(3316), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1130), 3, + ACTIONS(3461), 3, sym__newline, anon_sym_SEMI, - anon_sym_from, - [110246] = 4, - ACTIONS(3477), 1, - anon_sym_DOT, - STATE(2014), 1, - aux_sym_dotted_name_repeat1, + anon_sym_COMMA, + [108044] = 4, + ACTIONS(3394), 1, + anon_sym_COMMA, + STATE(1971), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3279), 3, + ACTIONS(3463), 2, + sym__newline, + anon_sym_SEMI, + [108059] = 5, + ACTIONS(3312), 1, anon_sym_RPAREN, + ACTIONS(3465), 1, anon_sym_COMMA, + ACTIONS(3467), 1, anon_sym_as, - [110262] = 6, - ACTIONS(3423), 1, + STATE(2076), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [108076] = 5, + ACTIONS(3343), 1, anon_sym_COLON, - ACTIONS(3480), 1, - anon_sym_EQ, - ACTIONS(3482), 1, + ACTIONS(3469), 1, anon_sym_RBRACE, - ACTIONS(3484), 1, + ACTIONS(3471), 1, sym_type_conversion, - STATE(2499), 1, + STATE(2349), 1, sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110282] = 2, + [108093] = 4, + ACTIONS(3394), 1, + anon_sym_COMMA, + STATE(1970), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3279), 5, + ACTIONS(3473), 2, sym__newline, anon_sym_SEMI, - anon_sym_DOT, + [108108] = 5, + ACTIONS(3351), 1, + anon_sym_RPAREN, + ACTIONS(3406), 1, + sym_identifier, + STATE(2209), 1, + sym_dotted_name, + STATE(2222), 1, + sym_aliased_import, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [108125] = 4, + ACTIONS(2964), 1, anon_sym_COMMA, - anon_sym_as, - [110294] = 2, + STATE(1949), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3267), 5, + ACTIONS(3475), 2, + sym__newline, + anon_sym_SEMI, + [108140] = 4, + ACTIONS(3479), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [110306] = 6, - ACTIONS(2668), 1, - anon_sym_as, - ACTIONS(2670), 1, - anon_sym_if, - ACTIONS(2672), 1, - anon_sym_and, - ACTIONS(2674), 1, - anon_sym_or, - ACTIONS(3486), 1, - anon_sym_COLON, + STATE(2003), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110326] = 2, + ACTIONS(3477), 2, + sym__newline, + anon_sym_SEMI, + [108155] = 3, + ACTIONS(3482), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3383), 5, + ACTIONS(3422), 2, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [110338] = 4, - ACTIONS(2672), 1, - anon_sym_and, - ACTIONS(2674), 1, - anon_sym_or, + anon_sym_COLON, + [108167] = 4, + ACTIONS(3484), 1, + sym__newline, + ACTIONS(3486), 1, + sym__indent, + STATE(812), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2459), 3, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [110354] = 6, - ACTIONS(3417), 1, - anon_sym_if, + [108181] = 4, ACTIONS(3488), 1, anon_sym_COMMA, ACTIONS(3490), 1, - anon_sym_COLON, - STATE(2060), 1, - aux_sym_case_clause_repeat1, - STATE(2374), 1, - sym_if_clause, + anon_sym_in, + STATE(2113), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110374] = 5, - ACTIONS(3188), 1, - sym_identifier, - STATE(2046), 1, - sym_dotted_name, - STATE(2248), 1, - sym_aliased_import, + [108195] = 4, + ACTIONS(3488), 1, + anon_sym_COMMA, + ACTIONS(3492), 1, + anon_sym_in, + STATE(2113), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3492), 2, - sym__newline, - anon_sym_SEMI, - [110392] = 6, - ACTIONS(3188), 1, - sym_identifier, + [108209] = 4, + ACTIONS(1282), 1, + anon_sym_RPAREN, ACTIONS(3494), 1, - anon_sym_LPAREN, - STATE(1990), 1, - sym_dotted_name, - STATE(2054), 1, - sym_aliased_import, - STATE(2300), 1, - sym__import_list, + anon_sym_COMMA, + STATE(2154), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110412] = 6, - ACTIONS(2670), 1, - anon_sym_if, - ACTIONS(2672), 1, - anon_sym_and, - ACTIONS(2674), 1, - anon_sym_or, - ACTIONS(3445), 1, - anon_sym_as, - ACTIONS(3496), 1, + [108223] = 4, + ACTIONS(2868), 1, anon_sym_COLON, + ACTIONS(3496), 1, + anon_sym_COMMA, + STATE(2009), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110432] = 2, + [108237] = 3, + ACTIONS(1508), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3267), 5, + ACTIONS(1506), 2, + anon_sym_except_STAR, + anon_sym_finally, + [108249] = 4, + ACTIONS(2741), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [110444] = 5, - ACTIONS(3188), 1, - sym_identifier, - STATE(2046), 1, - sym_dotted_name, - STATE(2248), 1, - sym_aliased_import, + ACTIONS(2771), 1, + anon_sym_RPAREN, + STATE(2194), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3492), 2, - sym__newline, + [108263] = 4, + ACTIONS(3499), 1, anon_sym_SEMI, - [110462] = 6, - ACTIONS(2668), 1, - anon_sym_as, - ACTIONS(2670), 1, - anon_sym_if, - ACTIONS(2672), 1, - anon_sym_and, - ACTIONS(2674), 1, - anon_sym_or, - ACTIONS(3272), 1, - anon_sym_else, + ACTIONS(3501), 1, + sym__newline, + STATE(2122), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110482] = 6, - ACTIONS(2668), 1, - anon_sym_as, - ACTIONS(2670), 1, - anon_sym_if, - ACTIONS(2672), 1, - anon_sym_and, - ACTIONS(2674), 1, - anon_sym_or, - ACTIONS(3098), 1, - anon_sym_COLON, + [108277] = 4, + ACTIONS(2868), 1, + anon_sym_RBRACK, + ACTIONS(3503), 1, + anon_sym_COMMA, + STATE(2013), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110502] = 6, - ACTIONS(2962), 1, - anon_sym_as, - ACTIONS(2964), 1, - anon_sym_if, - ACTIONS(2966), 1, - anon_sym_and, - ACTIONS(2968), 1, - anon_sym_or, - ACTIONS(3498), 1, - sym__newline, + [108291] = 4, + ACTIONS(1162), 1, + anon_sym_RBRACE, + ACTIONS(3506), 1, + anon_sym_COMMA, + STATE(2170), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110522] = 5, - ACTIONS(3188), 1, - sym_identifier, - STATE(2046), 1, - sym_dotted_name, - STATE(2248), 1, - sym_aliased_import, + [108305] = 4, + ACTIONS(1080), 1, + anon_sym_RBRACK, + ACTIONS(3508), 1, + anon_sym_COMMA, + STATE(2013), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3500), 2, - sym__newline, - anon_sym_SEMI, - [110540] = 2, + [108319] = 4, + ACTIONS(3079), 1, + sym_identifier, + ACTIONS(3510), 1, + anon_sym_import, + STATE(2437), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3279), 4, - anon_sym_DOT, + [108333] = 4, + ACTIONS(2695), 1, anon_sym_RPAREN, + ACTIONS(2741), 1, anon_sym_COMMA, - anon_sym_as, - [110551] = 4, - ACTIONS(3504), 1, - anon_sym_COMMA, - STATE(2037), 1, - aux_sym__import_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3502), 2, - sym__newline, - anon_sym_SEMI, - [110566] = 4, - ACTIONS(3508), 1, - anon_sym_DOT, - STATE(2033), 1, - aux_sym_import_prefix_repeat1, + STATE(2194), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3506), 2, - anon_sym_import, - sym_identifier, - [110581] = 4, - ACTIONS(3513), 1, - anon_sym_COMMA, - STATE(2040), 1, - aux_sym_global_statement_repeat1, + [108347] = 3, + ACTIONS(1514), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3511), 2, + ACTIONS(1516), 2, + anon_sym_except_STAR, + anon_sym_finally, + [108359] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2200), 3, sym__newline, anon_sym_SEMI, - [110596] = 4, - ACTIONS(3513), 1, + anon_sym_in, + [108369] = 4, + ACTIONS(3049), 1, anon_sym_COMMA, - STATE(2041), 1, - aux_sym_global_statement_repeat1, + ACTIONS(3051), 1, + anon_sym_RBRACE, + STATE(2033), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3515), 2, - sym__newline, - anon_sym_SEMI, - [110611] = 4, - ACTIONS(3519), 1, + [108383] = 4, + ACTIONS(3512), 1, + anon_sym_RPAREN, + ACTIONS(3514), 1, anon_sym_COMMA, - STATE(2036), 1, - aux_sym_print_statement_repeat1, + STATE(2200), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3517), 2, - sym__newline, - anon_sym_SEMI, - [110626] = 4, - ACTIONS(3524), 1, + [108397] = 4, + ACTIONS(1078), 1, + anon_sym_RBRACE, + ACTIONS(3516), 1, anon_sym_COMMA, - STATE(2037), 1, - aux_sym__import_list_repeat1, + STATE(2059), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3522), 2, + [108411] = 4, + ACTIONS(569), 1, sym__newline, + ACTIONS(3518), 1, anon_sym_SEMI, - [110641] = 2, + STATE(2032), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3527), 4, - anon_sym_async, - anon_sym_def, - anon_sym_class, - anon_sym_AT, - [110652] = 4, - ACTIONS(3042), 1, - anon_sym_COMMA, - STATE(1970), 1, - aux_sym_assert_statement_repeat1, + [108425] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3529), 2, + ACTIONS(2196), 3, sym__newline, anon_sym_SEMI, - [110667] = 4, - ACTIONS(3513), 1, + anon_sym_in, + [108435] = 4, + ACTIONS(2741), 1, anon_sym_COMMA, - STATE(2052), 1, - aux_sym_global_statement_repeat1, + ACTIONS(2747), 1, + anon_sym_RPAREN, + STATE(2194), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3531), 2, - sym__newline, - anon_sym_SEMI, - [110682] = 4, - ACTIONS(3513), 1, + [108449] = 4, + ACTIONS(1080), 1, + anon_sym_COLON, + ACTIONS(3520), 1, anon_sym_COMMA, - STATE(2052), 1, - aux_sym_global_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3533), 2, - sym__newline, - anon_sym_SEMI, - [110697] = 5, - ACTIONS(3500), 1, - anon_sym_RPAREN, - ACTIONS(3535), 1, - sym_identifier, - STATE(2206), 1, - sym_dotted_name, - STATE(2316), 1, - sym_aliased_import, + STATE(2009), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110714] = 4, - ACTIONS(3537), 1, + [108463] = 4, + ACTIONS(3488), 1, anon_sym_COMMA, - STATE(2037), 1, - aux_sym__import_list_repeat1, + ACTIONS(3522), 1, + anon_sym_in, + STATE(2113), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3502), 2, - sym__newline, - anon_sym_SEMI, - [110729] = 5, - ACTIONS(3492), 1, + [108477] = 4, + ACTIONS(2741), 1, + anon_sym_COMMA, + ACTIONS(3524), 1, anon_sym_RPAREN, - ACTIONS(3535), 1, - sym_identifier, - STATE(2206), 1, - sym_dotted_name, - STATE(2316), 1, - sym_aliased_import, + STATE(2194), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110746] = 5, - ACTIONS(3535), 1, - sym_identifier, - STATE(2056), 1, - sym_dotted_name, - STATE(2264), 1, - sym_aliased_import, - STATE(2444), 1, - sym__import_list, + [108491] = 4, + ACTIONS(2741), 1, + anon_sym_COMMA, + ACTIONS(3526), 1, + anon_sym_RPAREN, + STATE(2194), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110763] = 3, - ACTIONS(3435), 1, - anon_sym_as, + [108505] = 4, + ACTIONS(3488), 1, + anon_sym_COMMA, + ACTIONS(3528), 1, + anon_sym_in, + STATE(2113), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3539), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [110776] = 4, - ACTIONS(3042), 1, + [108519] = 4, + ACTIONS(2868), 1, + anon_sym_RPAREN, + ACTIONS(3530), 1, anon_sym_COMMA, - STATE(1970), 1, + STATE(2031), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3541), 2, - sym__newline, + [108533] = 4, + ACTIONS(3533), 1, anon_sym_SEMI, - [110791] = 5, - ACTIONS(3535), 1, - sym_identifier, - STATE(2056), 1, - sym_dotted_name, - STATE(2264), 1, - sym_aliased_import, - STATE(2446), 1, - sym__import_list, + ACTIONS(3536), 1, + sym__newline, + STATE(2032), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110808] = 4, - ACTIONS(3545), 1, + [108547] = 4, + ACTIONS(1160), 1, + anon_sym_RBRACE, + ACTIONS(3538), 1, anon_sym_COMMA, - STATE(2036), 1, - aux_sym_print_statement_repeat1, + STATE(2170), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3543), 2, - sym__newline, - anon_sym_SEMI, - [110823] = 4, - ACTIONS(3547), 1, - anon_sym_COMMA, - STATE(1970), 1, - aux_sym_assert_statement_repeat1, + [108561] = 3, + ACTIONS(2847), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1288), 2, + ACTIONS(2845), 2, sym__newline, anon_sym_SEMI, - [110838] = 4, - ACTIONS(3551), 1, + [108573] = 4, + ACTIONS(2565), 1, + anon_sym_RBRACK, + ACTIONS(3540), 1, anon_sym_COMMA, - STATE(2036), 1, - aux_sym_print_statement_repeat1, + STATE(2035), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3549), 2, - sym__newline, - anon_sym_SEMI, - [110853] = 4, - ACTIONS(3555), 1, + [108587] = 4, + ACTIONS(3543), 1, anon_sym_COMMA, - STATE(2052), 1, - aux_sym_global_statement_repeat1, + ACTIONS(3546), 1, + anon_sym_RBRACK, + STATE(2036), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3553), 2, - sym__newline, - anon_sym_SEMI, - [110868] = 4, - ACTIONS(3560), 1, - anon_sym_COMMA, - STATE(2051), 1, - aux_sym_print_statement_repeat1, + [108601] = 4, + ACTIONS(3185), 1, + anon_sym_import, + ACTIONS(3548), 1, + anon_sym_DOT, + STATE(2207), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3558), 2, - sym__newline, - anon_sym_SEMI, - [110883] = 4, - ACTIONS(3433), 1, + [108615] = 4, + ACTIONS(2749), 1, + anon_sym_RPAREN, + ACTIONS(2751), 1, anon_sym_COMMA, - STATE(2043), 1, - aux_sym__import_list_repeat1, + STATE(2045), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3431), 2, - sym__newline, - anon_sym_SEMI, - [110898] = 4, - ACTIONS(3564), 1, - anon_sym_DOT, - STATE(2033), 1, - aux_sym_import_prefix_repeat1, + [108629] = 4, + ACTIONS(3550), 1, + anon_sym_RPAREN, + ACTIONS(3552), 1, + anon_sym_COMMA, + STATE(2046), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3562), 2, - anon_sym_import, - sym_identifier, - [110913] = 5, - ACTIONS(3431), 1, + [108643] = 4, + ACTIONS(3433), 1, anon_sym_RPAREN, - ACTIONS(3566), 1, + ACTIONS(3554), 1, anon_sym_COMMA, - ACTIONS(3568), 1, - anon_sym_as, - STATE(2073), 1, + STATE(2206), 1, aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110930] = 5, - ACTIONS(3188), 1, - sym_identifier, - STATE(1990), 1, - sym_dotted_name, - STATE(2054), 1, - sym_aliased_import, - STATE(2297), 1, - sym__import_list, + [108657] = 4, + ACTIONS(2933), 1, + anon_sym_COMMA, + ACTIONS(2935), 1, + anon_sym_RBRACK, + STATE(2048), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110947] = 5, - ACTIONS(3423), 1, + [108671] = 4, + ACTIONS(3556), 1, + anon_sym_COMMA, + ACTIONS(3559), 1, anon_sym_COLON, - ACTIONS(3570), 1, - anon_sym_RBRACE, - ACTIONS(3572), 1, - sym_type_conversion, - STATE(2435), 1, - sym_format_specifier, + STATE(2042), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110964] = 4, - ACTIONS(3576), 1, - anon_sym_COLON, - ACTIONS(3578), 1, - anon_sym_EQ, + [108685] = 4, + ACTIONS(3561), 1, + sym__newline, + ACTIONS(3563), 1, + sym__indent, + STATE(752), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3574), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [110979] = 4, - ACTIONS(3580), 1, - anon_sym_COMMA, - STATE(2060), 1, - aux_sym_case_clause_repeat1, + [108699] = 4, + ACTIONS(3561), 1, + sym__newline, + ACTIONS(3563), 1, + sym__indent, + STATE(804), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3583), 2, - anon_sym_if, - anon_sym_COLON, - [110994] = 5, - ACTIONS(3492), 1, + [108713] = 4, + ACTIONS(1064), 1, anon_sym_RPAREN, - ACTIONS(3535), 1, - sym_identifier, - STATE(2206), 1, - sym_dotted_name, - STATE(2316), 1, - sym_aliased_import, + ACTIONS(3565), 1, + anon_sym_COMMA, + STATE(2049), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111011] = 5, - ACTIONS(3423), 1, - anon_sym_COLON, - ACTIONS(3585), 1, - anon_sym_RBRACE, - ACTIONS(3587), 1, - sym_type_conversion, - STATE(2383), 1, - sym_format_specifier, + [108727] = 4, + ACTIONS(1054), 1, + anon_sym_RPAREN, + ACTIONS(3567), 1, + anon_sym_COMMA, + STATE(2049), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111028] = 4, - ACTIONS(3589), 1, + [108741] = 4, + ACTIONS(3569), 1, anon_sym_COMMA, - ACTIONS(3591), 1, - anon_sym_in, - STATE(2104), 1, - aux_sym__patterns_repeat1, + ACTIONS(3571), 1, + anon_sym_RBRACK, + STATE(2036), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111042] = 4, - ACTIONS(3593), 1, + [108755] = 4, + ACTIONS(3573), 1, anon_sym_COMMA, - ACTIONS(3595), 1, - anon_sym_COLON, - STATE(2170), 1, - aux_sym__parameters_repeat1, + ACTIONS(3575), 1, + anon_sym_RBRACK, + STATE(2036), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111056] = 4, - ACTIONS(2811), 1, + [108769] = 4, + ACTIONS(3254), 1, anon_sym_RPAREN, - ACTIONS(2813), 1, + ACTIONS(3577), 1, anon_sym_COMMA, - STATE(2085), 1, + STATE(2049), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111070] = 4, - ACTIONS(3326), 1, - anon_sym_import, - ACTIONS(3597), 1, - anon_sym_DOT, - STATE(2215), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111084] = 4, - ACTIONS(3589), 1, + [108783] = 4, + ACTIONS(3488), 1, anon_sym_COMMA, - ACTIONS(3599), 1, + ACTIONS(3580), 1, anon_sym_in, - STATE(2104), 1, + STATE(2113), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111098] = 4, - ACTIONS(3589), 1, + [108797] = 4, + ACTIONS(1080), 1, + anon_sym_RPAREN, + ACTIONS(3582), 1, anon_sym_COMMA, - ACTIONS(3601), 1, - anon_sym_in, - STATE(2104), 1, - aux_sym__patterns_repeat1, + STATE(2031), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111112] = 4, - ACTIONS(3589), 1, + [108811] = 4, + ACTIONS(3488), 1, anon_sym_COMMA, - ACTIONS(3603), 1, + ACTIONS(3584), 1, anon_sym_in, - STATE(2104), 1, + STATE(2113), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111126] = 4, - ACTIONS(3605), 1, - anon_sym_COMMA, - ACTIONS(3607), 1, - anon_sym_COLON, - STATE(2217), 1, - aux_sym_match_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111140] = 4, - ACTIONS(3609), 1, + [108825] = 4, + ACTIONS(3126), 1, anon_sym_RPAREN, - ACTIONS(3611), 1, + ACTIONS(3586), 1, anon_sym_COMMA, - STATE(2089), 1, - aux_sym_argument_list_repeat1, + STATE(2053), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111154] = 4, - ACTIONS(3502), 1, - anon_sym_RPAREN, - ACTIONS(3613), 1, + [108839] = 4, + ACTIONS(3488), 1, anon_sym_COMMA, - STATE(2198), 1, - aux_sym__import_list_repeat1, + ACTIONS(3589), 1, + anon_sym_in, + STATE(2113), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111168] = 4, - ACTIONS(3502), 1, - anon_sym_RPAREN, - ACTIONS(3615), 1, + [108853] = 4, + ACTIONS(3488), 1, anon_sym_COMMA, - STATE(2198), 1, - aux_sym__import_list_repeat1, + ACTIONS(3591), 1, + anon_sym_in, + STATE(2113), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111182] = 4, - ACTIONS(3617), 1, - anon_sym_RPAREN, - ACTIONS(3619), 1, - anon_sym_COMMA, - STATE(2074), 1, - aux_sym_with_clause_repeat1, + [108867] = 4, + ACTIONS(3140), 1, + anon_sym_import, + ACTIONS(3548), 1, + anon_sym_DOT, + STATE(2037), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111196] = 4, - ACTIONS(3054), 1, - anon_sym_COMMA, - ACTIONS(3056), 1, - anon_sym_RBRACK, - STATE(2105), 1, - aux_sym_subscript_repeat1, + [108881] = 4, + ACTIONS(3593), 1, + anon_sym_LPAREN, + ACTIONS(3595), 1, + anon_sym_COLON, + STATE(2409), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111210] = 4, - ACTIONS(2837), 1, + [108895] = 4, + ACTIONS(2679), 1, anon_sym_COMMA, - ACTIONS(3622), 1, - anon_sym_RPAREN, - STATE(2123), 1, + ACTIONS(2695), 1, + anon_sym_RBRACE, + STATE(2022), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111224] = 4, - ACTIONS(1114), 1, - anon_sym_RBRACK, - ACTIONS(3624), 1, + [108909] = 4, + ACTIONS(3126), 1, + anon_sym_RBRACE, + ACTIONS(3597), 1, anon_sym_COMMA, - STATE(2179), 1, + STATE(2059), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111238] = 4, - ACTIONS(1190), 1, + [108923] = 4, + ACTIONS(3343), 1, + anon_sym_COLON, + ACTIONS(3600), 1, anon_sym_RBRACE, - ACTIONS(3626), 1, - anon_sym_COMMA, - STATE(2162), 1, - aux_sym_dictionary_repeat1, + STATE(2517), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111252] = 2, + [108937] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2710), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [111262] = 4, - ACTIONS(3628), 1, - anon_sym_SEMI, - ACTIONS(3630), 1, + ACTIONS(3602), 3, sym__newline, - STATE(2099), 1, - aux_sym__simple_statements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111276] = 4, - ACTIONS(1868), 1, - anon_sym_RBRACK, - ACTIONS(3632), 1, - anon_sym_COMMA, - STATE(2088), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111290] = 4, - ACTIONS(3255), 1, - anon_sym_RPAREN, - ACTIONS(3634), 1, + anon_sym_SEMI, anon_sym_COMMA, - STATE(2082), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111304] = 4, - ACTIONS(3301), 1, - anon_sym_RBRACE, - ACTIONS(3637), 1, + [108947] = 4, + ACTIONS(1078), 1, + anon_sym_RBRACK, + ACTIONS(3604), 1, anon_sym_COMMA, - STATE(2083), 1, + STATE(2182), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111318] = 4, - ACTIONS(3640), 1, + [108961] = 4, + ACTIONS(3606), 1, anon_sym_SEMI, - ACTIONS(3642), 1, + ACTIONS(3608), 1, sym__newline, - STATE(2236), 1, + STATE(2078), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111332] = 4, - ACTIONS(1046), 1, - anon_sym_RPAREN, - ACTIONS(3644), 1, + [108975] = 4, + ACTIONS(3610), 1, anon_sym_COMMA, - STATE(2082), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3612), 1, + anon_sym_RBRACK, + STATE(2036), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111346] = 4, - ACTIONS(2837), 1, + [108989] = 4, + ACTIONS(3614), 1, anon_sym_COMMA, - ACTIONS(2874), 1, - anon_sym_RPAREN, - STATE(2123), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(3616), 1, + anon_sym_COLON, + STATE(2042), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111360] = 4, - ACTIONS(2976), 1, - anon_sym_RPAREN, - ACTIONS(3646), 1, + [109003] = 4, + ACTIONS(3618), 1, anon_sym_COMMA, - STATE(2087), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3620), 1, + anon_sym_RBRACK, + STATE(2036), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111374] = 4, - ACTIONS(2679), 1, - anon_sym_RBRACK, - ACTIONS(3649), 1, - anon_sym_COMMA, - STATE(2088), 1, - aux_sym__patterns_repeat1, + [109017] = 4, + ACTIONS(3484), 1, + sym__newline, + ACTIONS(3486), 1, + sym__indent, + STATE(761), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111388] = 4, - ACTIONS(1044), 1, - anon_sym_RPAREN, - ACTIONS(3652), 1, + [109031] = 4, + ACTIONS(2741), 1, anon_sym_COMMA, - STATE(2082), 1, - aux_sym_argument_list_repeat1, + ACTIONS(2761), 1, + anon_sym_RPAREN, + STATE(2194), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111402] = 4, - ACTIONS(3654), 1, + [109045] = 4, + ACTIONS(3312), 1, + anon_sym_RPAREN, + ACTIONS(3465), 1, anon_sym_COMMA, - ACTIONS(3657), 1, - anon_sym_RBRACK, - STATE(2090), 1, - aux_sym_subscript_repeat1, + STATE(2040), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111416] = 2, + [109059] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2346), 3, + ACTIONS(3461), 3, sym__newline, anon_sym_SEMI, - anon_sym_in, - [111426] = 4, - ACTIONS(1130), 1, - anon_sym_RBRACK, - ACTIONS(3659), 1, anon_sym_COMMA, - STATE(2254), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111440] = 4, - ACTIONS(1130), 1, + [109069] = 4, + ACTIONS(1024), 1, anon_sym_RPAREN, - ACTIONS(3661), 1, + ACTIONS(3622), 1, anon_sym_COMMA, - STATE(2087), 1, - aux_sym_assert_statement_repeat1, + STATE(2049), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111454] = 3, - ACTIONS(1521), 1, + [109083] = 3, + ACTIONS(1500), 1, anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1519), 2, + ACTIONS(1498), 2, anon_sym_except_STAR, anon_sym_finally, - [111466] = 4, - ACTIONS(3196), 1, + [109095] = 4, + ACTIONS(998), 1, + anon_sym_RPAREN, + ACTIONS(3624), 1, anon_sym_COMMA, - ACTIONS(3198), 1, - anon_sym_RBRACE, - STATE(2106), 1, - aux_sym_dictionary_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111480] = 4, - ACTIONS(3663), 1, - anon_sym_SEMI, - ACTIONS(3665), 1, - sym__newline, - STATE(2103), 1, - aux_sym__simple_statements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111494] = 2, + STATE(2049), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1497), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [111504] = 4, - ACTIONS(3667), 1, - anon_sym_COMMA, - ACTIONS(3669), 1, - anon_sym_RBRACK, - STATE(2090), 1, - aux_sym_subscript_repeat1, + [109109] = 3, + ACTIONS(3628), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111518] = 4, - ACTIONS(577), 1, + ACTIONS(3626), 2, sym__newline, - ACTIONS(3671), 1, anon_sym_SEMI, - STATE(2189), 1, - aux_sym__simple_statements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111532] = 4, - ACTIONS(2837), 1, + [109121] = 4, + ACTIONS(3059), 1, anon_sym_COMMA, - ACTIONS(2839), 1, - anon_sym_RPAREN, - STATE(2123), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(3061), 1, + anon_sym_RBRACE, + STATE(2085), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111546] = 4, - ACTIONS(1114), 1, - anon_sym_RBRACE, - ACTIONS(3673), 1, + [109135] = 4, + ACTIONS(3433), 1, + anon_sym_RPAREN, + ACTIONS(3630), 1, anon_sym_COMMA, - STATE(2083), 1, - aux_sym__collection_elements_repeat1, + STATE(2206), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111560] = 4, - ACTIONS(3184), 1, - anon_sym_COMMA, - ACTIONS(3186), 1, - anon_sym_RBRACE, - STATE(2132), 1, - aux_sym_dictionary_repeat1, + [109149] = 4, + ACTIONS(3561), 1, + sym__newline, + ACTIONS(3563), 1, + sym__indent, + STATE(831), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111574] = 4, - ACTIONS(581), 1, + [109163] = 4, + ACTIONS(575), 1, sym__newline, - ACTIONS(3675), 1, + ACTIONS(3632), 1, anon_sym_SEMI, - STATE(2189), 1, + STATE(2032), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111588] = 4, - ACTIONS(892), 1, - anon_sym_in, - ACTIONS(3677), 1, - anon_sym_COMMA, - STATE(2144), 1, - aux_sym__patterns_repeat1, + [109177] = 4, + ACTIONS(3593), 1, + anon_sym_LPAREN, + ACTIONS(3634), 1, + anon_sym_COLON, + STATE(2434), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111602] = 4, - ACTIONS(3679), 1, + [109191] = 4, + ACTIONS(3636), 1, anon_sym_COMMA, - ACTIONS(3681), 1, + ACTIONS(3638), 1, anon_sym_RBRACK, - STATE(2090), 1, + STATE(2036), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111616] = 4, - ACTIONS(1194), 1, - anon_sym_RBRACE, - ACTIONS(3683), 1, + [109205] = 4, + ACTIONS(3640), 1, anon_sym_COMMA, - STATE(2162), 1, - aux_sym_dictionary_repeat1, + ACTIONS(3642), 1, + anon_sym_RBRACK, + STATE(2036), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111630] = 4, - ACTIONS(3589), 1, + [109219] = 4, + ACTIONS(2695), 1, + anon_sym_RBRACK, + ACTIONS(2717), 1, anon_sym_COMMA, - ACTIONS(3685), 1, - anon_sym_in, - STATE(2104), 1, - aux_sym__patterns_repeat1, + STATE(2062), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111644] = 4, - ACTIONS(3589), 1, + [109233] = 4, + ACTIONS(2941), 1, anon_sym_COMMA, - ACTIONS(3687), 1, - anon_sym_in, - STATE(2104), 1, - aux_sym__patterns_repeat1, + ACTIONS(2943), 1, + anon_sym_RBRACK, + STATE(2080), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111658] = 4, - ACTIONS(2837), 1, + [109247] = 4, + ACTIONS(3343), 1, + anon_sym_COLON, + ACTIONS(3644), 1, + anon_sym_RBRACE, + STATE(2320), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [109261] = 4, + ACTIONS(1166), 1, + anon_sym_RBRACE, + ACTIONS(3646), 1, anon_sym_COMMA, - ACTIONS(3689), 1, - anon_sym_RPAREN, - STATE(2123), 1, - aux_sym__collection_elements_repeat1, + STATE(2170), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111672] = 4, - ACTIONS(2837), 1, + [109275] = 4, + ACTIONS(3512), 1, + anon_sym_RBRACK, + ACTIONS(3648), 1, anon_sym_COMMA, - ACTIONS(3691), 1, - anon_sym_RPAREN, - STATE(2123), 1, - aux_sym__collection_elements_repeat1, + STATE(2109), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111686] = 3, - ACTIONS(1504), 1, - anon_sym_except, - ACTIONS(3), 2, + [109289] = 3, + ACTIONS(3193), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1506), 2, - anon_sym_except_STAR, - anon_sym_finally, - [111698] = 4, - ACTIONS(2886), 1, - anon_sym_RPAREN, - ACTIONS(2888), 1, + ACTIONS(3191), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [109301] = 4, + ACTIONS(3650), 1, anon_sym_COMMA, - STATE(2122), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3652), 1, + anon_sym_COLON, + STATE(2185), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111712] = 4, - ACTIONS(3693), 1, + [109315] = 4, + ACTIONS(2713), 1, anon_sym_RPAREN, - ACTIONS(3695), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - STATE(2124), 1, + STATE(2097), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111726] = 4, - ACTIONS(2837), 1, - anon_sym_COMMA, - ACTIONS(3697), 1, + [109329] = 4, + ACTIONS(3654), 1, anon_sym_RPAREN, - STATE(2123), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111740] = 4, - ACTIONS(1286), 1, - anon_sym_COLON, - ACTIONS(3699), 1, + ACTIONS(3656), 1, anon_sym_COMMA, - STATE(2192), 1, - aux_sym_with_clause_repeat1, + STATE(2099), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111754] = 4, - ACTIONS(3084), 1, + [109343] = 4, + ACTIONS(3658), 1, anon_sym_COMMA, - ACTIONS(3086), 1, + ACTIONS(3660), 1, anon_sym_RBRACK, - STATE(2127), 1, + STATE(2036), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111768] = 4, - ACTIONS(3595), 1, - anon_sym_RPAREN, - ACTIONS(3701), 1, + [109357] = 4, + ACTIONS(2741), 1, anon_sym_COMMA, - STATE(2160), 1, - aux_sym__parameters_repeat1, + ACTIONS(3662), 1, + anon_sym_RPAREN, + STATE(2194), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111782] = 4, - ACTIONS(1868), 1, - anon_sym_RPAREN, - ACTIONS(3703), 1, + [109371] = 4, + ACTIONS(2912), 1, anon_sym_COMMA, - STATE(2240), 1, - aux_sym__patterns_repeat1, + ACTIONS(2914), 1, + anon_sym_RBRACK, + STATE(2102), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111796] = 3, - ACTIONS(3578), 1, - anon_sym_EQ, + [109385] = 4, + ACTIONS(2908), 1, + anon_sym_COMMA, + ACTIONS(2910), 1, + anon_sym_RBRACK, + STATE(2150), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3574), 2, - anon_sym_RPAREN, + [109399] = 4, + ACTIONS(2741), 1, anon_sym_COMMA, - [111808] = 4, - ACTIONS(3152), 1, - sym_identifier, - ACTIONS(3705), 1, - anon_sym_import, - STATE(2429), 1, - sym_dotted_name, + ACTIONS(3664), 1, + anon_sym_RPAREN, + STATE(2194), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111822] = 4, - ACTIONS(3707), 1, + [109413] = 4, + ACTIONS(3666), 1, anon_sym_COMMA, - ACTIONS(3709), 1, - anon_sym_COLON, - STATE(2217), 1, - aux_sym_match_statement_repeat1, + ACTIONS(3668), 1, + anon_sym_RBRACK, + STATE(2036), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111836] = 4, - ACTIONS(1070), 1, + [109427] = 4, + ACTIONS(1000), 1, anon_sym_RPAREN, - ACTIONS(3711), 1, + ACTIONS(3670), 1, anon_sym_COMMA, - STATE(2082), 1, + STATE(2049), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111850] = 4, - ACTIONS(1114), 1, + [109441] = 4, + ACTIONS(3672), 1, anon_sym_RPAREN, - ACTIONS(3713), 1, + ACTIONS(3674), 1, anon_sym_COMMA, - STATE(2221), 1, - aux_sym__collection_elements_repeat1, + STATE(2164), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111864] = 4, - ACTIONS(1082), 1, + [109455] = 4, + ACTIONS(1004), 1, anon_sym_RPAREN, - ACTIONS(3715), 1, + ACTIONS(3676), 1, anon_sym_COMMA, - STATE(2082), 1, + STATE(2049), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111878] = 4, - ACTIONS(2837), 1, - anon_sym_COMMA, - ACTIONS(2865), 1, + [109469] = 4, + ACTIONS(2743), 1, anon_sym_RPAREN, - STATE(2123), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(2745), 1, + anon_sym_COMMA, + STATE(2167), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111892] = 4, - ACTIONS(3717), 1, + [109483] = 4, + ACTIONS(3678), 1, anon_sym_COMMA, - ACTIONS(3719), 1, + ACTIONS(3680), 1, anon_sym_RBRACK, - STATE(2090), 1, + STATE(2036), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111906] = 4, - ACTIONS(3721), 1, + [109497] = 4, + ACTIONS(3682), 1, anon_sym_COMMA, - ACTIONS(3723), 1, + ACTIONS(3684), 1, anon_sym_RBRACK, - STATE(2090), 1, + STATE(2036), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111920] = 3, - ACTIONS(3725), 1, + [109511] = 4, + ACTIONS(3686), 1, + anon_sym_COMMA, + ACTIONS(3688), 1, anon_sym_COLON, + STATE(2157), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3574), 2, - anon_sym_RPAREN, + [109525] = 4, + ACTIONS(2945), 1, anon_sym_COMMA, - [111932] = 4, - ACTIONS(3589), 1, + ACTIONS(2947), 1, + anon_sym_RBRACK, + STATE(2091), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [109539] = 4, + ACTIONS(3488), 1, anon_sym_COMMA, - ACTIONS(3727), 1, + ACTIONS(3690), 1, anon_sym_in, - STATE(2104), 1, + STATE(2113), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111946] = 4, - ACTIONS(2837), 1, - anon_sym_COMMA, - ACTIONS(3729), 1, - anon_sym_RPAREN, - STATE(2123), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, + [109553] = 3, + ACTIONS(3226), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [111960] = 4, - ACTIONS(2837), 1, - anon_sym_COMMA, - ACTIONS(3731), 1, - anon_sym_RPAREN, - STATE(2123), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(3224), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [109565] = 3, + ACTIONS(3482), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111974] = 4, - ACTIONS(1154), 1, - anon_sym_RBRACE, - ACTIONS(3733), 1, + ACTIONS(3422), 2, anon_sym_COMMA, - STATE(2162), 1, - aux_sym_dictionary_repeat1, - ACTIONS(3), 2, + anon_sym_COLON, + [109577] = 3, + ACTIONS(3230), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [111988] = 4, - ACTIONS(3589), 1, + ACTIONS(3228), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [109589] = 4, + ACTIONS(1732), 1, + anon_sym_RBRACK, + ACTIONS(3692), 1, anon_sym_COMMA, - ACTIONS(3735), 1, - anon_sym_in, - STATE(2104), 1, + STATE(2035), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112002] = 2, - ACTIONS(3), 2, + [109603] = 3, + ACTIONS(3234), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1497), 3, + ACTIONS(3232), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [109615] = 4, + ACTIONS(2996), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [112012] = 4, - ACTIONS(3423), 1, - anon_sym_COLON, - ACTIONS(3737), 1, + ACTIONS(2998), 1, anon_sym_RBRACE, - STATE(2496), 1, - sym_format_specifier, + STATE(2153), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112026] = 4, - ACTIONS(2809), 1, - anon_sym_RPAREN, - ACTIONS(2837), 1, + [109629] = 4, + ACTIONS(3694), 1, anon_sym_COMMA, - STATE(2123), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112040] = 4, - ACTIONS(599), 1, - sym__newline, - ACTIONS(3739), 1, - anon_sym_SEMI, - STATE(2189), 1, - aux_sym__simple_statements_repeat1, + ACTIONS(3696), 1, + anon_sym_RBRACK, + STATE(2036), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112054] = 4, - ACTIONS(3188), 1, - sym_identifier, - STATE(2046), 1, - sym_dotted_name, - STATE(2248), 1, - sym_aliased_import, + [109643] = 4, + ACTIONS(884), 1, + anon_sym_in, + ACTIONS(3698), 1, + anon_sym_COMMA, + STATE(2166), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112068] = 4, - ACTIONS(3224), 1, + [109657] = 4, + ACTIONS(3700), 1, anon_sym_COMMA, - ACTIONS(3226), 1, - anon_sym_RBRACE, - STATE(2078), 1, - aux_sym_dictionary_repeat1, + ACTIONS(3703), 1, + anon_sym_COLON, + STATE(2114), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112082] = 4, - ACTIONS(3741), 1, + [109671] = 4, + ACTIONS(3705), 1, anon_sym_SEMI, - ACTIONS(3743), 1, + ACTIONS(3707), 1, sym__newline, - STATE(2159), 1, + STATE(2134), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112096] = 4, - ACTIONS(3745), 1, - anon_sym_LPAREN, - ACTIONS(3747), 1, - anon_sym_COLON, - STATE(2428), 1, - sym_argument_list, + [109685] = 4, + ACTIONS(3709), 1, + anon_sym_COMMA, + ACTIONS(3711), 1, + anon_sym_RBRACK, + STATE(2036), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112110] = 4, - ACTIONS(3749), 1, - anon_sym_RPAREN, - ACTIONS(3751), 1, - anon_sym_COMMA, - STATE(2118), 1, - aux_sym__patterns_repeat1, + [109699] = 4, + ACTIONS(553), 1, + sym__newline, + ACTIONS(3713), 1, + anon_sym_SEMI, + STATE(2032), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112124] = 3, - ACTIONS(3755), 1, - anon_sym_EQ, + [109713] = 4, + ACTIONS(3406), 1, + sym_identifier, + STATE(2209), 1, + sym_dotted_name, + STATE(2222), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3753), 2, + [109727] = 4, + ACTIONS(1038), 1, anon_sym_RPAREN, + ACTIONS(3715), 1, anon_sym_COMMA, - [112136] = 4, - ACTIONS(2679), 1, - anon_sym_in, - ACTIONS(3757), 1, - anon_sym_COMMA, - STATE(2144), 1, - aux_sym__patterns_repeat1, + STATE(2049), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112150] = 4, - ACTIONS(2831), 1, + [109741] = 4, + ACTIONS(1040), 1, anon_sym_RPAREN, - ACTIONS(2833), 1, + ACTIONS(3717), 1, anon_sym_COMMA, - STATE(2158), 1, + STATE(2049), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112164] = 4, - ACTIONS(2837), 1, - anon_sym_COMMA, - ACTIONS(2855), 1, + [109755] = 4, + ACTIONS(2739), 1, anon_sym_RPAREN, - STATE(2123), 1, + ACTIONS(2741), 1, + anon_sym_COMMA, + STATE(2194), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112178] = 4, - ACTIONS(3760), 1, - anon_sym_RPAREN, - ACTIONS(3762), 1, - anon_sym_COMMA, - STATE(2161), 1, - aux_sym_argument_list_repeat1, + [109769] = 4, + ACTIONS(547), 1, + sym__newline, + ACTIONS(3719), 1, + anon_sym_SEMI, + STATE(2032), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112192] = 4, - ACTIONS(2988), 1, - anon_sym_COMMA, - ACTIONS(2996), 1, - anon_sym_RBRACK, - STATE(2164), 1, - aux_sym_subscript_repeat1, + [109783] = 3, + ACTIONS(3723), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112206] = 4, - ACTIONS(2835), 1, - anon_sym_RPAREN, - ACTIONS(2837), 1, + ACTIONS(3721), 2, + sym__newline, + anon_sym_SEMI, + [109795] = 4, + ACTIONS(3113), 1, anon_sym_COMMA, - STATE(2123), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112220] = 4, - ACTIONS(3423), 1, - anon_sym_COLON, - ACTIONS(3764), 1, + ACTIONS(3115), 1, anon_sym_RBRACE, - STATE(2382), 1, - sym_format_specifier, + STATE(2014), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112234] = 3, - ACTIONS(3768), 1, + [109809] = 3, + ACTIONS(3238), 1, aux_sym_format_specifier_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3766), 2, + ACTIONS(3236), 2, anon_sym_LBRACE, anon_sym_RBRACE, - [112246] = 4, - ACTIONS(3770), 1, - anon_sym_COMMA, - ACTIONS(3772), 1, - anon_sym_RBRACK, - STATE(2090), 1, - aux_sym_subscript_repeat1, + [109821] = 4, + ACTIONS(3066), 1, + sym_identifier, + STATE(1996), 1, + sym_dotted_name, + STATE(2070), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112260] = 4, - ACTIONS(3774), 1, + [109835] = 4, + ACTIONS(2949), 1, anon_sym_COMMA, - ACTIONS(3776), 1, + ACTIONS(2951), 1, anon_sym_RBRACK, - STATE(2090), 1, + STATE(2112), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112274] = 4, - ACTIONS(1074), 1, - anon_sym_RPAREN, - ACTIONS(3778), 1, - anon_sym_COMMA, - STATE(2082), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, + [109849] = 3, + ACTIONS(3220), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3218), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [109861] = 3, + ACTIONS(3199), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [112288] = 4, - ACTIONS(3137), 1, + ACTIONS(3197), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [109873] = 4, + ACTIONS(3105), 1, anon_sym_COMMA, - ACTIONS(3139), 1, + ACTIONS(3107), 1, anon_sym_RBRACE, - STATE(2166), 1, + STATE(2141), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112302] = 4, - ACTIONS(1068), 1, - anon_sym_RPAREN, - ACTIONS(3780), 1, - anon_sym_COMMA, - STATE(2082), 1, - aux_sym_argument_list_repeat1, + [109887] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112316] = 4, - ACTIONS(2793), 1, + ACTIONS(1408), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2809), 1, - anon_sym_RBRACE, - STATE(2101), 1, - aux_sym__collection_elements_repeat1, + anon_sym_EQ, + [109897] = 4, + ACTIONS(3725), 1, + anon_sym_RPAREN, + ACTIONS(3727), 1, + anon_sym_COMMA, + STATE(2119), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112330] = 4, - ACTIONS(1062), 1, + [109911] = 4, + ACTIONS(2565), 1, anon_sym_RPAREN, - ACTIONS(3782), 1, + ACTIONS(3729), 1, anon_sym_COMMA, - STATE(2082), 1, - aux_sym_argument_list_repeat1, + STATE(2133), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112344] = 4, - ACTIONS(601), 1, + [109925] = 4, + ACTIONS(561), 1, sym__newline, - ACTIONS(3784), 1, + ACTIONS(3732), 1, anon_sym_SEMI, - STATE(2189), 1, + STATE(2032), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112358] = 4, - ACTIONS(2789), 1, + [109939] = 4, + ACTIONS(2735), 1, anon_sym_RPAREN, - ACTIONS(3786), 1, + ACTIONS(2737), 1, anon_sym_COMMA, - STATE(2190), 1, - aux_sym__parameters_repeat1, + STATE(2120), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112372] = 4, - ACTIONS(1060), 1, - anon_sym_RPAREN, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(2082), 1, - aux_sym_argument_list_repeat1, + [109953] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112386] = 4, - ACTIONS(3790), 1, + ACTIONS(1408), 3, anon_sym_COMMA, - ACTIONS(3793), 1, + anon_sym_COLON, + anon_sym_EQ, + [109963] = 4, + ACTIONS(1158), 1, anon_sym_RBRACE, - STATE(2162), 1, + ACTIONS(3734), 1, + anon_sym_COMMA, + STATE(2170), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112400] = 4, - ACTIONS(3795), 1, - anon_sym_COMMA, - ACTIONS(3797), 1, - anon_sym_RBRACK, - STATE(2090), 1, - aux_sym_subscript_repeat1, + [109977] = 3, + ACTIONS(1490), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112414] = 4, - ACTIONS(3799), 1, - anon_sym_COMMA, - ACTIONS(3801), 1, - anon_sym_RBRACK, - STATE(2090), 1, - aux_sym_subscript_repeat1, + ACTIONS(1492), 2, + anon_sym_except_STAR, + anon_sym_finally, + [109989] = 4, + ACTIONS(559), 1, + sym__newline, + ACTIONS(3736), 1, + anon_sym_SEMI, + STATE(2032), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112428] = 4, - ACTIONS(3355), 1, - anon_sym_import, - ACTIONS(3597), 1, - anon_sym_DOT, - STATE(2066), 1, - aux_sym_dotted_name_repeat1, + [110003] = 4, + ACTIONS(3109), 1, + anon_sym_COMMA, + ACTIONS(3111), 1, + anon_sym_RBRACE, + STATE(2137), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112442] = 4, - ACTIONS(1150), 1, + [110017] = 4, + ACTIONS(1124), 1, anon_sym_RBRACE, - ACTIONS(3803), 1, + ACTIONS(3738), 1, anon_sym_COMMA, - STATE(2162), 1, + STATE(2170), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112456] = 4, - ACTIONS(3423), 1, + [110031] = 4, + ACTIONS(3343), 1, anon_sym_COLON, - ACTIONS(3805), 1, + ACTIONS(3740), 1, anon_sym_RBRACE, - STATE(2370), 1, + STATE(2454), 1, sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112470] = 4, - ACTIONS(3807), 1, + [110045] = 4, + ACTIONS(2741), 1, anon_sym_COMMA, - ACTIONS(3809), 1, - anon_sym_RBRACK, - STATE(2090), 1, - aux_sym_subscript_repeat1, + ACTIONS(2765), 1, + anon_sym_RPAREN, + STATE(2194), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112484] = 4, - ACTIONS(3811), 1, + [110059] = 4, + ACTIONS(3742), 1, + anon_sym_RPAREN, + ACTIONS(3744), 1, anon_sym_COMMA, - ACTIONS(3813), 1, - anon_sym_RBRACK, - STATE(2090), 1, - aux_sym_subscript_repeat1, + STATE(2144), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112498] = 4, - ACTIONS(2789), 1, - anon_sym_COLON, - ACTIONS(3815), 1, + [110073] = 4, + ACTIONS(3747), 1, + anon_sym_RPAREN, + ACTIONS(3749), 1, anon_sym_COMMA, - STATE(2174), 1, - aux_sym__parameters_repeat1, + STATE(2071), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112512] = 4, - ACTIONS(3044), 1, - anon_sym_COMMA, - ACTIONS(3046), 1, - anon_sym_RBRACK, - STATE(2168), 1, - aux_sym_subscript_repeat1, + [110087] = 4, + ACTIONS(3751), 1, + anon_sym_SEMI, + ACTIONS(3753), 1, + sym__newline, + STATE(2139), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112526] = 4, - ACTIONS(2882), 1, + [110101] = 4, + ACTIONS(2731), 1, anon_sym_RPAREN, - ACTIONS(2884), 1, + ACTIONS(2733), 1, anon_sym_COMMA, - STATE(2181), 1, + STATE(2156), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112540] = 4, - ACTIONS(3817), 1, + [110115] = 4, + ACTIONS(3755), 1, anon_sym_RPAREN, - ACTIONS(3819), 1, + ACTIONS(3757), 1, anon_sym_COMMA, - STATE(2183), 1, + STATE(2158), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112554] = 4, - ACTIONS(3821), 1, - anon_sym_COMMA, - ACTIONS(3824), 1, - anon_sym_COLON, - STATE(2174), 1, - aux_sym__parameters_repeat1, - ACTIONS(3), 2, + [110129] = 3, + ACTIONS(3761), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [112568] = 4, - ACTIONS(3826), 1, - anon_sym_SEMI, - ACTIONS(3828), 1, - sym__newline, - STATE(2137), 1, - aux_sym__simple_statements_repeat1, + ACTIONS(3759), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [110141] = 4, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3765), 1, + anon_sym_RBRACK, + STATE(2036), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112582] = 4, - ACTIONS(3070), 1, + [110155] = 4, + ACTIONS(2904), 1, anon_sym_COMMA, - ACTIONS(3072), 1, + ACTIONS(2906), 1, anon_sym_RBRACK, - STATE(2186), 1, + STATE(2161), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112596] = 3, - ACTIONS(3830), 1, + [110169] = 3, + ACTIONS(3769), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3753), 2, + ACTIONS(3767), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [112608] = 4, - ACTIONS(1178), 1, + [110181] = 4, + ACTIONS(1134), 1, anon_sym_RBRACE, - ACTIONS(3832), 1, + ACTIONS(3771), 1, anon_sym_COMMA, - STATE(2162), 1, + STATE(2170), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112622] = 4, - ACTIONS(3301), 1, - anon_sym_RBRACK, - ACTIONS(3834), 1, + [110195] = 4, + ACTIONS(3703), 1, + anon_sym_RPAREN, + ACTIONS(3773), 1, anon_sym_COMMA, - STATE(2179), 1, - aux_sym__collection_elements_repeat1, + STATE(2154), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112636] = 3, - ACTIONS(2972), 1, - anon_sym_from, + [110209] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2970), 2, + ACTIONS(3410), 3, sym__newline, anon_sym_SEMI, - [112648] = 4, - ACTIONS(1038), 1, + anon_sym_COMMA, + [110219] = 4, + ACTIONS(1060), 1, anon_sym_RPAREN, - ACTIONS(3837), 1, + ACTIONS(3776), 1, anon_sym_COMMA, - STATE(2082), 1, + STATE(2049), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112662] = 4, - ACTIONS(3839), 1, + [110233] = 4, + ACTIONS(2677), 1, + anon_sym_COLON, + ACTIONS(3778), 1, anon_sym_COMMA, - ACTIONS(3841), 1, - anon_sym_RBRACK, - STATE(2090), 1, - aux_sym_subscript_repeat1, + STATE(2210), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112676] = 4, - ACTIONS(1036), 1, + [110247] = 4, + ACTIONS(1058), 1, anon_sym_RPAREN, - ACTIONS(3843), 1, + ACTIONS(3780), 1, anon_sym_COMMA, - STATE(2082), 1, + STATE(2049), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112690] = 4, - ACTIONS(3845), 1, + [110261] = 4, + ACTIONS(2677), 1, + anon_sym_RPAREN, + ACTIONS(3782), 1, anon_sym_COMMA, - ACTIONS(3847), 1, - anon_sym_RBRACK, - STATE(2090), 1, - aux_sym_subscript_repeat1, + STATE(2144), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112704] = 4, - ACTIONS(3849), 1, + [110275] = 4, + ACTIONS(3784), 1, anon_sym_COMMA, - ACTIONS(3851), 1, + ACTIONS(3786), 1, anon_sym_RBRACK, - STATE(2090), 1, + STATE(2036), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112718] = 4, - ACTIONS(3853), 1, + [110289] = 4, + ACTIONS(3788), 1, anon_sym_COMMA, - ACTIONS(3855), 1, + ACTIONS(3790), 1, anon_sym_RBRACK, - STATE(2090), 1, + STATE(2036), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112732] = 4, - ACTIONS(3060), 1, + [110303] = 4, + ACTIONS(3792), 1, anon_sym_COMMA, - ACTIONS(3062), 1, + ACTIONS(3794), 1, anon_sym_RBRACK, - STATE(2182), 1, + STATE(2036), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112746] = 2, + [110317] = 4, + ACTIONS(2741), 1, + anon_sym_COMMA, + ACTIONS(2753), 1, + anon_sym_RPAREN, + STATE(2194), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3553), 3, - sym__newline, - anon_sym_SEMI, + [110331] = 4, + ACTIONS(1002), 1, + anon_sym_RPAREN, + ACTIONS(3796), 1, anon_sym_COMMA, - [112756] = 4, - ACTIONS(3857), 1, - anon_sym_SEMI, - ACTIONS(3860), 1, - sym__newline, - STATE(2189), 1, - aux_sym__simple_statements_repeat1, + STATE(2049), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112770] = 4, - ACTIONS(3824), 1, - anon_sym_RPAREN, - ACTIONS(3862), 1, + [110345] = 4, + ACTIONS(2741), 1, anon_sym_COMMA, - STATE(2190), 1, - aux_sym__parameters_repeat1, + ACTIONS(3798), 1, + anon_sym_RPAREN, + STATE(2194), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112784] = 3, - ACTIONS(3867), 1, - anon_sym_EQ, + [110359] = 4, + ACTIONS(2565), 1, + anon_sym_in, + ACTIONS(3800), 1, + anon_sym_COMMA, + STATE(2166), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3865), 2, - sym__newline, - anon_sym_SEMI, - [112796] = 4, - ACTIONS(3617), 1, - anon_sym_COLON, - ACTIONS(3869), 1, + [110373] = 4, + ACTIONS(996), 1, + anon_sym_RPAREN, + ACTIONS(3803), 1, anon_sym_COMMA, - STATE(2192), 1, - aux_sym_with_clause_repeat1, + STATE(2049), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112810] = 4, - ACTIONS(1298), 1, - anon_sym_RPAREN, - ACTIONS(3872), 1, + [110387] = 4, + ACTIONS(3805), 1, anon_sym_COMMA, - STATE(2074), 1, - aux_sym_with_clause_repeat1, + ACTIONS(3807), 1, + anon_sym_RBRACK, + STATE(2036), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112824] = 4, - ACTIONS(1130), 1, - anon_sym_COLON, - ACTIONS(3874), 1, + [110401] = 4, + ACTIONS(3809), 1, anon_sym_COMMA, - STATE(2202), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3811), 1, + anon_sym_RBRACK, + STATE(2036), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112838] = 4, - ACTIONS(3423), 1, - anon_sym_COLON, - ACTIONS(3876), 1, + [110415] = 4, + ACTIONS(3813), 1, + anon_sym_COMMA, + ACTIONS(3816), 1, anon_sym_RBRACE, - STATE(2440), 1, - sym_format_specifier, + STATE(2170), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112852] = 3, - ACTIONS(1528), 1, - anon_sym_except, + [110429] = 3, + ACTIONS(3818), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1526), 2, - anon_sym_except_STAR, - anon_sym_finally, - [112864] = 3, - ACTIONS(1508), 1, - anon_sym_except, + ACTIONS(3422), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [110441] = 4, + ACTIONS(1030), 1, + anon_sym_RPAREN, + ACTIONS(3820), 1, + anon_sym_COMMA, + STATE(2049), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1510), 2, - anon_sym_except_STAR, - anon_sym_finally, - [112876] = 4, - ACTIONS(3522), 1, + [110455] = 4, + ACTIONS(2697), 1, anon_sym_RPAREN, - ACTIONS(3878), 1, + ACTIONS(2699), 1, anon_sym_COMMA, - STATE(2198), 1, - aux_sym__import_list_repeat1, + STATE(2073), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112890] = 4, - ACTIONS(3881), 1, + [110469] = 4, + ACTIONS(3822), 1, anon_sym_SEMI, - ACTIONS(3883), 1, + ACTIONS(3824), 1, sym__newline, - STATE(2216), 1, + STATE(2191), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112904] = 4, - ACTIONS(3589), 1, + [110483] = 4, + ACTIONS(1048), 1, + anon_sym_RPAREN, + ACTIONS(3826), 1, anon_sym_COMMA, - ACTIONS(3885), 1, - anon_sym_in, - STATE(2104), 1, - aux_sym__patterns_repeat1, + STATE(2049), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112918] = 4, - ACTIONS(3887), 1, - anon_sym_COMMA, - ACTIONS(3889), 1, - anon_sym_RBRACK, - STATE(2090), 1, - aux_sym_subscript_repeat1, + [110497] = 4, + ACTIONS(3828), 1, + anon_sym_SEMI, + ACTIONS(3830), 1, + sym__newline, + STATE(2117), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112932] = 4, - ACTIONS(2976), 1, - anon_sym_COLON, - ACTIONS(3891), 1, - anon_sym_COMMA, - STATE(2202), 1, - aux_sym_assert_statement_repeat1, + [110511] = 4, + ACTIONS(3484), 1, + sym__newline, + ACTIONS(3486), 1, + sym__indent, + STATE(840), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112946] = 3, - ACTIONS(1532), 1, + [110525] = 3, + ACTIONS(1504), 1, anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1530), 2, + ACTIONS(1502), 2, anon_sym_except_STAR, anon_sym_finally, - [112958] = 4, - ACTIONS(2837), 1, + [110537] = 4, + ACTIONS(2741), 1, anon_sym_COMMA, - ACTIONS(2859), 1, + ACTIONS(2763), 1, anon_sym_RPAREN, - STATE(2123), 1, + STATE(2194), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112972] = 4, - ACTIONS(3894), 1, + [110551] = 4, + ACTIONS(2927), 1, anon_sym_COMMA, - ACTIONS(3896), 1, + ACTIONS(2929), 1, anon_sym_RBRACK, - STATE(2090), 1, + STATE(2168), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112986] = 3, - ACTIONS(3568), 1, - anon_sym_as, + [110565] = 4, + ACTIONS(3832), 1, + anon_sym_SEMI, + ACTIONS(3834), 1, + sym__newline, + STATE(2023), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3539), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [112998] = 4, - ACTIONS(1006), 1, - anon_sym_RPAREN, - ACTIONS(3898), 1, + [110579] = 4, + ACTIONS(3126), 1, + anon_sym_RBRACK, + ACTIONS(3836), 1, anon_sym_COMMA, - STATE(2082), 1, - aux_sym_argument_list_repeat1, + STATE(2182), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113012] = 4, - ACTIONS(1084), 1, + [110593] = 4, + ACTIONS(3839), 1, anon_sym_RPAREN, - ACTIONS(3900), 1, + ACTIONS(3841), 1, anon_sym_COMMA, - STATE(2082), 1, + STATE(2172), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113026] = 4, - ACTIONS(3902), 1, + [110607] = 4, + ACTIONS(2757), 1, + anon_sym_RPAREN, + ACTIONS(2759), 1, anon_sym_COMMA, - ACTIONS(3904), 1, - anon_sym_COLON, - STATE(2115), 1, - aux_sym_with_clause_repeat1, + STATE(2175), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113040] = 4, - ACTIONS(3074), 1, + [110621] = 4, + ACTIONS(1292), 1, + anon_sym_COLON, + ACTIONS(3843), 1, anon_sym_COMMA, - ACTIONS(3076), 1, - anon_sym_RBRACK, - STATE(2201), 1, - aux_sym_subscript_repeat1, + STATE(2114), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113054] = 4, - ACTIONS(3906), 1, + [110635] = 4, + ACTIONS(3688), 1, anon_sym_RPAREN, - ACTIONS(3908), 1, + ACTIONS(3845), 1, anon_sym_COMMA, - STATE(2207), 1, - aux_sym_argument_list_repeat1, + STATE(2159), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113068] = 4, - ACTIONS(3165), 1, + [110649] = 4, + ACTIONS(2978), 1, anon_sym_COMMA, - ACTIONS(3167), 1, + ACTIONS(2980), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2198), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113082] = 3, - ACTIONS(3372), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [110663] = 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3370), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [113094] = 4, - ACTIONS(2876), 1, + ACTIONS(2596), 3, anon_sym_RPAREN, - ACTIONS(2878), 1, anon_sym_COMMA, - STATE(2208), 1, - aux_sym_argument_list_repeat1, + anon_sym_EQ, + [110673] = 4, + ACTIONS(2741), 1, + anon_sym_COMMA, + ACTIONS(3847), 1, + anon_sym_RPAREN, + STATE(2194), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113108] = 4, - ACTIONS(3279), 1, - anon_sym_import, - ACTIONS(3910), 1, - anon_sym_DOT, - STATE(2215), 1, - aux_sym_dotted_name_repeat1, + [110687] = 4, + ACTIONS(1130), 1, + anon_sym_RBRACE, + ACTIONS(3849), 1, + anon_sym_COMMA, + STATE(2170), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113122] = 4, - ACTIONS(589), 1, + [110701] = 4, + ACTIONS(573), 1, sym__newline, - ACTIONS(3913), 1, + ACTIONS(3851), 1, anon_sym_SEMI, - STATE(2189), 1, + STATE(2032), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113136] = 4, - ACTIONS(3915), 1, - anon_sym_COMMA, - ACTIONS(3918), 1, - anon_sym_COLON, - STATE(2217), 1, - aux_sym_match_statement_repeat1, + [110715] = 4, + ACTIONS(3484), 1, + sym__newline, + ACTIONS(3486), 1, + sym__indent, + STATE(794), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113150] = 4, - ACTIONS(1152), 1, - anon_sym_RBRACE, - ACTIONS(3920), 1, + [110729] = 4, + ACTIONS(3853), 1, + anon_sym_RPAREN, + ACTIONS(3855), 1, anon_sym_COMMA, - STATE(2162), 1, - aux_sym_dictionary_repeat1, + STATE(2008), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113164] = 4, - ACTIONS(3115), 1, + [110743] = 4, + ACTIONS(1078), 1, + anon_sym_RPAREN, + ACTIONS(3857), 1, anon_sym_COMMA, - ACTIONS(3117), 1, - anon_sym_RBRACE, - STATE(2218), 1, - aux_sym_dictionary_repeat1, + STATE(2053), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113178] = 4, - ACTIONS(3589), 1, - anon_sym_COMMA, - ACTIONS(3922), 1, - anon_sym_in, - STATE(2104), 1, - aux_sym__patterns_repeat1, + [110757] = 4, + ACTIONS(549), 1, + sym__newline, + ACTIONS(3859), 1, + anon_sym_SEMI, + STATE(2032), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113192] = 4, - ACTIONS(3301), 1, - anon_sym_RPAREN, - ACTIONS(3924), 1, - anon_sym_COMMA, - STATE(2221), 1, - aux_sym__collection_elements_repeat1, + [110771] = 3, + ACTIONS(3426), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113206] = 3, - ACTIONS(3249), 1, + ACTIONS(3422), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [110783] = 3, + ACTIONS(3148), 1, aux_sym_format_specifier_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3247), 2, + ACTIONS(3146), 2, anon_sym_LBRACE, anon_sym_RBRACE, - [113218] = 4, - ACTIONS(1164), 1, + [110795] = 4, + ACTIONS(1138), 1, anon_sym_RBRACE, - ACTIONS(3927), 1, + ACTIONS(3861), 1, anon_sym_COMMA, - STATE(2162), 1, + STATE(2170), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113232] = 4, - ACTIONS(2837), 1, + [110809] = 4, + ACTIONS(3036), 1, anon_sym_COMMA, - ACTIONS(2880), 1, - anon_sym_RPAREN, - STATE(2123), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(3038), 1, + anon_sym_RBRACE, + STATE(2190), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113246] = 3, - ACTIONS(3931), 1, - anon_sym_in, + [110823] = 4, + ACTIONS(1732), 1, + anon_sym_RPAREN, + ACTIONS(3863), 1, + anon_sym_COMMA, + STATE(2133), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3929), 2, - sym__newline, - anon_sym_SEMI, - [113258] = 4, - ACTIONS(3745), 1, - anon_sym_LPAREN, - ACTIONS(3933), 1, - anon_sym_COLON, - STATE(2528), 1, - sym_argument_list, + [110837] = 4, + ACTIONS(2741), 1, + anon_sym_COMMA, + ACTIONS(2755), 1, + anon_sym_RPAREN, + STATE(2194), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113272] = 3, - ACTIONS(3368), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [110851] = 4, + ACTIONS(2870), 1, + anon_sym_COMMA, + ACTIONS(2878), 1, + anon_sym_RBRACK, + STATE(2064), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3366), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [113284] = 4, - ACTIONS(3935), 1, - anon_sym_RPAREN, - ACTIONS(3937), 1, - anon_sym_COMMA, - STATE(2193), 1, - aux_sym_with_clause_repeat1, + [110865] = 4, + ACTIONS(3865), 1, + anon_sym_SEMI, + ACTIONS(3867), 1, + sym__newline, + STATE(2195), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113298] = 4, - ACTIONS(2861), 1, + [110879] = 4, + ACTIONS(2767), 1, anon_sym_RPAREN, - ACTIONS(2863), 1, + ACTIONS(2769), 1, anon_sym_COMMA, - STATE(2237), 1, + STATE(2212), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113312] = 4, - ACTIONS(3939), 1, + [110893] = 4, + ACTIONS(3869), 1, anon_sym_RPAREN, - ACTIONS(3941), 1, + ACTIONS(3871), 1, anon_sym_COMMA, - STATE(2239), 1, + STATE(2214), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113326] = 2, + [110907] = 4, + ACTIONS(3477), 1, + anon_sym_RPAREN, + ACTIONS(3873), 1, + anon_sym_COMMA, + STATE(2206), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3943), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [113336] = 3, - ACTIONS(3364), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [110921] = 4, + ACTIONS(3133), 1, + anon_sym_import, + ACTIONS(3876), 1, + anon_sym_DOT, + STATE(2207), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3362), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [113348] = 4, - ACTIONS(3032), 1, + [110935] = 4, + ACTIONS(2892), 1, anon_sym_COMMA, - ACTIONS(3034), 1, + ACTIONS(2894), 1, anon_sym_RBRACK, - STATE(2242), 1, + STATE(2217), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113362] = 4, - ACTIONS(3535), 1, - sym_identifier, - STATE(2206), 1, - sym_dotted_name, - STATE(2316), 1, - sym_aliased_import, + [110949] = 3, + ACTIONS(3467), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113376] = 4, - ACTIONS(2870), 1, + ACTIONS(3461), 2, anon_sym_RPAREN, - ACTIONS(2872), 1, anon_sym_COMMA, - STATE(2156), 1, - aux_sym_argument_list_repeat1, + [110961] = 4, + ACTIONS(3742), 1, + anon_sym_COLON, + ACTIONS(3879), 1, + anon_sym_COMMA, + STATE(2210), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113390] = 4, - ACTIONS(575), 1, - sym__newline, - ACTIONS(3945), 1, - anon_sym_SEMI, - STATE(2189), 1, - aux_sym__simple_statements_repeat1, + [110975] = 4, + ACTIONS(3488), 1, + anon_sym_COMMA, + ACTIONS(3882), 1, + anon_sym_in, + STATE(2113), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113404] = 4, - ACTIONS(1010), 1, + [110989] = 4, + ACTIONS(1018), 1, anon_sym_RPAREN, - ACTIONS(3947), 1, + ACTIONS(3884), 1, anon_sym_COMMA, - STATE(2082), 1, + STATE(2049), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113418] = 4, - ACTIONS(3949), 1, - anon_sym_RPAREN, - ACTIONS(3951), 1, + [111003] = 4, + ACTIONS(3886), 1, anon_sym_COMMA, - STATE(2154), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3888), 1, + anon_sym_COLON, + STATE(2042), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113432] = 4, - ACTIONS(1008), 1, + [111017] = 4, + ACTIONS(1016), 1, anon_sym_RPAREN, - ACTIONS(3953), 1, + ACTIONS(3890), 1, anon_sym_COMMA, - STATE(2082), 1, + STATE(2049), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113446] = 4, - ACTIONS(2679), 1, - anon_sym_RPAREN, - ACTIONS(3955), 1, - anon_sym_COMMA, - STATE(2240), 1, - aux_sym__patterns_repeat1, + [111031] = 4, + ACTIONS(3561), 1, + sym__newline, + ACTIONS(3563), 1, + sym__indent, + STATE(750), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113460] = 4, - ACTIONS(3958), 1, + [111045] = 4, + ACTIONS(3892), 1, anon_sym_COMMA, - ACTIONS(3960), 1, + ACTIONS(3894), 1, anon_sym_RBRACK, - STATE(2090), 1, + STATE(2036), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113474] = 4, - ACTIONS(3962), 1, + [111059] = 4, + ACTIONS(3896), 1, anon_sym_COMMA, - ACTIONS(3964), 1, + ACTIONS(3898), 1, anon_sym_RBRACK, - STATE(2090), 1, + STATE(2036), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113488] = 4, - ACTIONS(3966), 1, - anon_sym_COMMA, - ACTIONS(3968), 1, - anon_sym_RBRACK, - STATE(2090), 1, - aux_sym_subscript_repeat1, + [111073] = 3, + ACTIONS(3900), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113502] = 4, - ACTIONS(3970), 1, + ACTIONS(3767), 2, anon_sym_COMMA, - ACTIONS(3972), 1, - anon_sym_RBRACK, - STATE(2090), 1, - aux_sym_subscript_repeat1, + anon_sym_COLON, + [111085] = 4, + ACTIONS(3343), 1, + anon_sym_COLON, + ACTIONS(3902), 1, + anon_sym_RBRACE, + STATE(2396), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113516] = 4, - ACTIONS(3105), 1, - anon_sym_COMMA, - ACTIONS(3107), 1, - anon_sym_RBRACE, - STATE(2178), 1, - aux_sym_dictionary_repeat1, + [111099] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113530] = 4, - ACTIONS(3064), 1, - anon_sym_COMMA, - ACTIONS(3066), 1, - anon_sym_RBRACK, - STATE(2152), 1, - aux_sym_subscript_repeat1, + ACTIONS(2802), 2, + sym__newline, + anon_sym_SEMI, + [111108] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113544] = 2, + ACTIONS(3904), 2, + sym__dedent, + anon_sym_case, + [111117] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2388), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_in, - [113554] = 2, + ACTIONS(3461), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [111126] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3539), 3, + ACTIONS(3906), 2, sym__newline, anon_sym_SEMI, - anon_sym_COMMA, - [113564] = 4, - ACTIONS(1066), 1, - anon_sym_RPAREN, - ACTIONS(3974), 1, - anon_sym_COMMA, - STATE(2082), 1, - aux_sym_argument_list_repeat1, + [111135] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113578] = 3, - ACTIONS(3316), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + ACTIONS(3908), 2, + sym__newline, + anon_sym_SEMI, + [111144] = 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3314), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [113590] = 4, - ACTIONS(1064), 1, + ACTIONS(3422), 2, anon_sym_RPAREN, - ACTIONS(3976), 1, anon_sym_COMMA, - STATE(2082), 1, - aux_sym_argument_list_repeat1, + [111153] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113604] = 3, - ACTIONS(3345), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3343), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [113616] = 3, - ACTIONS(3349), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + ACTIONS(3133), 2, + anon_sym_import, + anon_sym_DOT, + [111162] = 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3347), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [113628] = 4, - ACTIONS(2976), 1, - anon_sym_RBRACK, - ACTIONS(3978), 1, + ACTIONS(3602), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2254), 1, - aux_sym_assert_statement_repeat1, + [111171] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113642] = 4, - ACTIONS(3981), 1, - anon_sym_SEMI, - ACTIONS(3983), 1, - sym__newline, - STATE(2256), 1, - aux_sym__simple_statements_repeat1, + ACTIONS(3767), 2, + anon_sym_COMMA, + anon_sym_COLON, + [111180] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113656] = 4, - ACTIONS(593), 1, + ACTIONS(3910), 2, sym__newline, - ACTIONS(3985), 1, anon_sym_SEMI, - STATE(2189), 1, - aux_sym__simple_statements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113670] = 4, - ACTIONS(3749), 1, - anon_sym_RBRACK, - ACTIONS(3987), 1, - anon_sym_COMMA, - STATE(2081), 1, - aux_sym__patterns_repeat1, + [111189] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113684] = 4, - ACTIONS(2809), 1, - anon_sym_RBRACK, - ACTIONS(2841), 1, - anon_sym_COMMA, - STATE(2077), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(3912), 2, + sym__dedent, + anon_sym_case, + [111198] = 3, + ACTIONS(3914), 1, + anon_sym_LPAREN, + STATE(2278), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113698] = 4, - ACTIONS(2837), 1, - anon_sym_COMMA, - ACTIONS(2857), 1, - anon_sym_RPAREN, - STATE(2123), 1, - aux_sym__collection_elements_repeat1, + [111209] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113712] = 4, - ACTIONS(2827), 1, - anon_sym_RPAREN, - ACTIONS(2829), 1, + ACTIONS(3916), 2, anon_sym_COMMA, - STATE(2251), 1, - aux_sym_argument_list_repeat1, + anon_sym_RBRACK, + [111218] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113726] = 4, - ACTIONS(3989), 1, - anon_sym_RPAREN, - ACTIONS(3991), 1, + ACTIONS(3918), 2, anon_sym_COMMA, - STATE(2249), 1, - aux_sym_argument_list_repeat1, + anon_sym_RBRACK, + [111227] = 3, + ACTIONS(3914), 1, + anon_sym_LPAREN, + STATE(2269), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113740] = 3, - ACTIONS(3993), 1, - anon_sym_EQ, + [111238] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3574), 2, - anon_sym_COMMA, - anon_sym_COLON, - [113752] = 3, - ACTIONS(3376), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3374), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [113764] = 4, - ACTIONS(3431), 1, - anon_sym_RPAREN, - ACTIONS(3566), 1, - anon_sym_COMMA, - STATE(2072), 1, - aux_sym__import_list_repeat1, + ACTIONS(3920), 2, + sym__dedent, + anon_sym_case, + [111247] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113778] = 4, - ACTIONS(3022), 1, - anon_sym_COMMA, - ACTIONS(3024), 1, - anon_sym_RBRACK, - STATE(2243), 1, - aux_sym_subscript_repeat1, + ACTIONS(2937), 2, + sym__newline, + anon_sym_SEMI, + [111256] = 3, + ACTIONS(3914), 1, + anon_sym_LPAREN, + STATE(2281), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113792] = 4, - ACTIONS(3214), 1, - anon_sym_COMMA, - ACTIONS(3216), 1, - anon_sym_RBRACE, - STATE(2268), 1, - aux_sym_dictionary_repeat1, + [111267] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113806] = 3, - ACTIONS(3993), 1, - anon_sym_EQ, + ACTIONS(3922), 2, + sym__dedent, + anon_sym_case, + [111276] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3574), 2, - anon_sym_COMMA, - anon_sym_COLON, - [113818] = 4, - ACTIONS(1192), 1, - anon_sym_RBRACE, - ACTIONS(3995), 1, - anon_sym_COMMA, - STATE(2162), 1, - aux_sym_dictionary_repeat1, + ACTIONS(3924), 2, + sym__dedent, + anon_sym_case, + [111285] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113832] = 2, + ACTIONS(3924), 2, + sym__dedent, + anon_sym_case, + [111294] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2679), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [113841] = 2, + ACTIONS(3926), 2, + sym__newline, + anon_sym_SEMI, + [111303] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3617), 2, + ACTIONS(3126), 2, anon_sym_COMMA, - anon_sym_COLON, - [113850] = 2, + anon_sym_RBRACK, + [111312] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3997), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [113859] = 2, + ACTIONS(3928), 2, + sym__dedent, + anon_sym_case, + [111321] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3574), 2, - anon_sym_COMMA, - anon_sym_COLON, - [113868] = 2, + ACTIONS(3930), 2, + sym__dedent, + anon_sym_case, + [111330] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3220), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [113877] = 2, + ACTIONS(3932), 2, + sym__dedent, + anon_sym_case, + [111339] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3255), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [113886] = 2, + ACTIONS(3934), 2, + sym__dedent, + anon_sym_case, + [111348] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3617), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [113895] = 2, + ACTIONS(1506), 2, + sym__dedent, + anon_sym_case, + [111357] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3999), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - [113904] = 2, + ACTIONS(3936), 2, + sym__dedent, + anon_sym_case, + [111366] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4001), 2, - sym__newline, - anon_sym_SEMI, - [113913] = 2, + ACTIONS(3938), 2, + sym__dedent, + anon_sym_case, + [111375] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4003), 2, - sym__newline, - anon_sym_SEMI, - [113922] = 2, + ACTIONS(3938), 2, + sym__dedent, + anon_sym_case, + [111384] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4005), 2, + ACTIONS(3940), 2, sym__newline, anon_sym_SEMI, - [113931] = 3, - ACTIONS(4007), 1, - anon_sym_LPAREN, - STATE(2305), 1, - sym_parameters, + [111393] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113942] = 2, + ACTIONS(3816), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [111402] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4009), 2, + ACTIONS(3942), 2, sym__newline, anon_sym_SEMI, - [113951] = 3, - ACTIONS(4007), 1, - anon_sym_LPAREN, - STATE(2308), 1, - sym_parameters, + [111411] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113962] = 2, + ACTIONS(1502), 2, + sym__dedent, + anon_sym_case, + [111420] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3301), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [113971] = 2, + ACTIONS(3944), 2, + sym__dedent, + anon_sym_case, + [111429] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4011), 2, + ACTIONS(3126), 2, anon_sym_COMMA, anon_sym_RBRACE, - [113980] = 2, + [111438] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4013), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [113989] = 2, + ACTIONS(2902), 2, + sym__newline, + anon_sym_SEMI, + [111447] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4015), 2, - sym__newline, - anon_sym_SEMI, - [113998] = 2, + ACTIONS(1516), 2, + sym__dedent, + anon_sym_case, + [111456] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2708), 2, - anon_sym_RPAREN, + ACTIONS(3918), 2, anon_sym_COMMA, - [114007] = 2, + anon_sym_RBRACE, + [111465] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4017), 2, + ACTIONS(2565), 2, + anon_sym_RPAREN, anon_sym_COMMA, + [111474] = 3, + ACTIONS(3946), 1, anon_sym_COLON, - [114016] = 2, + ACTIONS(3948), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2920), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [114025] = 2, + [111485] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4013), 2, + ACTIONS(3916), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [114034] = 2, + anon_sym_RBRACE, + [111494] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3574), 2, - anon_sym_COMMA, - anon_sym_COLON, - [114043] = 2, + ACTIONS(3950), 2, + sym__dedent, + anon_sym_case, + [111503] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3013), 2, - sym__newline, - anon_sym_SEMI, - [114052] = 2, + ACTIONS(3952), 2, + sym__dedent, + anon_sym_case, + [111512] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2920), 2, + ACTIONS(2886), 2, sym__newline, anon_sym_SEMI, - [114061] = 2, + [111521] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4017), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [114070] = 2, + ACTIONS(1492), 2, + sym__dedent, + anon_sym_case, + [111530] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2708), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [114079] = 2, + ACTIONS(1498), 2, + sym__dedent, + anon_sym_case, + [111539] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2710), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [114088] = 2, + ACTIONS(3952), 2, + sym__dedent, + anon_sym_case, + [111548] = 3, + ACTIONS(3954), 1, + anon_sym_COLON, + ACTIONS(3956), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4019), 2, - sym__newline, - anon_sym_SEMI, - [114097] = 3, - ACTIONS(4021), 1, - anon_sym_COLON, - ACTIONS(4023), 1, - anon_sym_DASH_GT, + [111559] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114108] = 2, + ACTIONS(3958), 2, + sym__dedent, + anon_sym_case, + [111568] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3574), 2, + ACTIONS(2802), 2, anon_sym_RPAREN, anon_sym_COMMA, - [114117] = 2, + [111577] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4025), 2, - sym__newline, - anon_sym_SEMI, - [114126] = 2, + ACTIONS(3960), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [111586] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4027), 2, - sym__newline, - anon_sym_SEMI, - [114135] = 2, + ACTIONS(3072), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [111595] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2565), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [111604] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2920), 2, + ACTIONS(1375), 2, anon_sym_RPAREN, anon_sym_COMMA, - [114144] = 2, + [111613] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2679), 2, + ACTIONS(3703), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [114153] = 2, + [111622] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4029), 2, - sym__newline, - anon_sym_SEMI, - [114162] = 3, - ACTIONS(4031), 1, + ACTIONS(2594), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [111631] = 3, + ACTIONS(3962), 1, anon_sym_COLON, - ACTIONS(4033), 1, + ACTIONS(3964), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114173] = 2, + [111642] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4035), 2, - sym__newline, - anon_sym_SEMI, - [114182] = 2, + ACTIONS(3126), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [111651] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4013), 2, + ACTIONS(3966), 2, anon_sym_RPAREN, anon_sym_COMMA, - [114191] = 3, - ACTIONS(4037), 1, + [111660] = 3, + ACTIONS(3968), 1, anon_sym_COLON, - ACTIONS(4039), 1, + ACTIONS(3970), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114202] = 3, - ACTIONS(4007), 1, - anon_sym_LPAREN, - STATE(2313), 1, - sym_parameters, + [111671] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114213] = 2, + ACTIONS(2596), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [111680] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4011), 2, + ACTIONS(3742), 2, anon_sym_RPAREN, anon_sym_COMMA, - [114222] = 2, + [111689] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3301), 2, + ACTIONS(3918), 2, anon_sym_RPAREN, anon_sym_COMMA, - [114231] = 2, + [111698] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4041), 2, - sym__newline, - anon_sym_SEMI, - [114240] = 3, - ACTIONS(4043), 1, - anon_sym_COLON, - ACTIONS(4045), 1, - anon_sym_DASH_GT, + ACTIONS(3254), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [111707] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114251] = 2, + ACTIONS(3916), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [111716] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4011), 2, + ACTIONS(3767), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [114260] = 2, + [111725] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4047), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - [114269] = 2, + ACTIONS(3972), 2, + sym__newline, + anon_sym_SEMI, + [111734] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3539), 2, - anon_sym_RPAREN, + ACTIONS(2802), 2, anon_sym_COMMA, - [114278] = 3, - ACTIONS(4049), 1, + anon_sym_RBRACK, + [111743] = 3, + ACTIONS(3974), 1, anon_sym_COMMA, - STATE(1937), 1, + STATE(1844), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114289] = 2, + [111754] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3048), 2, + ACTIONS(3976), 2, sym__newline, anon_sym_SEMI, - [114298] = 2, + [111763] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3753), 2, - anon_sym_COMMA, - anon_sym_COLON, - [114307] = 2, + ACTIONS(3978), 2, + sym__newline, + anon_sym_SEMI, + [111772] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3904), 2, + sym__dedent, + anon_sym_case, + [111781] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3058), 2, + ACTIONS(3980), 2, sym__newline, anon_sym_SEMI, - [114316] = 2, + [111790] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3301), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [114325] = 2, + ACTIONS(3536), 2, + sym__newline, + anon_sym_SEMI, + [111799] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3824), 2, - anon_sym_COMMA, - anon_sym_COLON, - [114334] = 3, - ACTIONS(4007), 1, + ACTIONS(3982), 2, + sym__newline, + anon_sym_SEMI, + [111808] = 3, + ACTIONS(3914), 1, anon_sym_LPAREN, - STATE(2298), 1, + STATE(2261), 1, sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114345] = 2, + [111819] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3824), 2, - anon_sym_RPAREN, + ACTIONS(3984), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [111828] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3742), 2, anon_sym_COMMA, - [114354] = 2, + anon_sym_COLON, + [111837] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3753), 2, - anon_sym_RPAREN, + ACTIONS(3986), 2, + sym__dedent, + anon_sym_case, + [111846] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3960), 2, anon_sym_COMMA, - [114363] = 2, + anon_sym_COLON, + [111855] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1403), 2, + ACTIONS(3422), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [114372] = 2, + anon_sym_COLON, + [111864] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1403), 2, + ACTIONS(2594), 2, anon_sym_RPAREN, anon_sym_COMMA, - [114381] = 2, + [111873] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3860), 2, - sym__newline, - anon_sym_SEMI, - [114390] = 2, + ACTIONS(3422), 2, + anon_sym_COMMA, + anon_sym_COLON, + [111882] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4051), 2, + ACTIONS(3988), 2, sym__newline, anon_sym_SEMI, - [114399] = 2, + [111891] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3943), 2, - anon_sym_RPAREN, + ACTIONS(1375), 2, anon_sym_COMMA, - [114408] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3279), 2, - anon_sym_import, - anon_sym_DOT, - [114417] = 2, + anon_sym_RBRACK, + [111900] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4053), 2, + ACTIONS(3990), 2, sym__newline, anon_sym_SEMI, - [114426] = 2, + [111909] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3793), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [114435] = 2, - ACTIONS(4055), 1, - anon_sym_COLON, + ACTIONS(3992), 2, + sym__dedent, + anon_sym_case, + [111918] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114443] = 2, - ACTIONS(4057), 1, + ACTIONS(3703), 2, + anon_sym_COMMA, anon_sym_COLON, + [111927] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114451] = 2, - ACTIONS(4059), 1, + ACTIONS(3994), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [111936] = 2, + ACTIONS(3061), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114459] = 2, - ACTIONS(4061), 1, - anon_sym_RBRACK, + [111944] = 2, + ACTIONS(2994), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114467] = 2, - ACTIONS(4063), 1, - anon_sym_RBRACK, + [111952] = 2, + ACTIONS(3996), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114475] = 2, - ACTIONS(4065), 1, - anon_sym_COLON, + [111960] = 2, + ACTIONS(3998), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114483] = 2, - ACTIONS(3117), 1, - anon_sym_RBRACE, + [111968] = 2, + ACTIONS(4000), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114491] = 2, - ACTIONS(4067), 1, - anon_sym_RPAREN, + [111976] = 2, + ACTIONS(4002), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114499] = 2, - ACTIONS(3922), 1, - anon_sym_in, + [111984] = 2, + ACTIONS(4004), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114507] = 2, - ACTIONS(4069), 1, + [111992] = 2, + ACTIONS(4006), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114515] = 2, - ACTIONS(4071), 1, + [112000] = 2, + ACTIONS(4008), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114523] = 2, - ACTIONS(4073), 1, - anon_sym_in, + [112008] = 2, + ACTIONS(4010), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114531] = 2, - ACTIONS(4075), 1, + [112016] = 2, + ACTIONS(2735), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114539] = 2, - ACTIONS(4077), 1, - anon_sym_RBRACK, + [112024] = 2, + ACTIONS(4012), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114547] = 2, - ACTIONS(4079), 1, - anon_sym_in, + [112032] = 2, + ACTIONS(4014), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114555] = 2, - ACTIONS(4081), 1, + [112040] = 2, + ACTIONS(3107), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114563] = 2, - ACTIONS(4083), 1, + [112048] = 2, + ACTIONS(3115), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114571] = 2, - ACTIONS(2876), 1, - anon_sym_RPAREN, + [112056] = 2, + ACTIONS(4016), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114579] = 2, - ACTIONS(4085), 1, - sym_identifier, + [112064] = 2, + ACTIONS(4018), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114587] = 2, - ACTIONS(4087), 1, - anon_sym_RBRACE, + [112072] = 2, + ACTIONS(4020), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114595] = 2, - ACTIONS(3111), 1, - anon_sym_COLON, + [112080] = 2, + ACTIONS(4022), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114603] = 2, - ACTIONS(3167), 1, + [112088] = 2, + ACTIONS(4024), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114611] = 2, - ACTIONS(4089), 1, - anon_sym_COLON, + [112096] = 2, + ACTIONS(4026), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114619] = 2, - ACTIONS(4091), 1, - anon_sym_COLON, + [112104] = 2, + ACTIONS(4028), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114627] = 2, - ACTIONS(4093), 1, - anon_sym_COLON, + [112112] = 2, + ACTIONS(4030), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114635] = 2, - ACTIONS(4095), 1, - anon_sym_RBRACK, + [112120] = 2, + ACTIONS(2998), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114643] = 2, - ACTIONS(3885), 1, - anon_sym_in, + [112128] = 2, + ACTIONS(4032), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114651] = 2, - ACTIONS(4097), 1, + [112136] = 2, + ACTIONS(4034), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114659] = 2, - ACTIONS(4099), 1, - anon_sym_RPAREN, + [112144] = 2, + ACTIONS(4036), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114667] = 2, - ACTIONS(4101), 1, + [112152] = 2, + ACTIONS(4038), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114675] = 2, - ACTIONS(4103), 1, - sym_identifier, + [112160] = 2, + ACTIONS(4040), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114683] = 2, - ACTIONS(4105), 1, + [112168] = 2, + ACTIONS(4042), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114691] = 2, - ACTIONS(4107), 1, - anon_sym_COLON_EQ, + [112176] = 2, + ACTIONS(4044), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114699] = 2, - ACTIONS(4109), 1, + [112184] = 2, + ACTIONS(4046), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114707] = 2, - ACTIONS(4111), 1, - anon_sym_COLON, + [112192] = 2, + ACTIONS(4048), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114715] = 2, - ACTIONS(4113), 1, - sym_identifier, + [112200] = 2, + ACTIONS(2743), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114723] = 2, - ACTIONS(4115), 1, - anon_sym_RBRACE, + [112208] = 2, + ACTIONS(4050), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114731] = 2, - ACTIONS(1324), 1, - anon_sym_def, + [112216] = 2, + ACTIONS(4052), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114739] = 2, - ACTIONS(4117), 1, + [112224] = 2, + ACTIONS(4054), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114747] = 2, - ACTIONS(4119), 1, + [112232] = 2, + ACTIONS(2713), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112240] = 2, + ACTIONS(4056), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114755] = 2, - ACTIONS(4121), 1, - anon_sym_COLON, + [112248] = 2, + ACTIONS(4058), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114763] = 2, - ACTIONS(4123), 1, + [112256] = 2, + ACTIONS(4060), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114771] = 2, - ACTIONS(4125), 1, + [112264] = 2, + ACTIONS(4062), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114779] = 2, - ACTIONS(4127), 1, + [112272] = 2, + ACTIONS(4064), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114787] = 2, - ACTIONS(4129), 1, + [112280] = 2, + ACTIONS(4066), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114795] = 2, - ACTIONS(4131), 1, - anon_sym_COLON_EQ, + [112288] = 2, + ACTIONS(3690), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114803] = 2, - ACTIONS(2882), 1, - anon_sym_RPAREN, + [112296] = 2, + ACTIONS(4068), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114811] = 2, - ACTIONS(4133), 1, - anon_sym_RPAREN, + [112304] = 2, + ACTIONS(4070), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114819] = 2, - ACTIONS(4135), 1, - anon_sym_RBRACE, + [112312] = 2, + ACTIONS(4072), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114827] = 2, - ACTIONS(4137), 1, - anon_sym_RBRACE, + [112320] = 2, + ACTIONS(4074), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114835] = 2, - ACTIONS(4139), 1, + [112328] = 2, + ACTIONS(4076), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114843] = 2, - ACTIONS(4141), 1, - anon_sym_COLON_EQ, + [112336] = 2, + ACTIONS(4078), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114851] = 2, - ACTIONS(4143), 1, + [112344] = 2, + ACTIONS(4080), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114859] = 2, - ACTIONS(4145), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114867] = 2, - ACTIONS(4147), 1, - anon_sym_RBRACK, + [112352] = 2, + ACTIONS(4082), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114875] = 2, - ACTIONS(4149), 1, + [112360] = 2, + ACTIONS(4084), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114883] = 2, - ACTIONS(4151), 1, + [112368] = 2, + ACTIONS(4086), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114891] = 2, - ACTIONS(4153), 1, + [112376] = 2, + ACTIONS(4088), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114899] = 2, - ACTIONS(4155), 1, - anon_sym_in, + [112384] = 2, + ACTIONS(4090), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114907] = 2, - ACTIONS(4157), 1, + [112392] = 2, + ACTIONS(4092), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114915] = 2, - ACTIONS(4159), 1, - sym_identifier, + [112400] = 2, + ACTIONS(3034), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114923] = 2, - ACTIONS(4161), 1, + [112408] = 2, + ACTIONS(4094), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114931] = 2, - ACTIONS(4163), 1, + [112416] = 2, + ACTIONS(4096), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114939] = 2, - ACTIONS(4165), 1, - anon_sym_RPAREN, + [112424] = 2, + ACTIONS(4098), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114947] = 2, - ACTIONS(4167), 1, - anon_sym_RBRACE, + [112432] = 2, + ACTIONS(4100), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114955] = 2, - ACTIONS(4169), 1, - anon_sym_RBRACK, + [112440] = 2, + ACTIONS(4102), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114963] = 2, - ACTIONS(4171), 1, + [112448] = 2, + ACTIONS(4104), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114971] = 2, - ACTIONS(4173), 1, + [112456] = 2, + ACTIONS(4106), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114979] = 2, - ACTIONS(3139), 1, - anon_sym_RBRACE, + [112464] = 2, + ACTIONS(4108), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114987] = 2, - ACTIONS(4175), 1, + [112472] = 2, + ACTIONS(4110), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114995] = 2, - ACTIONS(4177), 1, - anon_sym_COLON, + [112480] = 2, + ACTIONS(4112), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115003] = 2, - ACTIONS(4179), 1, + [112488] = 2, + ACTIONS(4114), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115011] = 2, - ACTIONS(4181), 1, - anon_sym_COLON_EQ, + [112496] = 2, + ACTIONS(4116), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115019] = 2, - ACTIONS(4183), 1, - anon_sym_RBRACE, + [112504] = 2, + ACTIONS(4118), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115027] = 2, - ACTIONS(4185), 1, - anon_sym_RBRACK, + [112512] = 2, + ACTIONS(1274), 1, + anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115035] = 2, - ACTIONS(4187), 1, - anon_sym_RBRACK, + [112520] = 2, + ACTIONS(4120), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115043] = 2, - ACTIONS(4189), 1, - anon_sym_RBRACK, + [112528] = 2, + ACTIONS(4122), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115051] = 2, - ACTIONS(4191), 1, - anon_sym_COLON_EQ, + [112536] = 2, + ACTIONS(4124), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115059] = 2, - ACTIONS(4193), 1, - sym_identifier, + [112544] = 2, + ACTIONS(4126), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115067] = 2, - ACTIONS(4195), 1, - anon_sym_RPAREN, + [112552] = 2, + ACTIONS(4128), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115075] = 2, - ACTIONS(2831), 1, - anon_sym_RPAREN, + [112560] = 2, + ACTIONS(4130), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115083] = 2, - ACTIONS(4197), 1, + [112568] = 2, + ACTIONS(4132), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115091] = 2, - ACTIONS(4199), 1, + [112576] = 2, + ACTIONS(3111), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115099] = 2, - ACTIONS(4201), 1, - anon_sym_RPAREN, + [112584] = 2, + ACTIONS(4134), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115107] = 2, - ACTIONS(4203), 1, + [112592] = 2, + ACTIONS(4136), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115115] = 2, - ACTIONS(3226), 1, + [112600] = 2, + ACTIONS(4138), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112608] = 2, + ACTIONS(4140), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115123] = 2, - ACTIONS(4205), 1, - anon_sym_COLON_EQ, + [112616] = 2, + ACTIONS(4142), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115131] = 2, - ACTIONS(4207), 1, + [112624] = 2, + ACTIONS(1288), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115139] = 2, - ACTIONS(4209), 1, - anon_sym_RBRACE, + [112632] = 2, + ACTIONS(4144), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115147] = 2, - ACTIONS(4211), 1, + [112640] = 2, + ACTIONS(4146), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115155] = 2, - ACTIONS(4213), 1, + [112648] = 2, + ACTIONS(4148), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115163] = 2, - ACTIONS(4215), 1, + [112656] = 2, + ACTIONS(4150), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115171] = 2, - ACTIONS(4217), 1, + [112664] = 2, + ACTIONS(4152), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115179] = 2, - ACTIONS(4219), 1, - anon_sym_RPAREN, + [112672] = 2, + ACTIONS(3591), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115187] = 2, - ACTIONS(4221), 1, - anon_sym_COLON, + [112680] = 2, + ACTIONS(4154), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115195] = 2, - ACTIONS(4223), 1, - anon_sym_import, + [112688] = 2, + ACTIONS(2731), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115203] = 2, - ACTIONS(4225), 1, - sym_identifier, + [112696] = 2, + ACTIONS(4156), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115211] = 2, - ACTIONS(3735), 1, - anon_sym_in, + [112704] = 2, + ACTIONS(4158), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115219] = 2, - ACTIONS(4227), 1, - sym_identifier, + [112712] = 2, + ACTIONS(4160), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115227] = 2, - ACTIONS(3163), 1, + [112720] = 2, + ACTIONS(4162), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115235] = 2, - ACTIONS(4229), 1, - anon_sym_in, + [112728] = 2, + ACTIONS(4164), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115243] = 2, - ACTIONS(4231), 1, + [112736] = 2, + ACTIONS(4166), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115251] = 2, - ACTIONS(4233), 1, - anon_sym_COLON, + [112744] = 2, + ACTIONS(3589), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115259] = 2, - ACTIONS(4235), 1, - sym_identifier, + [112752] = 2, + ACTIONS(4168), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115267] = 2, - ACTIONS(3727), 1, + [112760] = 2, + ACTIONS(4170), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115275] = 2, - ACTIONS(4237), 1, - anon_sym_RPAREN, + [112768] = 2, + ACTIONS(3584), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115283] = 2, - ACTIONS(4239), 1, - anon_sym_RBRACE, + [112776] = 2, + ACTIONS(4172), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115291] = 2, - ACTIONS(3113), 1, + [112784] = 2, + ACTIONS(4174), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115299] = 2, - ACTIONS(2861), 1, - anon_sym_RPAREN, + [112792] = 2, + ACTIONS(4176), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115307] = 2, - ACTIONS(4241), 1, - anon_sym_RBRACK, + [112800] = 2, + ACTIONS(3580), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115315] = 2, - ACTIONS(4243), 1, - anon_sym_RPAREN, + [112808] = 2, + ACTIONS(4178), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115323] = 2, - ACTIONS(4245), 1, + [112816] = 2, + ACTIONS(3085), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115331] = 2, - ACTIONS(4247), 1, + [112824] = 2, + ACTIONS(4180), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115339] = 2, - ACTIONS(2870), 1, - anon_sym_RPAREN, + [112832] = 2, + ACTIONS(4182), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115347] = 2, - ACTIONS(4249), 1, - anon_sym_import, + [112840] = 2, + ACTIONS(2749), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115355] = 2, - ACTIONS(4251), 1, + [112848] = 2, + ACTIONS(4184), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115363] = 2, - ACTIONS(3591), 1, - anon_sym_in, + [112856] = 2, + ACTIONS(4186), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115371] = 2, - ACTIONS(4253), 1, - anon_sym_COLON, + [112864] = 2, + ACTIONS(4188), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115379] = 2, - ACTIONS(4255), 1, + [112872] = 2, + ACTIONS(4190), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115387] = 2, - ACTIONS(4257), 1, + [112880] = 2, + ACTIONS(4192), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115395] = 2, - ACTIONS(2811), 1, + [112888] = 2, + ACTIONS(4194), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112896] = 2, + ACTIONS(2697), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115403] = 2, - ACTIONS(4259), 1, - anon_sym_COLON, + [112904] = 2, + ACTIONS(4196), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115411] = 2, - ACTIONS(1306), 1, - anon_sym_COLON, + [112912] = 2, + ACTIONS(4198), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115419] = 2, - ACTIONS(4261), 1, + [112920] = 2, + ACTIONS(4200), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115427] = 2, - ACTIONS(4263), 1, + [112928] = 2, + ACTIONS(4202), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115435] = 2, - ACTIONS(4265), 1, - anon_sym_RPAREN, + [112936] = 2, + ACTIONS(4204), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115443] = 2, - ACTIONS(2886), 1, - anon_sym_RPAREN, + [112944] = 2, + ACTIONS(4206), 1, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115451] = 2, - ACTIONS(4267), 1, - anon_sym_RBRACK, + [112952] = 2, + ACTIONS(4208), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115459] = 2, - ACTIONS(4269), 1, + [112960] = 2, + ACTIONS(4210), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115467] = 2, - ACTIONS(4271), 1, - sym_identifier, + [112968] = 2, + ACTIONS(4212), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115475] = 2, - ACTIONS(4273), 1, + [112976] = 2, + ACTIONS(3528), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115483] = 2, - ACTIONS(4275), 1, - anon_sym_import, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115491] = 2, - ACTIONS(4277), 1, + [112984] = 2, + ACTIONS(4214), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115499] = 2, - ACTIONS(4279), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115507] = 2, - ACTIONS(3687), 1, + [112992] = 2, + ACTIONS(3522), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115515] = 2, - ACTIONS(4281), 1, + [113000] = 2, + ACTIONS(4216), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115523] = 2, - ACTIONS(3685), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115531] = 2, - ACTIONS(4283), 1, + [113008] = 2, + ACTIONS(4218), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115539] = 2, - ACTIONS(4285), 1, + [113016] = 2, + ACTIONS(4220), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115547] = 2, - ACTIONS(4287), 1, - anon_sym_RBRACE, + [113024] = 2, + ACTIONS(4222), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115555] = 2, - ACTIONS(4289), 1, + [113032] = 2, + ACTIONS(4224), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115563] = 2, - ACTIONS(3194), 1, + [113040] = 2, + ACTIONS(4226), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115571] = 2, - ACTIONS(4291), 1, - anon_sym_RBRACE, + [113048] = 2, + ACTIONS(2757), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115579] = 2, - ACTIONS(4293), 1, + [113056] = 2, + ACTIONS(2980), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115587] = 2, - ACTIONS(4295), 1, - anon_sym_RPAREN, + [113064] = 2, + ACTIONS(4228), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115595] = 2, - ACTIONS(3186), 1, + [113072] = 2, + ACTIONS(4230), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115603] = 2, - ACTIONS(4297), 1, - anon_sym_COLON, + [113080] = 2, + ACTIONS(4232), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115611] = 2, - ACTIONS(4299), 1, - anon_sym_RBRACK, + [113088] = 2, + ACTIONS(4234), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115619] = 2, - ACTIONS(4301), 1, - anon_sym_RBRACK, + [113096] = 2, + ACTIONS(4236), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115627] = 2, - ACTIONS(4303), 1, - anon_sym_in, + [113104] = 2, + ACTIONS(4238), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115635] = 2, - ACTIONS(4305), 1, - anon_sym_RPAREN, + [113112] = 2, + ACTIONS(4240), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115643] = 2, - ACTIONS(4307), 1, + [113120] = 2, + ACTIONS(4242), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115651] = 2, - ACTIONS(4309), 1, - anon_sym_RPAREN, + [113128] = 2, + ACTIONS(4244), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115659] = 2, - ACTIONS(4311), 1, - sym_identifier, + [113136] = 2, + ACTIONS(4246), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115667] = 2, - ACTIONS(4313), 1, + [113144] = 2, + ACTIONS(4248), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115675] = 2, - ACTIONS(4315), 1, - anon_sym_COLON_EQ, + [113152] = 2, + ACTIONS(4250), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115683] = 2, - ACTIONS(4317), 1, - anon_sym_RBRACE, + [113160] = 2, + ACTIONS(4252), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115691] = 2, - ACTIONS(4319), 1, - sym_identifier, + [113168] = 2, + ACTIONS(4254), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115699] = 2, - ACTIONS(3198), 1, - anon_sym_RBRACE, + [113176] = 2, + ACTIONS(4256), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115707] = 2, - ACTIONS(4321), 1, + [113184] = 2, + ACTIONS(4258), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115715] = 2, - ACTIONS(4323), 1, - anon_sym_COLON, + [113192] = 2, + ACTIONS(4260), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115723] = 2, - ACTIONS(3107), 1, - anon_sym_RBRACE, + [113200] = 2, + ACTIONS(4262), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115731] = 2, - ACTIONS(4325), 1, + [113208] = 2, + ACTIONS(4264), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115739] = 2, - ACTIONS(4327), 1, - anon_sym_COLON, + [113216] = 2, + ACTIONS(3051), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115747] = 2, - ACTIONS(4329), 1, - anon_sym_COLON, + [113224] = 2, + ACTIONS(4266), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115755] = 2, - ACTIONS(4331), 1, - anon_sym_RBRACE, + [113232] = 2, + ACTIONS(4268), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115763] = 2, - ACTIONS(4333), 1, - anon_sym_RBRACK, + [113240] = 2, + ACTIONS(4270), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115771] = 2, - ACTIONS(4335), 1, - anon_sym_RBRACK, + [113248] = 2, + ACTIONS(4272), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115779] = 2, - ACTIONS(4337), 1, - anon_sym_RBRACK, + [113256] = 2, + ACTIONS(4274), 1, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115787] = 2, - ACTIONS(2827), 1, - anon_sym_RPAREN, + [113264] = 2, + ACTIONS(4276), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115795] = 2, - ACTIONS(4339), 1, - anon_sym_COLON_EQ, + [113272] = 2, + ACTIONS(4278), 1, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115803] = 2, - ACTIONS(4341), 1, + [113280] = 2, + ACTIONS(4280), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115811] = 2, - ACTIONS(4343), 1, - anon_sym_RPAREN, + [113288] = 2, + ACTIONS(4282), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115819] = 2, - ACTIONS(4345), 1, - ts_builtin_sym_end, + [113296] = 2, + ACTIONS(4284), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115827] = 2, - ACTIONS(4347), 1, - anon_sym_RBRACE, + [113304] = 2, + ACTIONS(4286), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115835] = 2, - ACTIONS(4349), 1, - anon_sym_RPAREN, + [113312] = 2, + ACTIONS(4288), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115843] = 2, - ACTIONS(4351), 1, - anon_sym_COLON, + [113320] = 2, + ACTIONS(4290), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115851] = 2, - ACTIONS(4353), 1, + [113328] = 2, + ACTIONS(4292), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115859] = 2, - ACTIONS(4355), 1, - sym_identifier, + [113336] = 2, + ACTIONS(3038), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115867] = 2, - ACTIONS(4357), 1, + [113344] = 2, + ACTIONS(4294), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115875] = 2, - ACTIONS(4359), 1, - sym_identifier, + [113352] = 2, + ACTIONS(4296), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115883] = 2, - ACTIONS(4361), 1, - anon_sym_RBRACE, + [113360] = 2, + ACTIONS(4298), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115891] = 2, - ACTIONS(4363), 1, - sym_identifier, + [113368] = 2, + ACTIONS(4300), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115899] = 2, - ACTIONS(4365), 1, - anon_sym_RBRACK, + [113376] = 2, + ACTIONS(4302), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115907] = 2, - ACTIONS(4367), 1, + [113384] = 2, + ACTIONS(4304), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115915] = 2, - ACTIONS(4369), 1, - sym_identifier, + [113392] = 2, + ACTIONS(3053), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115923] = 2, - ACTIONS(4371), 1, - anon_sym_RBRACE, + [113400] = 2, + ACTIONS(4306), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115931] = 2, - ACTIONS(4373), 1, - anon_sym_COLON, + [113408] = 2, + ACTIONS(4308), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115939] = 2, - ACTIONS(4375), 1, - anon_sym_RBRACE, + [113416] = 2, + ACTIONS(4310), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115947] = 2, - ACTIONS(4377), 1, - anon_sym_in, + [113424] = 2, + ACTIONS(4312), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115955] = 2, - ACTIONS(4379), 1, - anon_sym_COLON, + [113432] = 2, + ACTIONS(4314), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115963] = 2, - ACTIONS(4381), 1, + [113440] = 2, + ACTIONS(4316), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115971] = 2, - ACTIONS(4383), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115979] = 2, - ACTIONS(4385), 1, - anon_sym_COLON, + [113448] = 2, + ACTIONS(4318), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115987] = 2, - ACTIONS(4387), 1, - anon_sym_COLON, + [113456] = 2, + ACTIONS(4320), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115995] = 2, - ACTIONS(4389), 1, - anon_sym_RBRACE, + [113464] = 2, + ACTIONS(4322), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116003] = 2, - ACTIONS(4391), 1, + [113472] = 2, + ACTIONS(4324), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116011] = 2, - ACTIONS(4393), 1, - anon_sym_RBRACK, + [113480] = 2, + ACTIONS(2767), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116019] = 2, - ACTIONS(3216), 1, - anon_sym_RBRACE, + [113488] = 2, + ACTIONS(4326), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116027] = 2, - ACTIONS(4395), 1, + [113496] = 2, + ACTIONS(4328), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116035] = 2, - ACTIONS(4397), 1, + [113504] = 2, + ACTIONS(4330), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116043] = 2, - ACTIONS(4399), 1, + [113512] = 2, + ACTIONS(4332), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116051] = 2, - ACTIONS(4401), 1, - anon_sym_RPAREN, + [113520] = 2, + ACTIONS(4334), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116059] = 2, - ACTIONS(3601), 1, + [113528] = 2, + ACTIONS(3492), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116067] = 2, - ACTIONS(1296), 1, + [113536] = 2, + ACTIONS(1268), 1, anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116075] = 2, - ACTIONS(4403), 1, + [113544] = 2, + ACTIONS(4336), 1, anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116083] = 2, - ACTIONS(3603), 1, - anon_sym_in, + [113552] = 2, + ACTIONS(4338), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116091] = 2, - ACTIONS(3599), 1, + [113560] = 2, + ACTIONS(3490), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116099] = 2, - ACTIONS(4405), 1, + [113568] = 2, + ACTIONS(4340), 1, anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116107] = 2, - ACTIONS(4407), 1, - anon_sym_COLON, + [113576] = 2, + ACTIONS(3882), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116115] = 2, - ACTIONS(4409), 1, - anon_sym_RBRACK, + [113584] = 2, + ACTIONS(4342), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(186)] = 0, - [SMALL_STATE(187)] = 110, - [SMALL_STATE(188)] = 227, - [SMALL_STATE(189)] = 348, - [SMALL_STATE(190)] = 469, - [SMALL_STATE(191)] = 592, - [SMALL_STATE(192)] = 715, - [SMALL_STATE(193)] = 836, - [SMALL_STATE(194)] = 959, - [SMALL_STATE(195)] = 1080, - [SMALL_STATE(196)] = 1201, - [SMALL_STATE(197)] = 1322, - [SMALL_STATE(198)] = 1445, - [SMALL_STATE(199)] = 1566, - [SMALL_STATE(200)] = 1687, - [SMALL_STATE(201)] = 1808, - [SMALL_STATE(202)] = 1929, - [SMALL_STATE(203)] = 2050, - [SMALL_STATE(204)] = 2175, - [SMALL_STATE(205)] = 2296, - [SMALL_STATE(206)] = 2419, - [SMALL_STATE(207)] = 2540, - [SMALL_STATE(208)] = 2661, - [SMALL_STATE(209)] = 2784, - [SMALL_STATE(210)] = 2901, - [SMALL_STATE(211)] = 3022, - [SMALL_STATE(212)] = 3143, - [SMALL_STATE(213)] = 3268, - [SMALL_STATE(214)] = 3385, - [SMALL_STATE(215)] = 3508, - [SMALL_STATE(216)] = 3629, - [SMALL_STATE(217)] = 3752, - [SMALL_STATE(218)] = 3873, - [SMALL_STATE(219)] = 3977, - [SMALL_STATE(220)] = 4081, - [SMALL_STATE(221)] = 4194, - [SMALL_STATE(222)] = 4307, - [SMALL_STATE(223)] = 4419, - [SMALL_STATE(224)] = 4531, - [SMALL_STATE(225)] = 4633, - [SMALL_STATE(226)] = 4745, - [SMALL_STATE(227)] = 4857, - [SMALL_STATE(228)] = 4969, - [SMALL_STATE(229)] = 5081, - [SMALL_STATE(230)] = 5193, - [SMALL_STATE(231)] = 5305, - [SMALL_STATE(232)] = 5419, - [SMALL_STATE(233)] = 5521, - [SMALL_STATE(234)] = 5629, - [SMALL_STATE(235)] = 5741, - [SMALL_STATE(236)] = 5850, - [SMALL_STATE(237)] = 5959, - [SMALL_STATE(238)] = 6068, - [SMALL_STATE(239)] = 6177, - [SMALL_STATE(240)] = 6286, - [SMALL_STATE(241)] = 6397, - [SMALL_STATE(242)] = 6506, - [SMALL_STATE(243)] = 6615, - [SMALL_STATE(244)] = 6726, - [SMALL_STATE(245)] = 6835, - [SMALL_STATE(246)] = 6944, - [SMALL_STATE(247)] = 7057, - [SMALL_STATE(248)] = 7166, - [SMALL_STATE(249)] = 7275, - [SMALL_STATE(250)] = 7384, - [SMALL_STATE(251)] = 7493, - [SMALL_STATE(252)] = 7602, - [SMALL_STATE(253)] = 7711, - [SMALL_STATE(254)] = 7824, - [SMALL_STATE(255)] = 7933, - [SMALL_STATE(256)] = 8042, - [SMALL_STATE(257)] = 8151, - [SMALL_STATE(258)] = 8262, - [SMALL_STATE(259)] = 8373, - [SMALL_STATE(260)] = 8482, - [SMALL_STATE(261)] = 8591, - [SMALL_STATE(262)] = 8704, - [SMALL_STATE(263)] = 8817, - [SMALL_STATE(264)] = 8926, - [SMALL_STATE(265)] = 9037, - [SMALL_STATE(266)] = 9146, - [SMALL_STATE(267)] = 9255, - [SMALL_STATE(268)] = 9364, - [SMALL_STATE(269)] = 9473, - [SMALL_STATE(270)] = 9582, - [SMALL_STATE(271)] = 9691, - [SMALL_STATE(272)] = 9800, - [SMALL_STATE(273)] = 9909, - [SMALL_STATE(274)] = 10018, - [SMALL_STATE(275)] = 10127, - [SMALL_STATE(276)] = 10238, - [SMALL_STATE(277)] = 10347, - [SMALL_STATE(278)] = 10458, - [SMALL_STATE(279)] = 10567, - [SMALL_STATE(280)] = 10676, - [SMALL_STATE(281)] = 10785, - [SMALL_STATE(282)] = 10898, - [SMALL_STATE(283)] = 11011, - [SMALL_STATE(284)] = 11120, - [SMALL_STATE(285)] = 11229, - [SMALL_STATE(286)] = 11338, - [SMALL_STATE(287)] = 11447, - [SMALL_STATE(288)] = 11558, - [SMALL_STATE(289)] = 11667, - [SMALL_STATE(290)] = 11773, - [SMALL_STATE(291)] = 11879, - [SMALL_STATE(292)] = 11985, - [SMALL_STATE(293)] = 12091, - [SMALL_STATE(294)] = 12197, - [SMALL_STATE(295)] = 12299, - [SMALL_STATE(296)] = 12405, - [SMALL_STATE(297)] = 12511, - [SMALL_STATE(298)] = 12617, - [SMALL_STATE(299)] = 12723, - [SMALL_STATE(300)] = 12829, - [SMALL_STATE(301)] = 12935, - [SMALL_STATE(302)] = 13041, - [SMALL_STATE(303)] = 13147, - [SMALL_STATE(304)] = 13253, - [SMALL_STATE(305)] = 13359, - [SMALL_STATE(306)] = 13465, - [SMALL_STATE(307)] = 13571, - [SMALL_STATE(308)] = 13677, - [SMALL_STATE(309)] = 13779, - [SMALL_STATE(310)] = 13885, - [SMALL_STATE(311)] = 13990, - [SMALL_STATE(312)] = 14095, - [SMALL_STATE(313)] = 14198, - [SMALL_STATE(314)] = 14303, - [SMALL_STATE(315)] = 14408, - [SMALL_STATE(316)] = 14513, - [SMALL_STATE(317)] = 14618, - [SMALL_STATE(318)] = 14723, - [SMALL_STATE(319)] = 14828, - [SMALL_STATE(320)] = 14933, - [SMALL_STATE(321)] = 15038, - [SMALL_STATE(322)] = 15141, - [SMALL_STATE(323)] = 15246, - [SMALL_STATE(324)] = 15351, - [SMALL_STATE(325)] = 15454, - [SMALL_STATE(326)] = 15559, - [SMALL_STATE(327)] = 15664, - [SMALL_STATE(328)] = 15769, - [SMALL_STATE(329)] = 15874, - [SMALL_STATE(330)] = 15979, - [SMALL_STATE(331)] = 16084, - [SMALL_STATE(332)] = 16189, - [SMALL_STATE(333)] = 16294, - [SMALL_STATE(334)] = 16398, - [SMALL_STATE(335)] = 16502, - [SMALL_STATE(336)] = 16606, - [SMALL_STATE(337)] = 16710, - [SMALL_STATE(338)] = 16814, - [SMALL_STATE(339)] = 16918, - [SMALL_STATE(340)] = 17022, - [SMALL_STATE(341)] = 17126, - [SMALL_STATE(342)] = 17230, - [SMALL_STATE(343)] = 17334, - [SMALL_STATE(344)] = 17438, - [SMALL_STATE(345)] = 17542, - [SMALL_STATE(346)] = 17646, - [SMALL_STATE(347)] = 17750, - [SMALL_STATE(348)] = 17854, - [SMALL_STATE(349)] = 17958, - [SMALL_STATE(350)] = 18062, - [SMALL_STATE(351)] = 18166, - [SMALL_STATE(352)] = 18270, - [SMALL_STATE(353)] = 18374, - [SMALL_STATE(354)] = 18476, - [SMALL_STATE(355)] = 18580, - [SMALL_STATE(356)] = 18684, - [SMALL_STATE(357)] = 18786, - [SMALL_STATE(358)] = 18890, - [SMALL_STATE(359)] = 18994, - [SMALL_STATE(360)] = 19098, - [SMALL_STATE(361)] = 19202, - [SMALL_STATE(362)] = 19306, - [SMALL_STATE(363)] = 19410, - [SMALL_STATE(364)] = 19514, - [SMALL_STATE(365)] = 19618, - [SMALL_STATE(366)] = 19722, - [SMALL_STATE(367)] = 19824, - [SMALL_STATE(368)] = 19926, - [SMALL_STATE(369)] = 20028, - [SMALL_STATE(370)] = 20132, - [SMALL_STATE(371)] = 20234, - [SMALL_STATE(372)] = 20338, - [SMALL_STATE(373)] = 20442, - [SMALL_STATE(374)] = 20541, - [SMALL_STATE(375)] = 20640, - [SMALL_STATE(376)] = 20739, - [SMALL_STATE(377)] = 20840, - [SMALL_STATE(378)] = 20941, - [SMALL_STATE(379)] = 21040, - [SMALL_STATE(380)] = 21139, - [SMALL_STATE(381)] = 21238, - [SMALL_STATE(382)] = 21337, - [SMALL_STATE(383)] = 21438, - [SMALL_STATE(384)] = 21537, - [SMALL_STATE(385)] = 21638, - [SMALL_STATE(386)] = 21713, - [SMALL_STATE(387)] = 21812, - [SMALL_STATE(388)] = 21913, - [SMALL_STATE(389)] = 22012, - [SMALL_STATE(390)] = 22111, - [SMALL_STATE(391)] = 22212, - [SMALL_STATE(392)] = 22313, - [SMALL_STATE(393)] = 22414, - [SMALL_STATE(394)] = 22513, - [SMALL_STATE(395)] = 22612, - [SMALL_STATE(396)] = 22711, - [SMALL_STATE(397)] = 22810, - [SMALL_STATE(398)] = 22911, - [SMALL_STATE(399)] = 23012, - [SMALL_STATE(400)] = 23113, - [SMALL_STATE(401)] = 23212, - [SMALL_STATE(402)] = 23313, - [SMALL_STATE(403)] = 23412, - [SMALL_STATE(404)] = 23487, - [SMALL_STATE(405)] = 23588, - [SMALL_STATE(406)] = 23689, - [SMALL_STATE(407)] = 23790, - [SMALL_STATE(408)] = 23889, - [SMALL_STATE(409)] = 23988, - [SMALL_STATE(410)] = 24087, - [SMALL_STATE(411)] = 24186, - [SMALL_STATE(412)] = 24285, - [SMALL_STATE(413)] = 24386, - [SMALL_STATE(414)] = 24485, - [SMALL_STATE(415)] = 24584, - [SMALL_STATE(416)] = 24685, - [SMALL_STATE(417)] = 24784, - [SMALL_STATE(418)] = 24883, - [SMALL_STATE(419)] = 24984, - [SMALL_STATE(420)] = 25085, - [SMALL_STATE(421)] = 25184, - [SMALL_STATE(422)] = 25259, - [SMALL_STATE(423)] = 25358, - [SMALL_STATE(424)] = 25456, - [SMALL_STATE(425)] = 25554, - [SMALL_STATE(426)] = 25652, - [SMALL_STATE(427)] = 25750, - [SMALL_STATE(428)] = 25848, - [SMALL_STATE(429)] = 25946, - [SMALL_STATE(430)] = 26044, - [SMALL_STATE(431)] = 26142, - [SMALL_STATE(432)] = 26240, - [SMALL_STATE(433)] = 26338, - [SMALL_STATE(434)] = 26436, - [SMALL_STATE(435)] = 26534, - [SMALL_STATE(436)] = 26632, - [SMALL_STATE(437)] = 26730, - [SMALL_STATE(438)] = 26828, - [SMALL_STATE(439)] = 26926, - [SMALL_STATE(440)] = 27024, - [SMALL_STATE(441)] = 27122, - [SMALL_STATE(442)] = 27220, - [SMALL_STATE(443)] = 27318, - [SMALL_STATE(444)] = 27416, - [SMALL_STATE(445)] = 27514, - [SMALL_STATE(446)] = 27609, - [SMALL_STATE(447)] = 27704, - [SMALL_STATE(448)] = 27799, - [SMALL_STATE(449)] = 27894, - [SMALL_STATE(450)] = 27989, - [SMALL_STATE(451)] = 28084, - [SMALL_STATE(452)] = 28179, - [SMALL_STATE(453)] = 28274, - [SMALL_STATE(454)] = 28369, - [SMALL_STATE(455)] = 28464, - [SMALL_STATE(456)] = 28559, - [SMALL_STATE(457)] = 28654, - [SMALL_STATE(458)] = 28749, - [SMALL_STATE(459)] = 28844, - [SMALL_STATE(460)] = 28939, - [SMALL_STATE(461)] = 29034, - [SMALL_STATE(462)] = 29129, - [SMALL_STATE(463)] = 29224, - [SMALL_STATE(464)] = 29319, - [SMALL_STATE(465)] = 29414, - [SMALL_STATE(466)] = 29509, - [SMALL_STATE(467)] = 29604, - [SMALL_STATE(468)] = 29699, - [SMALL_STATE(469)] = 29794, - [SMALL_STATE(470)] = 29889, - [SMALL_STATE(471)] = 29984, - [SMALL_STATE(472)] = 30079, - [SMALL_STATE(473)] = 30174, - [SMALL_STATE(474)] = 30269, - [SMALL_STATE(475)] = 30364, - [SMALL_STATE(476)] = 30459, - [SMALL_STATE(477)] = 30554, - [SMALL_STATE(478)] = 30649, - [SMALL_STATE(479)] = 30744, - [SMALL_STATE(480)] = 30839, - [SMALL_STATE(481)] = 30934, - [SMALL_STATE(482)] = 31029, - [SMALL_STATE(483)] = 31124, - [SMALL_STATE(484)] = 31219, - [SMALL_STATE(485)] = 31314, - [SMALL_STATE(486)] = 31385, - [SMALL_STATE(487)] = 31480, - [SMALL_STATE(488)] = 31577, - [SMALL_STATE(489)] = 31672, - [SMALL_STATE(490)] = 31767, - [SMALL_STATE(491)] = 31862, - [SMALL_STATE(492)] = 31933, - [SMALL_STATE(493)] = 32028, - [SMALL_STATE(494)] = 32123, - [SMALL_STATE(495)] = 32194, - [SMALL_STATE(496)] = 32265, - [SMALL_STATE(497)] = 32360, - [SMALL_STATE(498)] = 32455, - [SMALL_STATE(499)] = 32550, - [SMALL_STATE(500)] = 32645, - [SMALL_STATE(501)] = 32740, - [SMALL_STATE(502)] = 32835, - [SMALL_STATE(503)] = 32930, - [SMALL_STATE(504)] = 33025, - [SMALL_STATE(505)] = 33120, - [SMALL_STATE(506)] = 33215, - [SMALL_STATE(507)] = 33310, - [SMALL_STATE(508)] = 33405, - [SMALL_STATE(509)] = 33500, - [SMALL_STATE(510)] = 33595, - [SMALL_STATE(511)] = 33690, - [SMALL_STATE(512)] = 33785, - [SMALL_STATE(513)] = 33880, - [SMALL_STATE(514)] = 33975, - [SMALL_STATE(515)] = 34070, - [SMALL_STATE(516)] = 34165, - [SMALL_STATE(517)] = 34260, - [SMALL_STATE(518)] = 34355, - [SMALL_STATE(519)] = 34450, - [SMALL_STATE(520)] = 34545, - [SMALL_STATE(521)] = 34640, - [SMALL_STATE(522)] = 34735, - [SMALL_STATE(523)] = 34830, - [SMALL_STATE(524)] = 34925, - [SMALL_STATE(525)] = 35020, - [SMALL_STATE(526)] = 35091, - [SMALL_STATE(527)] = 35186, - [SMALL_STATE(528)] = 35281, - [SMALL_STATE(529)] = 35376, - [SMALL_STATE(530)] = 35447, - [SMALL_STATE(531)] = 35542, - [SMALL_STATE(532)] = 35637, - [SMALL_STATE(533)] = 35732, - [SMALL_STATE(534)] = 35827, - [SMALL_STATE(535)] = 35922, - [SMALL_STATE(536)] = 36017, - [SMALL_STATE(537)] = 36112, - [SMALL_STATE(538)] = 36207, - [SMALL_STATE(539)] = 36302, - [SMALL_STATE(540)] = 36397, - [SMALL_STATE(541)] = 36492, - [SMALL_STATE(542)] = 36587, - [SMALL_STATE(543)] = 36682, - [SMALL_STATE(544)] = 36777, - [SMALL_STATE(545)] = 36872, - [SMALL_STATE(546)] = 36967, - [SMALL_STATE(547)] = 37062, - [SMALL_STATE(548)] = 37157, - [SMALL_STATE(549)] = 37252, - [SMALL_STATE(550)] = 37347, - [SMALL_STATE(551)] = 37442, - [SMALL_STATE(552)] = 37537, - [SMALL_STATE(553)] = 37632, - [SMALL_STATE(554)] = 37727, - [SMALL_STATE(555)] = 37822, - [SMALL_STATE(556)] = 37917, - [SMALL_STATE(557)] = 38012, - [SMALL_STATE(558)] = 38107, - [SMALL_STATE(559)] = 38202, - [SMALL_STATE(560)] = 38297, - [SMALL_STATE(561)] = 38392, - [SMALL_STATE(562)] = 38487, - [SMALL_STATE(563)] = 38582, - [SMALL_STATE(564)] = 38677, - [SMALL_STATE(565)] = 38772, - [SMALL_STATE(566)] = 38867, - [SMALL_STATE(567)] = 38962, - [SMALL_STATE(568)] = 39057, - [SMALL_STATE(569)] = 39152, - [SMALL_STATE(570)] = 39247, - [SMALL_STATE(571)] = 39342, - [SMALL_STATE(572)] = 39437, - [SMALL_STATE(573)] = 39534, - [SMALL_STATE(574)] = 39629, - [SMALL_STATE(575)] = 39724, - [SMALL_STATE(576)] = 39819, - [SMALL_STATE(577)] = 39914, - [SMALL_STATE(578)] = 40009, - [SMALL_STATE(579)] = 40104, - [SMALL_STATE(580)] = 40199, - [SMALL_STATE(581)] = 40294, - [SMALL_STATE(582)] = 40389, - [SMALL_STATE(583)] = 40484, - [SMALL_STATE(584)] = 40579, - [SMALL_STATE(585)] = 40674, - [SMALL_STATE(586)] = 40769, - [SMALL_STATE(587)] = 40864, - [SMALL_STATE(588)] = 40959, - [SMALL_STATE(589)] = 41054, - [SMALL_STATE(590)] = 41151, - [SMALL_STATE(591)] = 41246, - [SMALL_STATE(592)] = 41341, - [SMALL_STATE(593)] = 41436, - [SMALL_STATE(594)] = 41531, - [SMALL_STATE(595)] = 41626, - [SMALL_STATE(596)] = 41721, - [SMALL_STATE(597)] = 41816, - [SMALL_STATE(598)] = 41911, - [SMALL_STATE(599)] = 42006, - [SMALL_STATE(600)] = 42101, - [SMALL_STATE(601)] = 42196, - [SMALL_STATE(602)] = 42291, - [SMALL_STATE(603)] = 42386, - [SMALL_STATE(604)] = 42481, - [SMALL_STATE(605)] = 42576, - [SMALL_STATE(606)] = 42671, - [SMALL_STATE(607)] = 42766, - [SMALL_STATE(608)] = 42861, - [SMALL_STATE(609)] = 42956, - [SMALL_STATE(610)] = 43051, - [SMALL_STATE(611)] = 43146, - [SMALL_STATE(612)] = 43241, - [SMALL_STATE(613)] = 43336, - [SMALL_STATE(614)] = 43433, - [SMALL_STATE(615)] = 43528, - [SMALL_STATE(616)] = 43623, - [SMALL_STATE(617)] = 43718, - [SMALL_STATE(618)] = 43813, - [SMALL_STATE(619)] = 43908, - [SMALL_STATE(620)] = 44003, - [SMALL_STATE(621)] = 44098, - [SMALL_STATE(622)] = 44193, - [SMALL_STATE(623)] = 44288, - [SMALL_STATE(624)] = 44383, - [SMALL_STATE(625)] = 44478, - [SMALL_STATE(626)] = 44573, - [SMALL_STATE(627)] = 44670, - [SMALL_STATE(628)] = 44765, - [SMALL_STATE(629)] = 44860, - [SMALL_STATE(630)] = 44955, - [SMALL_STATE(631)] = 45026, - [SMALL_STATE(632)] = 45121, - [SMALL_STATE(633)] = 45218, - [SMALL_STATE(634)] = 45313, - [SMALL_STATE(635)] = 45408, - [SMALL_STATE(636)] = 45503, - [SMALL_STATE(637)] = 45598, - [SMALL_STATE(638)] = 45693, - [SMALL_STATE(639)] = 45788, - [SMALL_STATE(640)] = 45883, - [SMALL_STATE(641)] = 45978, - [SMALL_STATE(642)] = 46049, - [SMALL_STATE(643)] = 46144, - [SMALL_STATE(644)] = 46239, - [SMALL_STATE(645)] = 46334, - [SMALL_STATE(646)] = 46429, - [SMALL_STATE(647)] = 46524, - [SMALL_STATE(648)] = 46619, - [SMALL_STATE(649)] = 46714, - [SMALL_STATE(650)] = 46809, - [SMALL_STATE(651)] = 46875, - [SMALL_STATE(652)] = 46941, - [SMALL_STATE(653)] = 47008, - [SMALL_STATE(654)] = 47065, - [SMALL_STATE(655)] = 47132, - [SMALL_STATE(656)] = 47199, - [SMALL_STATE(657)] = 47266, - [SMALL_STATE(658)] = 47327, - [SMALL_STATE(659)] = 47388, - [SMALL_STATE(660)] = 47445, - [SMALL_STATE(661)] = 47508, - [SMALL_STATE(662)] = 47571, - [SMALL_STATE(663)] = 47638, - [SMALL_STATE(664)] = 47695, - [SMALL_STATE(665)] = 47762, - [SMALL_STATE(666)] = 47823, - [SMALL_STATE(667)] = 47886, - [SMALL_STATE(668)] = 47947, - [SMALL_STATE(669)] = 48004, - [SMALL_STATE(670)] = 48071, - [SMALL_STATE(671)] = 48138, - [SMALL_STATE(672)] = 48195, - [SMALL_STATE(673)] = 48252, - [SMALL_STATE(674)] = 48309, - [SMALL_STATE(675)] = 48370, - [SMALL_STATE(676)] = 48433, - [SMALL_STATE(677)] = 48494, - [SMALL_STATE(678)] = 48550, - [SMALL_STATE(679)] = 48606, - [SMALL_STATE(680)] = 48668, - [SMALL_STATE(681)] = 48724, - [SMALL_STATE(682)] = 48780, - [SMALL_STATE(683)] = 48836, - [SMALL_STATE(684)] = 48898, - [SMALL_STATE(685)] = 48954, - [SMALL_STATE(686)] = 49010, - [SMALL_STATE(687)] = 49066, - [SMALL_STATE(688)] = 49122, - [SMALL_STATE(689)] = 49178, - [SMALL_STATE(690)] = 49233, - [SMALL_STATE(691)] = 49288, - [SMALL_STATE(692)] = 49343, - [SMALL_STATE(693)] = 49398, - [SMALL_STATE(694)] = 49453, - [SMALL_STATE(695)] = 49508, - [SMALL_STATE(696)] = 49563, - [SMALL_STATE(697)] = 49618, - [SMALL_STATE(698)] = 49673, - [SMALL_STATE(699)] = 49734, - [SMALL_STATE(700)] = 49789, - [SMALL_STATE(701)] = 49844, - [SMALL_STATE(702)] = 49899, - [SMALL_STATE(703)] = 49954, - [SMALL_STATE(704)] = 50009, - [SMALL_STATE(705)] = 50064, - [SMALL_STATE(706)] = 50119, - [SMALL_STATE(707)] = 50174, - [SMALL_STATE(708)] = 50229, - [SMALL_STATE(709)] = 50290, - [SMALL_STATE(710)] = 50379, - [SMALL_STATE(711)] = 50440, - [SMALL_STATE(712)] = 50495, - [SMALL_STATE(713)] = 50550, - [SMALL_STATE(714)] = 50605, - [SMALL_STATE(715)] = 50660, - [SMALL_STATE(716)] = 50715, - [SMALL_STATE(717)] = 50770, - [SMALL_STATE(718)] = 50831, - [SMALL_STATE(719)] = 50886, - [SMALL_STATE(720)] = 50947, - [SMALL_STATE(721)] = 51002, - [SMALL_STATE(722)] = 51063, - [SMALL_STATE(723)] = 51124, - [SMALL_STATE(724)] = 51213, - [SMALL_STATE(725)] = 51268, - [SMALL_STATE(726)] = 51323, - [SMALL_STATE(727)] = 51384, - [SMALL_STATE(728)] = 51439, - [SMALL_STATE(729)] = 51494, - [SMALL_STATE(730)] = 51549, - [SMALL_STATE(731)] = 51604, - [SMALL_STATE(732)] = 51665, - [SMALL_STATE(733)] = 51726, - [SMALL_STATE(734)] = 51787, - [SMALL_STATE(735)] = 51842, - [SMALL_STATE(736)] = 51897, - [SMALL_STATE(737)] = 51958, - [SMALL_STATE(738)] = 52019, - [SMALL_STATE(739)] = 52080, - [SMALL_STATE(740)] = 52141, - [SMALL_STATE(741)] = 52202, - [SMALL_STATE(742)] = 52257, - [SMALL_STATE(743)] = 52312, - [SMALL_STATE(744)] = 52367, - [SMALL_STATE(745)] = 52422, - [SMALL_STATE(746)] = 52477, - [SMALL_STATE(747)] = 52538, - [SMALL_STATE(748)] = 52599, - [SMALL_STATE(749)] = 52654, - [SMALL_STATE(750)] = 52708, - [SMALL_STATE(751)] = 52766, - [SMALL_STATE(752)] = 52824, - [SMALL_STATE(753)] = 52882, - [SMALL_STATE(754)] = 52940, - [SMALL_STATE(755)] = 52998, - [SMALL_STATE(756)] = 53052, - [SMALL_STATE(757)] = 53110, - [SMALL_STATE(758)] = 53168, - [SMALL_STATE(759)] = 53222, - [SMALL_STATE(760)] = 53280, - [SMALL_STATE(761)] = 53338, - [SMALL_STATE(762)] = 53392, - [SMALL_STATE(763)] = 53450, - [SMALL_STATE(764)] = 53508, - [SMALL_STATE(765)] = 53566, - [SMALL_STATE(766)] = 53620, - [SMALL_STATE(767)] = 53678, - [SMALL_STATE(768)] = 53736, - [SMALL_STATE(769)] = 53790, - [SMALL_STATE(770)] = 53848, - [SMALL_STATE(771)] = 53906, - [SMALL_STATE(772)] = 53959, - [SMALL_STATE(773)] = 54012, - [SMALL_STATE(774)] = 54065, - [SMALL_STATE(775)] = 54118, - [SMALL_STATE(776)] = 54171, - [SMALL_STATE(777)] = 54224, - [SMALL_STATE(778)] = 54277, - [SMALL_STATE(779)] = 54330, - [SMALL_STATE(780)] = 54383, - [SMALL_STATE(781)] = 54436, - [SMALL_STATE(782)] = 54489, - [SMALL_STATE(783)] = 54542, - [SMALL_STATE(784)] = 54595, - [SMALL_STATE(785)] = 54648, - [SMALL_STATE(786)] = 54701, - [SMALL_STATE(787)] = 54754, - [SMALL_STATE(788)] = 54807, - [SMALL_STATE(789)] = 54860, - [SMALL_STATE(790)] = 54913, - [SMALL_STATE(791)] = 54966, - [SMALL_STATE(792)] = 55019, - [SMALL_STATE(793)] = 55072, - [SMALL_STATE(794)] = 55125, - [SMALL_STATE(795)] = 55178, - [SMALL_STATE(796)] = 55231, - [SMALL_STATE(797)] = 55284, - [SMALL_STATE(798)] = 55337, - [SMALL_STATE(799)] = 55390, - [SMALL_STATE(800)] = 55443, - [SMALL_STATE(801)] = 55496, - [SMALL_STATE(802)] = 55549, - [SMALL_STATE(803)] = 55602, - [SMALL_STATE(804)] = 55655, - [SMALL_STATE(805)] = 55744, - [SMALL_STATE(806)] = 55797, - [SMALL_STATE(807)] = 55850, - [SMALL_STATE(808)] = 55903, - [SMALL_STATE(809)] = 55956, - [SMALL_STATE(810)] = 56009, - [SMALL_STATE(811)] = 56062, - [SMALL_STATE(812)] = 56151, - [SMALL_STATE(813)] = 56204, - [SMALL_STATE(814)] = 56257, - [SMALL_STATE(815)] = 56310, - [SMALL_STATE(816)] = 56363, - [SMALL_STATE(817)] = 56416, - [SMALL_STATE(818)] = 56469, - [SMALL_STATE(819)] = 56522, - [SMALL_STATE(820)] = 56574, - [SMALL_STATE(821)] = 56660, - [SMALL_STATE(822)] = 56712, - [SMALL_STATE(823)] = 56764, - [SMALL_STATE(824)] = 56816, - [SMALL_STATE(825)] = 56868, - [SMALL_STATE(826)] = 56920, - [SMALL_STATE(827)] = 56972, - [SMALL_STATE(828)] = 57024, - [SMALL_STATE(829)] = 57076, - [SMALL_STATE(830)] = 57128, - [SMALL_STATE(831)] = 57180, - [SMALL_STATE(832)] = 57232, - [SMALL_STATE(833)] = 57284, - [SMALL_STATE(834)] = 57336, - [SMALL_STATE(835)] = 57388, - [SMALL_STATE(836)] = 57440, - [SMALL_STATE(837)] = 57492, - [SMALL_STATE(838)] = 57544, - [SMALL_STATE(839)] = 57596, - [SMALL_STATE(840)] = 57648, - [SMALL_STATE(841)] = 57734, - [SMALL_STATE(842)] = 57786, - [SMALL_STATE(843)] = 57838, - [SMALL_STATE(844)] = 57924, - [SMALL_STATE(845)] = 57976, - [SMALL_STATE(846)] = 58028, - [SMALL_STATE(847)] = 58080, - [SMALL_STATE(848)] = 58166, - [SMALL_STATE(849)] = 58218, - [SMALL_STATE(850)] = 58270, - [SMALL_STATE(851)] = 58322, - [SMALL_STATE(852)] = 58408, - [SMALL_STATE(853)] = 58460, - [SMALL_STATE(854)] = 58546, - [SMALL_STATE(855)] = 58598, - [SMALL_STATE(856)] = 58650, - [SMALL_STATE(857)] = 58736, - [SMALL_STATE(858)] = 58788, - [SMALL_STATE(859)] = 58840, - [SMALL_STATE(860)] = 58926, - [SMALL_STATE(861)] = 59012, - [SMALL_STATE(862)] = 59064, - [SMALL_STATE(863)] = 59116, - [SMALL_STATE(864)] = 59202, - [SMALL_STATE(865)] = 59288, - [SMALL_STATE(866)] = 59374, - [SMALL_STATE(867)] = 59426, - [SMALL_STATE(868)] = 59478, - [SMALL_STATE(869)] = 59530, - [SMALL_STATE(870)] = 59582, - [SMALL_STATE(871)] = 59634, - [SMALL_STATE(872)] = 59686, - [SMALL_STATE(873)] = 59738, - [SMALL_STATE(874)] = 59790, - [SMALL_STATE(875)] = 59842, - [SMALL_STATE(876)] = 59894, - [SMALL_STATE(877)] = 59946, - [SMALL_STATE(878)] = 59998, - [SMALL_STATE(879)] = 60050, - [SMALL_STATE(880)] = 60102, - [SMALL_STATE(881)] = 60154, - [SMALL_STATE(882)] = 60206, - [SMALL_STATE(883)] = 60292, - [SMALL_STATE(884)] = 60344, - [SMALL_STATE(885)] = 60430, - [SMALL_STATE(886)] = 60482, - [SMALL_STATE(887)] = 60534, - [SMALL_STATE(888)] = 60586, - [SMALL_STATE(889)] = 60638, - [SMALL_STATE(890)] = 60690, - [SMALL_STATE(891)] = 60742, - [SMALL_STATE(892)] = 60794, - [SMALL_STATE(893)] = 60846, - [SMALL_STATE(894)] = 60898, - [SMALL_STATE(895)] = 60984, - [SMALL_STATE(896)] = 61070, - [SMALL_STATE(897)] = 61122, - [SMALL_STATE(898)] = 61174, - [SMALL_STATE(899)] = 61226, - [SMALL_STATE(900)] = 61278, - [SMALL_STATE(901)] = 61330, - [SMALL_STATE(902)] = 61382, - [SMALL_STATE(903)] = 61434, - [SMALL_STATE(904)] = 61486, - [SMALL_STATE(905)] = 61538, - [SMALL_STATE(906)] = 61621, - [SMALL_STATE(907)] = 61704, - [SMALL_STATE(908)] = 61787, - [SMALL_STATE(909)] = 61870, - [SMALL_STATE(910)] = 61953, - [SMALL_STATE(911)] = 62036, - [SMALL_STATE(912)] = 62116, - [SMALL_STATE(913)] = 62196, - [SMALL_STATE(914)] = 62271, - [SMALL_STATE(915)] = 62346, - [SMALL_STATE(916)] = 62421, - [SMALL_STATE(917)] = 62496, - [SMALL_STATE(918)] = 62571, - [SMALL_STATE(919)] = 62646, - [SMALL_STATE(920)] = 62721, - [SMALL_STATE(921)] = 62796, - [SMALL_STATE(922)] = 62868, - [SMALL_STATE(923)] = 62940, - [SMALL_STATE(924)] = 63012, - [SMALL_STATE(925)] = 63084, - [SMALL_STATE(926)] = 63156, - [SMALL_STATE(927)] = 63228, - [SMALL_STATE(928)] = 63300, - [SMALL_STATE(929)] = 63372, - [SMALL_STATE(930)] = 63444, - [SMALL_STATE(931)] = 63516, - [SMALL_STATE(932)] = 63588, - [SMALL_STATE(933)] = 63660, - [SMALL_STATE(934)] = 63732, - [SMALL_STATE(935)] = 63804, - [SMALL_STATE(936)] = 63876, - [SMALL_STATE(937)] = 63948, - [SMALL_STATE(938)] = 64020, - [SMALL_STATE(939)] = 64092, - [SMALL_STATE(940)] = 64164, - [SMALL_STATE(941)] = 64236, - [SMALL_STATE(942)] = 64308, - [SMALL_STATE(943)] = 64380, - [SMALL_STATE(944)] = 64452, - [SMALL_STATE(945)] = 64524, - [SMALL_STATE(946)] = 64596, - [SMALL_STATE(947)] = 64668, - [SMALL_STATE(948)] = 64740, - [SMALL_STATE(949)] = 64812, - [SMALL_STATE(950)] = 64884, - [SMALL_STATE(951)] = 64956, - [SMALL_STATE(952)] = 65028, - [SMALL_STATE(953)] = 65100, - [SMALL_STATE(954)] = 65172, - [SMALL_STATE(955)] = 65244, - [SMALL_STATE(956)] = 65316, - [SMALL_STATE(957)] = 65388, - [SMALL_STATE(958)] = 65460, - [SMALL_STATE(959)] = 65532, - [SMALL_STATE(960)] = 65604, - [SMALL_STATE(961)] = 65676, - [SMALL_STATE(962)] = 65748, - [SMALL_STATE(963)] = 65820, - [SMALL_STATE(964)] = 65892, - [SMALL_STATE(965)] = 65964, - [SMALL_STATE(966)] = 66036, - [SMALL_STATE(967)] = 66108, - [SMALL_STATE(968)] = 66184, - [SMALL_STATE(969)] = 66256, - [SMALL_STATE(970)] = 66328, - [SMALL_STATE(971)] = 66404, - [SMALL_STATE(972)] = 66476, - [SMALL_STATE(973)] = 66548, - [SMALL_STATE(974)] = 66620, - [SMALL_STATE(975)] = 66692, - [SMALL_STATE(976)] = 66768, - [SMALL_STATE(977)] = 66840, - [SMALL_STATE(978)] = 66912, - [SMALL_STATE(979)] = 66984, - [SMALL_STATE(980)] = 67056, - [SMALL_STATE(981)] = 67132, - [SMALL_STATE(982)] = 67204, - [SMALL_STATE(983)] = 67276, - [SMALL_STATE(984)] = 67348, - [SMALL_STATE(985)] = 67420, - [SMALL_STATE(986)] = 67492, - [SMALL_STATE(987)] = 67564, - [SMALL_STATE(988)] = 67636, - [SMALL_STATE(989)] = 67708, - [SMALL_STATE(990)] = 67780, - [SMALL_STATE(991)] = 67852, - [SMALL_STATE(992)] = 67924, - [SMALL_STATE(993)] = 67996, - [SMALL_STATE(994)] = 68068, - [SMALL_STATE(995)] = 68140, - [SMALL_STATE(996)] = 68212, - [SMALL_STATE(997)] = 68284, - [SMALL_STATE(998)] = 68360, - [SMALL_STATE(999)] = 68432, - [SMALL_STATE(1000)] = 68508, - [SMALL_STATE(1001)] = 68580, - [SMALL_STATE(1002)] = 68652, - [SMALL_STATE(1003)] = 68724, - [SMALL_STATE(1004)] = 68796, - [SMALL_STATE(1005)] = 68868, - [SMALL_STATE(1006)] = 68940, - [SMALL_STATE(1007)] = 69016, - [SMALL_STATE(1008)] = 69088, - [SMALL_STATE(1009)] = 69164, - [SMALL_STATE(1010)] = 69236, - [SMALL_STATE(1011)] = 69312, - [SMALL_STATE(1012)] = 69388, - [SMALL_STATE(1013)] = 69460, - [SMALL_STATE(1014)] = 69532, - [SMALL_STATE(1015)] = 69604, - [SMALL_STATE(1016)] = 69676, - [SMALL_STATE(1017)] = 69748, - [SMALL_STATE(1018)] = 69820, - [SMALL_STATE(1019)] = 69892, - [SMALL_STATE(1020)] = 69964, - [SMALL_STATE(1021)] = 70036, - [SMALL_STATE(1022)] = 70108, - [SMALL_STATE(1023)] = 70180, - [SMALL_STATE(1024)] = 70252, - [SMALL_STATE(1025)] = 70328, - [SMALL_STATE(1026)] = 70404, - [SMALL_STATE(1027)] = 70476, - [SMALL_STATE(1028)] = 70552, - [SMALL_STATE(1029)] = 70624, - [SMALL_STATE(1030)] = 70700, - [SMALL_STATE(1031)] = 70776, - [SMALL_STATE(1032)] = 70848, - [SMALL_STATE(1033)] = 70899, - [SMALL_STATE(1034)] = 70980, - [SMALL_STATE(1035)] = 71031, - [SMALL_STATE(1036)] = 71082, - [SMALL_STATE(1037)] = 71163, - [SMALL_STATE(1038)] = 71214, - [SMALL_STATE(1039)] = 71295, - [SMALL_STATE(1040)] = 71346, - [SMALL_STATE(1041)] = 71397, - [SMALL_STATE(1042)] = 71448, - [SMALL_STATE(1043)] = 71499, - [SMALL_STATE(1044)] = 71550, - [SMALL_STATE(1045)] = 71631, - [SMALL_STATE(1046)] = 71712, - [SMALL_STATE(1047)] = 71793, - [SMALL_STATE(1048)] = 71843, - [SMALL_STATE(1049)] = 71923, - [SMALL_STATE(1050)] = 71993, - [SMALL_STATE(1051)] = 72057, - [SMALL_STATE(1052)] = 72127, - [SMALL_STATE(1053)] = 72193, - [SMALL_STATE(1054)] = 72261, - [SMALL_STATE(1055)] = 72317, - [SMALL_STATE(1056)] = 72377, - [SMALL_STATE(1057)] = 72437, - [SMALL_STATE(1058)] = 72493, - [SMALL_STATE(1059)] = 72543, - [SMALL_STATE(1060)] = 72623, - [SMALL_STATE(1061)] = 72693, - [SMALL_STATE(1062)] = 72755, - [SMALL_STATE(1063)] = 72811, - [SMALL_STATE(1064)] = 72891, - [SMALL_STATE(1065)] = 72953, - [SMALL_STATE(1066)] = 73023, - [SMALL_STATE(1067)] = 73093, - [SMALL_STATE(1068)] = 73149, - [SMALL_STATE(1069)] = 73217, - [SMALL_STATE(1070)] = 73263, - [SMALL_STATE(1071)] = 73309, - [SMALL_STATE(1072)] = 73359, - [SMALL_STATE(1073)] = 73405, - [SMALL_STATE(1074)] = 73455, - [SMALL_STATE(1075)] = 73501, - [SMALL_STATE(1076)] = 73547, - [SMALL_STATE(1077)] = 73617, - [SMALL_STATE(1078)] = 73673, - [SMALL_STATE(1079)] = 73729, - [SMALL_STATE(1080)] = 73809, - [SMALL_STATE(1081)] = 73879, - [SMALL_STATE(1082)] = 73925, - [SMALL_STATE(1083)] = 73989, - [SMALL_STATE(1084)] = 74055, - [SMALL_STATE(1085)] = 74123, - [SMALL_STATE(1086)] = 74179, - [SMALL_STATE(1087)] = 74239, - [SMALL_STATE(1088)] = 74289, - [SMALL_STATE(1089)] = 74345, - [SMALL_STATE(1090)] = 74415, - [SMALL_STATE(1091)] = 74465, - [SMALL_STATE(1092)] = 74527, - [SMALL_STATE(1093)] = 74583, - [SMALL_STATE(1094)] = 74649, - [SMALL_STATE(1095)] = 74713, - [SMALL_STATE(1096)] = 74763, - [SMALL_STATE(1097)] = 74833, - [SMALL_STATE(1098)] = 74879, - [SMALL_STATE(1099)] = 74959, - [SMALL_STATE(1100)] = 75009, - [SMALL_STATE(1101)] = 75059, - [SMALL_STATE(1102)] = 75139, - [SMALL_STATE(1103)] = 75202, - [SMALL_STATE(1104)] = 75267, - [SMALL_STATE(1105)] = 75346, - [SMALL_STATE(1106)] = 75395, - [SMALL_STATE(1107)] = 75444, - [SMALL_STATE(1108)] = 75521, - [SMALL_STATE(1109)] = 75566, - [SMALL_STATE(1110)] = 75635, - [SMALL_STATE(1111)] = 75702, - [SMALL_STATE(1112)] = 75757, - [SMALL_STATE(1113)] = 75804, - [SMALL_STATE(1114)] = 75863, - [SMALL_STATE(1115)] = 75918, - [SMALL_STATE(1116)] = 75987, - [SMALL_STATE(1117)] = 76056, - [SMALL_STATE(1118)] = 76111, - [SMALL_STATE(1119)] = 76172, - [SMALL_STATE(1120)] = 76227, - [SMALL_STATE(1121)] = 76288, - [SMALL_STATE(1122)] = 76343, - [SMALL_STATE(1123)] = 76402, - [SMALL_STATE(1124)] = 76469, - [SMALL_STATE(1125)] = 76516, - [SMALL_STATE(1126)] = 76563, - [SMALL_STATE(1127)] = 76632, - [SMALL_STATE(1128)] = 76701, - [SMALL_STATE(1129)] = 76770, - [SMALL_STATE(1130)] = 76815, - [SMALL_STATE(1131)] = 76878, - [SMALL_STATE(1132)] = 76943, - [SMALL_STATE(1133)] = 76992, - [SMALL_STATE(1134)] = 77057, - [SMALL_STATE(1135)] = 77124, - [SMALL_STATE(1136)] = 77183, - [SMALL_STATE(1137)] = 77238, - [SMALL_STATE(1138)] = 77287, - [SMALL_STATE(1139)] = 77356, - [SMALL_STATE(1140)] = 77411, - [SMALL_STATE(1141)] = 77472, - [SMALL_STATE(1142)] = 77527, - [SMALL_STATE(1143)] = 77574, - [SMALL_STATE(1144)] = 77621, - [SMALL_STATE(1145)] = 77676, - [SMALL_STATE(1146)] = 77723, - [SMALL_STATE(1147)] = 77770, - [SMALL_STATE(1148)] = 77817, - [SMALL_STATE(1149)] = 77866, - [SMALL_STATE(1150)] = 77935, - [SMALL_STATE(1151)] = 78004, - [SMALL_STATE(1152)] = 78053, - [SMALL_STATE(1153)] = 78132, - [SMALL_STATE(1154)] = 78209, - [SMALL_STATE(1155)] = 78264, - [SMALL_STATE(1156)] = 78327, - [SMALL_STATE(1157)] = 78372, - [SMALL_STATE(1158)] = 78421, - [SMALL_STATE(1159)] = 78466, - [SMALL_STATE(1160)] = 78521, - [SMALL_STATE(1161)] = 78570, - [SMALL_STATE(1162)] = 78647, - [SMALL_STATE(1163)] = 78692, - [SMALL_STATE(1164)] = 78737, - [SMALL_STATE(1165)] = 78786, - [SMALL_STATE(1166)] = 78835, - [SMALL_STATE(1167)] = 78886, - [SMALL_STATE(1168)] = 78937, - [SMALL_STATE(1169)] = 78992, - [SMALL_STATE(1170)] = 79039, - [SMALL_STATE(1171)] = 79083, - [SMALL_STATE(1172)] = 79127, - [SMALL_STATE(1173)] = 79171, - [SMALL_STATE(1174)] = 79219, - [SMALL_STATE(1175)] = 79265, - [SMALL_STATE(1176)] = 79311, - [SMALL_STATE(1177)] = 79357, - [SMALL_STATE(1178)] = 79403, - [SMALL_STATE(1179)] = 79447, - [SMALL_STATE(1180)] = 79491, - [SMALL_STATE(1181)] = 79535, - [SMALL_STATE(1182)] = 79579, - [SMALL_STATE(1183)] = 79633, - [SMALL_STATE(1184)] = 79685, - [SMALL_STATE(1185)] = 79739, - [SMALL_STATE(1186)] = 79791, - [SMALL_STATE(1187)] = 79837, - [SMALL_STATE(1188)] = 79897, - [SMALL_STATE(1189)] = 79965, - [SMALL_STATE(1190)] = 80041, - [SMALL_STATE(1191)] = 80095, - [SMALL_STATE(1192)] = 80153, - [SMALL_STATE(1193)] = 80197, - [SMALL_STATE(1194)] = 80241, - [SMALL_STATE(1195)] = 80307, - [SMALL_STATE(1196)] = 80357, - [SMALL_STATE(1197)] = 80405, - [SMALL_STATE(1198)] = 80451, - [SMALL_STATE(1199)] = 80503, - [SMALL_STATE(1200)] = 80555, - [SMALL_STATE(1201)] = 80619, - [SMALL_STATE(1202)] = 80681, - [SMALL_STATE(1203)] = 80725, - [SMALL_STATE(1204)] = 80769, - [SMALL_STATE(1205)] = 80813, - [SMALL_STATE(1206)] = 80857, - [SMALL_STATE(1207)] = 80901, - [SMALL_STATE(1208)] = 80945, - [SMALL_STATE(1209)] = 81013, - [SMALL_STATE(1210)] = 81057, - [SMALL_STATE(1211)] = 81101, - [SMALL_STATE(1212)] = 81145, - [SMALL_STATE(1213)] = 81189, - [SMALL_STATE(1214)] = 81233, - [SMALL_STATE(1215)] = 81301, - [SMALL_STATE(1216)] = 81345, - [SMALL_STATE(1217)] = 81397, - [SMALL_STATE(1218)] = 81441, - [SMALL_STATE(1219)] = 81485, - [SMALL_STATE(1220)] = 81529, - [SMALL_STATE(1221)] = 81573, - [SMALL_STATE(1222)] = 81623, - [SMALL_STATE(1223)] = 81667, - [SMALL_STATE(1224)] = 81711, - [SMALL_STATE(1225)] = 81755, - [SMALL_STATE(1226)] = 81803, - [SMALL_STATE(1227)] = 81847, - [SMALL_STATE(1228)] = 81893, - [SMALL_STATE(1229)] = 81937, - [SMALL_STATE(1230)] = 81981, - [SMALL_STATE(1231)] = 82025, - [SMALL_STATE(1232)] = 82069, - [SMALL_STATE(1233)] = 82113, - [SMALL_STATE(1234)] = 82157, - [SMALL_STATE(1235)] = 82233, - [SMALL_STATE(1236)] = 82281, - [SMALL_STATE(1237)] = 82325, - [SMALL_STATE(1238)] = 82369, - [SMALL_STATE(1239)] = 82413, - [SMALL_STATE(1240)] = 82467, - [SMALL_STATE(1241)] = 82515, - [SMALL_STATE(1242)] = 82567, - [SMALL_STATE(1243)] = 82611, - [SMALL_STATE(1244)] = 82655, - [SMALL_STATE(1245)] = 82699, - [SMALL_STATE(1246)] = 82753, - [SMALL_STATE(1247)] = 82797, - [SMALL_STATE(1248)] = 82851, - [SMALL_STATE(1249)] = 82895, - [SMALL_STATE(1250)] = 82939, - [SMALL_STATE(1251)] = 82987, - [SMALL_STATE(1252)] = 83041, - [SMALL_STATE(1253)] = 83085, - [SMALL_STATE(1254)] = 83129, - [SMALL_STATE(1255)] = 83173, - [SMALL_STATE(1256)] = 83217, - [SMALL_STATE(1257)] = 83261, - [SMALL_STATE(1258)] = 83305, - [SMALL_STATE(1259)] = 83357, - [SMALL_STATE(1260)] = 83401, - [SMALL_STATE(1261)] = 83461, - [SMALL_STATE(1262)] = 83505, - [SMALL_STATE(1263)] = 83573, - [SMALL_STATE(1264)] = 83627, - [SMALL_STATE(1265)] = 83671, - [SMALL_STATE(1266)] = 83715, - [SMALL_STATE(1267)] = 83759, - [SMALL_STATE(1268)] = 83803, - [SMALL_STATE(1269)] = 83851, - [SMALL_STATE(1270)] = 83899, - [SMALL_STATE(1271)] = 83943, - [SMALL_STATE(1272)] = 83987, - [SMALL_STATE(1273)] = 84031, - [SMALL_STATE(1274)] = 84085, - [SMALL_STATE(1275)] = 84143, - [SMALL_STATE(1276)] = 84209, - [SMALL_STATE(1277)] = 84253, - [SMALL_STATE(1278)] = 84297, - [SMALL_STATE(1279)] = 84341, - [SMALL_STATE(1280)] = 84385, - [SMALL_STATE(1281)] = 84431, - [SMALL_STATE(1282)] = 84495, - [SMALL_STATE(1283)] = 84541, - [SMALL_STATE(1284)] = 84603, - [SMALL_STATE(1285)] = 84647, - [SMALL_STATE(1286)] = 84693, - [SMALL_STATE(1287)] = 84741, - [SMALL_STATE(1288)] = 84789, - [SMALL_STATE(1289)] = 84833, - [SMALL_STATE(1290)] = 84877, - [SMALL_STATE(1291)] = 84921, - [SMALL_STATE(1292)] = 84965, - [SMALL_STATE(1293)] = 85033, - [SMALL_STATE(1294)] = 85079, - [SMALL_STATE(1295)] = 85125, - [SMALL_STATE(1296)] = 85171, - [SMALL_STATE(1297)] = 85215, - [SMALL_STATE(1298)] = 85259, - [SMALL_STATE(1299)] = 85327, - [SMALL_STATE(1300)] = 85371, - [SMALL_STATE(1301)] = 85415, - [SMALL_STATE(1302)] = 85459, - [SMALL_STATE(1303)] = 85503, - [SMALL_STATE(1304)] = 85547, - [SMALL_STATE(1305)] = 85591, - [SMALL_STATE(1306)] = 85635, - [SMALL_STATE(1307)] = 85679, - [SMALL_STATE(1308)] = 85723, - [SMALL_STATE(1309)] = 85767, - [SMALL_STATE(1310)] = 85813, - [SMALL_STATE(1311)] = 85857, - [SMALL_STATE(1312)] = 85901, - [SMALL_STATE(1313)] = 85949, - [SMALL_STATE(1314)] = 85995, - [SMALL_STATE(1315)] = 86043, - [SMALL_STATE(1316)] = 86089, - [SMALL_STATE(1317)] = 86165, - [SMALL_STATE(1318)] = 86209, - [SMALL_STATE(1319)] = 86253, - [SMALL_STATE(1320)] = 86301, - [SMALL_STATE(1321)] = 86345, - [SMALL_STATE(1322)] = 86389, - [SMALL_STATE(1323)] = 86433, - [SMALL_STATE(1324)] = 86477, - [SMALL_STATE(1325)] = 86521, - [SMALL_STATE(1326)] = 86565, - [SMALL_STATE(1327)] = 86609, - [SMALL_STATE(1328)] = 86653, - [SMALL_STATE(1329)] = 86697, - [SMALL_STATE(1330)] = 86741, - [SMALL_STATE(1331)] = 86793, - [SMALL_STATE(1332)] = 86837, - [SMALL_STATE(1333)] = 86881, - [SMALL_STATE(1334)] = 86925, - [SMALL_STATE(1335)] = 86969, - [SMALL_STATE(1336)] = 87013, - [SMALL_STATE(1337)] = 87057, - [SMALL_STATE(1338)] = 87101, - [SMALL_STATE(1339)] = 87145, - [SMALL_STATE(1340)] = 87189, - [SMALL_STATE(1341)] = 87233, - [SMALL_STATE(1342)] = 87277, - [SMALL_STATE(1343)] = 87321, - [SMALL_STATE(1344)] = 87365, - [SMALL_STATE(1345)] = 87409, - [SMALL_STATE(1346)] = 87453, - [SMALL_STATE(1347)] = 87497, - [SMALL_STATE(1348)] = 87549, - [SMALL_STATE(1349)] = 87599, - [SMALL_STATE(1350)] = 87643, - [SMALL_STATE(1351)] = 87691, - [SMALL_STATE(1352)] = 87739, - [SMALL_STATE(1353)] = 87785, - [SMALL_STATE(1354)] = 87829, - [SMALL_STATE(1355)] = 87873, - [SMALL_STATE(1356)] = 87927, - [SMALL_STATE(1357)] = 87975, - [SMALL_STATE(1358)] = 88023, - [SMALL_STATE(1359)] = 88067, - [SMALL_STATE(1360)] = 88120, - [SMALL_STATE(1361)] = 88163, - [SMALL_STATE(1362)] = 88206, - [SMALL_STATE(1363)] = 88249, - [SMALL_STATE(1364)] = 88292, - [SMALL_STATE(1365)] = 88335, - [SMALL_STATE(1366)] = 88378, - [SMALL_STATE(1367)] = 88421, - [SMALL_STATE(1368)] = 88464, - [SMALL_STATE(1369)] = 88507, - [SMALL_STATE(1370)] = 88550, - [SMALL_STATE(1371)] = 88593, - [SMALL_STATE(1372)] = 88636, - [SMALL_STATE(1373)] = 88679, - [SMALL_STATE(1374)] = 88722, - [SMALL_STATE(1375)] = 88769, - [SMALL_STATE(1376)] = 88816, - [SMALL_STATE(1377)] = 88859, - [SMALL_STATE(1378)] = 88902, - [SMALL_STATE(1379)] = 88945, - [SMALL_STATE(1380)] = 88988, - [SMALL_STATE(1381)] = 89031, - [SMALL_STATE(1382)] = 89074, - [SMALL_STATE(1383)] = 89117, - [SMALL_STATE(1384)] = 89160, - [SMALL_STATE(1385)] = 89203, - [SMALL_STATE(1386)] = 89246, - [SMALL_STATE(1387)] = 89289, - [SMALL_STATE(1388)] = 89332, - [SMALL_STATE(1389)] = 89375, - [SMALL_STATE(1390)] = 89418, - [SMALL_STATE(1391)] = 89461, - [SMALL_STATE(1392)] = 89504, - [SMALL_STATE(1393)] = 89547, - [SMALL_STATE(1394)] = 89590, - [SMALL_STATE(1395)] = 89633, - [SMALL_STATE(1396)] = 89678, - [SMALL_STATE(1397)] = 89729, - [SMALL_STATE(1398)] = 89772, - [SMALL_STATE(1399)] = 89815, - [SMALL_STATE(1400)] = 89860, - [SMALL_STATE(1401)] = 89911, - [SMALL_STATE(1402)] = 89956, - [SMALL_STATE(1403)] = 90001, - [SMALL_STATE(1404)] = 90048, - [SMALL_STATE(1405)] = 90093, - [SMALL_STATE(1406)] = 90138, - [SMALL_STATE(1407)] = 90187, - [SMALL_STATE(1408)] = 90230, - [SMALL_STATE(1409)] = 90277, - [SMALL_STATE(1410)] = 90322, - [SMALL_STATE(1411)] = 90373, - [SMALL_STATE(1412)] = 90416, - [SMALL_STATE(1413)] = 90459, - [SMALL_STATE(1414)] = 90502, - [SMALL_STATE(1415)] = 90545, - [SMALL_STATE(1416)] = 90596, - [SMALL_STATE(1417)] = 90639, - [SMALL_STATE(1418)] = 90682, - [SMALL_STATE(1419)] = 90725, - [SMALL_STATE(1420)] = 90768, - [SMALL_STATE(1421)] = 90811, - [SMALL_STATE(1422)] = 90854, - [SMALL_STATE(1423)] = 90897, - [SMALL_STATE(1424)] = 90948, - [SMALL_STATE(1425)] = 90991, - [SMALL_STATE(1426)] = 91036, - [SMALL_STATE(1427)] = 91079, - [SMALL_STATE(1428)] = 91122, - [SMALL_STATE(1429)] = 91165, - [SMALL_STATE(1430)] = 91212, - [SMALL_STATE(1431)] = 91261, - [SMALL_STATE(1432)] = 91306, - [SMALL_STATE(1433)] = 91357, - [SMALL_STATE(1434)] = 91400, - [SMALL_STATE(1435)] = 91443, - [SMALL_STATE(1436)] = 91486, - [SMALL_STATE(1437)] = 91529, - [SMALL_STATE(1438)] = 91572, - [SMALL_STATE(1439)] = 91615, - [SMALL_STATE(1440)] = 91658, - [SMALL_STATE(1441)] = 91701, - [SMALL_STATE(1442)] = 91752, - [SMALL_STATE(1443)] = 91803, - [SMALL_STATE(1444)] = 91848, - [SMALL_STATE(1445)] = 91895, - [SMALL_STATE(1446)] = 91938, - [SMALL_STATE(1447)] = 91987, - [SMALL_STATE(1448)] = 92030, - [SMALL_STATE(1449)] = 92073, - [SMALL_STATE(1450)] = 92116, - [SMALL_STATE(1451)] = 92167, - [SMALL_STATE(1452)] = 92212, - [SMALL_STATE(1453)] = 92255, - [SMALL_STATE(1454)] = 92300, - [SMALL_STATE(1455)] = 92343, - [SMALL_STATE(1456)] = 92386, - [SMALL_STATE(1457)] = 92429, - [SMALL_STATE(1458)] = 92476, - [SMALL_STATE(1459)] = 92519, - [SMALL_STATE(1460)] = 92562, - [SMALL_STATE(1461)] = 92605, - [SMALL_STATE(1462)] = 92648, - [SMALL_STATE(1463)] = 92691, - [SMALL_STATE(1464)] = 92734, - [SMALL_STATE(1465)] = 92777, - [SMALL_STATE(1466)] = 92820, - [SMALL_STATE(1467)] = 92865, - [SMALL_STATE(1468)] = 92910, - [SMALL_STATE(1469)] = 92953, - [SMALL_STATE(1470)] = 92996, - [SMALL_STATE(1471)] = 93043, - [SMALL_STATE(1472)] = 93088, - [SMALL_STATE(1473)] = 93135, - [SMALL_STATE(1474)] = 93178, - [SMALL_STATE(1475)] = 93221, - [SMALL_STATE(1476)] = 93266, - [SMALL_STATE(1477)] = 93309, - [SMALL_STATE(1478)] = 93354, - [SMALL_STATE(1479)] = 93399, - [SMALL_STATE(1480)] = 93442, - [SMALL_STATE(1481)] = 93485, - [SMALL_STATE(1482)] = 93532, - [SMALL_STATE(1483)] = 93575, - [SMALL_STATE(1484)] = 93618, - [SMALL_STATE(1485)] = 93661, - [SMALL_STATE(1486)] = 93704, - [SMALL_STATE(1487)] = 93747, - [SMALL_STATE(1488)] = 93790, - [SMALL_STATE(1489)] = 93833, - [SMALL_STATE(1490)] = 93876, - [SMALL_STATE(1491)] = 93919, - [SMALL_STATE(1492)] = 93962, - [SMALL_STATE(1493)] = 94005, - [SMALL_STATE(1494)] = 94052, - [SMALL_STATE(1495)] = 94095, - [SMALL_STATE(1496)] = 94138, - [SMALL_STATE(1497)] = 94181, - [SMALL_STATE(1498)] = 94226, - [SMALL_STATE(1499)] = 94271, - [SMALL_STATE(1500)] = 94314, - [SMALL_STATE(1501)] = 94357, - [SMALL_STATE(1502)] = 94402, - [SMALL_STATE(1503)] = 94447, - [SMALL_STATE(1504)] = 94490, - [SMALL_STATE(1505)] = 94535, - [SMALL_STATE(1506)] = 94580, - [SMALL_STATE(1507)] = 94623, - [SMALL_STATE(1508)] = 94666, - [SMALL_STATE(1509)] = 94719, - [SMALL_STATE(1510)] = 94762, - [SMALL_STATE(1511)] = 94805, - [SMALL_STATE(1512)] = 94848, - [SMALL_STATE(1513)] = 94891, - [SMALL_STATE(1514)] = 94933, - [SMALL_STATE(1515)] = 94975, - [SMALL_STATE(1516)] = 95019, - [SMALL_STATE(1517)] = 95061, - [SMALL_STATE(1518)] = 95103, - [SMALL_STATE(1519)] = 95145, - [SMALL_STATE(1520)] = 95195, - [SMALL_STATE(1521)] = 95237, - [SMALL_STATE(1522)] = 95279, - [SMALL_STATE(1523)] = 95321, - [SMALL_STATE(1524)] = 95363, - [SMALL_STATE(1525)] = 95411, - [SMALL_STATE(1526)] = 95455, - [SMALL_STATE(1527)] = 95497, - [SMALL_STATE(1528)] = 95539, - [SMALL_STATE(1529)] = 95581, - [SMALL_STATE(1530)] = 95623, - [SMALL_STATE(1531)] = 95665, - [SMALL_STATE(1532)] = 95709, - [SMALL_STATE(1533)] = 95755, - [SMALL_STATE(1534)] = 95797, - [SMALL_STATE(1535)] = 95839, - [SMALL_STATE(1536)] = 95883, - [SMALL_STATE(1537)] = 95925, - [SMALL_STATE(1538)] = 95967, - [SMALL_STATE(1539)] = 96009, - [SMALL_STATE(1540)] = 96051, - [SMALL_STATE(1541)] = 96101, - [SMALL_STATE(1542)] = 96143, - [SMALL_STATE(1543)] = 96185, - [SMALL_STATE(1544)] = 96227, - [SMALL_STATE(1545)] = 96269, - [SMALL_STATE(1546)] = 96319, - [SMALL_STATE(1547)] = 96361, - [SMALL_STATE(1548)] = 96403, - [SMALL_STATE(1549)] = 96445, - [SMALL_STATE(1550)] = 96487, - [SMALL_STATE(1551)] = 96533, - [SMALL_STATE(1552)] = 96575, - [SMALL_STATE(1553)] = 96617, - [SMALL_STATE(1554)] = 96663, - [SMALL_STATE(1555)] = 96705, - [SMALL_STATE(1556)] = 96747, - [SMALL_STATE(1557)] = 96789, - [SMALL_STATE(1558)] = 96831, - [SMALL_STATE(1559)] = 96873, - [SMALL_STATE(1560)] = 96915, - [SMALL_STATE(1561)] = 96957, - [SMALL_STATE(1562)] = 97007, - [SMALL_STATE(1563)] = 97049, - [SMALL_STATE(1564)] = 97091, - [SMALL_STATE(1565)] = 97133, - [SMALL_STATE(1566)] = 97183, - [SMALL_STATE(1567)] = 97225, - [SMALL_STATE(1568)] = 97267, - [SMALL_STATE(1569)] = 97309, - [SMALL_STATE(1570)] = 97351, - [SMALL_STATE(1571)] = 97395, - [SMALL_STATE(1572)] = 97437, - [SMALL_STATE(1573)] = 97479, - [SMALL_STATE(1574)] = 97521, - [SMALL_STATE(1575)] = 97563, - [SMALL_STATE(1576)] = 97607, - [SMALL_STATE(1577)] = 97649, - [SMALL_STATE(1578)] = 97691, - [SMALL_STATE(1579)] = 97735, - [SMALL_STATE(1580)] = 97777, - [SMALL_STATE(1581)] = 97819, - [SMALL_STATE(1582)] = 97861, - [SMALL_STATE(1583)] = 97903, - [SMALL_STATE(1584)] = 97945, - [SMALL_STATE(1585)] = 97987, - [SMALL_STATE(1586)] = 98033, - [SMALL_STATE(1587)] = 98075, - [SMALL_STATE(1588)] = 98117, - [SMALL_STATE(1589)] = 98163, - [SMALL_STATE(1590)] = 98205, - [SMALL_STATE(1591)] = 98247, - [SMALL_STATE(1592)] = 98289, - [SMALL_STATE(1593)] = 98331, - [SMALL_STATE(1594)] = 98373, - [SMALL_STATE(1595)] = 98415, - [SMALL_STATE(1596)] = 98457, - [SMALL_STATE(1597)] = 98499, - [SMALL_STATE(1598)] = 98541, - [SMALL_STATE(1599)] = 98583, - [SMALL_STATE(1600)] = 98631, - [SMALL_STATE(1601)] = 98677, - [SMALL_STATE(1602)] = 98719, - [SMALL_STATE(1603)] = 98761, - [SMALL_STATE(1604)] = 98811, - [SMALL_STATE(1605)] = 98853, - [SMALL_STATE(1606)] = 98897, - [SMALL_STATE(1607)] = 98939, - [SMALL_STATE(1608)] = 98980, - [SMALL_STATE(1609)] = 99021, - [SMALL_STATE(1610)] = 99062, - [SMALL_STATE(1611)] = 99105, - [SMALL_STATE(1612)] = 99146, - [SMALL_STATE(1613)] = 99189, - [SMALL_STATE(1614)] = 99230, - [SMALL_STATE(1615)] = 99273, - [SMALL_STATE(1616)] = 99316, - [SMALL_STATE(1617)] = 99357, - [SMALL_STATE(1618)] = 99398, - [SMALL_STATE(1619)] = 99441, - [SMALL_STATE(1620)] = 99484, - [SMALL_STATE(1621)] = 99527, - [SMALL_STATE(1622)] = 99568, - [SMALL_STATE(1623)] = 99609, - [SMALL_STATE(1624)] = 99650, - [SMALL_STATE(1625)] = 99691, - [SMALL_STATE(1626)] = 99730, - [SMALL_STATE(1627)] = 99771, - [SMALL_STATE(1628)] = 99806, - [SMALL_STATE(1629)] = 99843, - [SMALL_STATE(1630)] = 99884, - [SMALL_STATE(1631)] = 99916, - [SMALL_STATE(1632)] = 99948, - [SMALL_STATE(1633)] = 99980, - [SMALL_STATE(1634)] = 100012, - [SMALL_STATE(1635)] = 100044, - [SMALL_STATE(1636)] = 100083, - [SMALL_STATE(1637)] = 100122, - [SMALL_STATE(1638)] = 100161, - [SMALL_STATE(1639)] = 100198, - [SMALL_STATE(1640)] = 100228, - [SMALL_STATE(1641)] = 100258, - [SMALL_STATE(1642)] = 100288, - [SMALL_STATE(1643)] = 100318, - [SMALL_STATE(1644)] = 100356, - [SMALL_STATE(1645)] = 100386, - [SMALL_STATE(1646)] = 100424, - [SMALL_STATE(1647)] = 100454, - [SMALL_STATE(1648)] = 100483, - [SMALL_STATE(1649)] = 100530, - [SMALL_STATE(1650)] = 100571, - [SMALL_STATE(1651)] = 100608, - [SMALL_STATE(1652)] = 100637, - [SMALL_STATE(1653)] = 100684, - [SMALL_STATE(1654)] = 100731, - [SMALL_STATE(1655)] = 100776, - [SMALL_STATE(1656)] = 100819, - [SMALL_STATE(1657)] = 100856, - [SMALL_STATE(1658)] = 100903, - [SMALL_STATE(1659)] = 100950, - [SMALL_STATE(1660)] = 100989, - [SMALL_STATE(1661)] = 101018, - [SMALL_STATE(1662)] = 101047, - [SMALL_STATE(1663)] = 101094, - [SMALL_STATE(1664)] = 101123, - [SMALL_STATE(1665)] = 101170, - [SMALL_STATE(1666)] = 101207, - [SMALL_STATE(1667)] = 101232, - [SMALL_STATE(1668)] = 101279, - [SMALL_STATE(1669)] = 101308, - [SMALL_STATE(1670)] = 101345, - [SMALL_STATE(1671)] = 101374, - [SMALL_STATE(1672)] = 101399, - [SMALL_STATE(1673)] = 101446, - [SMALL_STATE(1674)] = 101475, - [SMALL_STATE(1675)] = 101504, - [SMALL_STATE(1676)] = 101533, - [SMALL_STATE(1677)] = 101562, - [SMALL_STATE(1678)] = 101591, - [SMALL_STATE(1679)] = 101620, - [SMALL_STATE(1680)] = 101649, - [SMALL_STATE(1681)] = 101678, - [SMALL_STATE(1682)] = 101703, - [SMALL_STATE(1683)] = 101750, - [SMALL_STATE(1684)] = 101779, - [SMALL_STATE(1685)] = 101808, - [SMALL_STATE(1686)] = 101837, - [SMALL_STATE(1687)] = 101866, - [SMALL_STATE(1688)] = 101913, - [SMALL_STATE(1689)] = 101938, - [SMALL_STATE(1690)] = 101973, - [SMALL_STATE(1691)] = 102019, - [SMALL_STATE(1692)] = 102065, - [SMALL_STATE(1693)] = 102089, - [SMALL_STATE(1694)] = 102113, - [SMALL_STATE(1695)] = 102159, - [SMALL_STATE(1696)] = 102187, - [SMALL_STATE(1697)] = 102233, - [SMALL_STATE(1698)] = 102279, - [SMALL_STATE(1699)] = 102325, - [SMALL_STATE(1700)] = 102371, - [SMALL_STATE(1701)] = 102417, - [SMALL_STATE(1702)] = 102463, - [SMALL_STATE(1703)] = 102509, - [SMALL_STATE(1704)] = 102555, - [SMALL_STATE(1705)] = 102601, - [SMALL_STATE(1706)] = 102647, - [SMALL_STATE(1707)] = 102693, - [SMALL_STATE(1708)] = 102725, - [SMALL_STATE(1709)] = 102749, - [SMALL_STATE(1710)] = 102795, - [SMALL_STATE(1711)] = 102841, - [SMALL_STATE(1712)] = 102887, - [SMALL_STATE(1713)] = 102915, - [SMALL_STATE(1714)] = 102961, - [SMALL_STATE(1715)] = 102991, - [SMALL_STATE(1716)] = 103037, - [SMALL_STATE(1717)] = 103069, - [SMALL_STATE(1718)] = 103093, - [SMALL_STATE(1719)] = 103136, - [SMALL_STATE(1720)] = 103176, - [SMALL_STATE(1721)] = 103216, - [SMALL_STATE(1722)] = 103256, - [SMALL_STATE(1723)] = 103282, - [SMALL_STATE(1724)] = 103322, - [SMALL_STATE(1725)] = 103359, - [SMALL_STATE(1726)] = 103396, - [SMALL_STATE(1727)] = 103437, - [SMALL_STATE(1728)] = 103478, - [SMALL_STATE(1729)] = 103519, - [SMALL_STATE(1730)] = 103560, - [SMALL_STATE(1731)] = 103601, - [SMALL_STATE(1732)] = 103642, - [SMALL_STATE(1733)] = 103683, - [SMALL_STATE(1734)] = 103724, - [SMALL_STATE(1735)] = 103762, - [SMALL_STATE(1736)] = 103800, - [SMALL_STATE(1737)] = 103838, - [SMALL_STATE(1738)] = 103876, - [SMALL_STATE(1739)] = 103914, - [SMALL_STATE(1740)] = 103952, - [SMALL_STATE(1741)] = 103990, - [SMALL_STATE(1742)] = 104028, - [SMALL_STATE(1743)] = 104066, - [SMALL_STATE(1744)] = 104104, - [SMALL_STATE(1745)] = 104142, - [SMALL_STATE(1746)] = 104180, - [SMALL_STATE(1747)] = 104218, - [SMALL_STATE(1748)] = 104256, - [SMALL_STATE(1749)] = 104294, - [SMALL_STATE(1750)] = 104332, - [SMALL_STATE(1751)] = 104370, - [SMALL_STATE(1752)] = 104408, - [SMALL_STATE(1753)] = 104446, - [SMALL_STATE(1754)] = 104484, - [SMALL_STATE(1755)] = 104522, - [SMALL_STATE(1756)] = 104560, - [SMALL_STATE(1757)] = 104598, - [SMALL_STATE(1758)] = 104636, - [SMALL_STATE(1759)] = 104674, - [SMALL_STATE(1760)] = 104703, - [SMALL_STATE(1761)] = 104732, - [SMALL_STATE(1762)] = 104761, - [SMALL_STATE(1763)] = 104790, - [SMALL_STATE(1764)] = 104819, - [SMALL_STATE(1765)] = 104848, - [SMALL_STATE(1766)] = 104877, - [SMALL_STATE(1767)] = 104906, - [SMALL_STATE(1768)] = 104935, - [SMALL_STATE(1769)] = 104964, - [SMALL_STATE(1770)] = 104993, - [SMALL_STATE(1771)] = 105022, - [SMALL_STATE(1772)] = 105051, - [SMALL_STATE(1773)] = 105080, - [SMALL_STATE(1774)] = 105109, - [SMALL_STATE(1775)] = 105138, - [SMALL_STATE(1776)] = 105167, - [SMALL_STATE(1777)] = 105196, - [SMALL_STATE(1778)] = 105225, - [SMALL_STATE(1779)] = 105254, - [SMALL_STATE(1780)] = 105283, - [SMALL_STATE(1781)] = 105307, - [SMALL_STATE(1782)] = 105329, - [SMALL_STATE(1783)] = 105351, - [SMALL_STATE(1784)] = 105375, - [SMALL_STATE(1785)] = 105399, - [SMALL_STATE(1786)] = 105417, - [SMALL_STATE(1787)] = 105441, - [SMALL_STATE(1788)] = 105471, - [SMALL_STATE(1789)] = 105495, - [SMALL_STATE(1790)] = 105519, - [SMALL_STATE(1791)] = 105539, - [SMALL_STATE(1792)] = 105563, - [SMALL_STATE(1793)] = 105585, - [SMALL_STATE(1794)] = 105609, - [SMALL_STATE(1795)] = 105627, - [SMALL_STATE(1796)] = 105651, - [SMALL_STATE(1797)] = 105675, - [SMALL_STATE(1798)] = 105695, - [SMALL_STATE(1799)] = 105715, - [SMALL_STATE(1800)] = 105737, - [SMALL_STATE(1801)] = 105761, - [SMALL_STATE(1802)] = 105782, - [SMALL_STATE(1803)] = 105807, - [SMALL_STATE(1804)] = 105836, - [SMALL_STATE(1805)] = 105857, - [SMALL_STATE(1806)] = 105880, - [SMALL_STATE(1807)] = 105903, - [SMALL_STATE(1808)] = 105928, - [SMALL_STATE(1809)] = 105953, - [SMALL_STATE(1810)] = 105972, - [SMALL_STATE(1811)] = 105993, - [SMALL_STATE(1812)] = 106014, - [SMALL_STATE(1813)] = 106035, - [SMALL_STATE(1814)] = 106056, - [SMALL_STATE(1815)] = 106077, - [SMALL_STATE(1816)] = 106100, - [SMALL_STATE(1817)] = 106123, - [SMALL_STATE(1818)] = 106144, - [SMALL_STATE(1819)] = 106171, - [SMALL_STATE(1820)] = 106192, - [SMALL_STATE(1821)] = 106215, - [SMALL_STATE(1822)] = 106244, - [SMALL_STATE(1823)] = 106273, - [SMALL_STATE(1824)] = 106300, - [SMALL_STATE(1825)] = 106327, - [SMALL_STATE(1826)] = 106356, - [SMALL_STATE(1827)] = 106383, - [SMALL_STATE(1828)] = 106410, - [SMALL_STATE(1829)] = 106431, - [SMALL_STATE(1830)] = 106460, - [SMALL_STATE(1831)] = 106479, - [SMALL_STATE(1832)] = 106502, - [SMALL_STATE(1833)] = 106529, - [SMALL_STATE(1834)] = 106552, - [SMALL_STATE(1835)] = 106573, - [SMALL_STATE(1836)] = 106602, - [SMALL_STATE(1837)] = 106631, - [SMALL_STATE(1838)] = 106658, - [SMALL_STATE(1839)] = 106679, - [SMALL_STATE(1840)] = 106702, - [SMALL_STATE(1841)] = 106731, - [SMALL_STATE(1842)] = 106760, - [SMALL_STATE(1843)] = 106787, - [SMALL_STATE(1844)] = 106816, - [SMALL_STATE(1845)] = 106845, - [SMALL_STATE(1846)] = 106870, - [SMALL_STATE(1847)] = 106895, - [SMALL_STATE(1848)] = 106920, - [SMALL_STATE(1849)] = 106941, - [SMALL_STATE(1850)] = 106970, - [SMALL_STATE(1851)] = 106988, - [SMALL_STATE(1852)] = 107010, - [SMALL_STATE(1853)] = 107032, - [SMALL_STATE(1854)] = 107052, - [SMALL_STATE(1855)] = 107074, - [SMALL_STATE(1856)] = 107094, - [SMALL_STATE(1857)] = 107116, - [SMALL_STATE(1858)] = 107142, - [SMALL_STATE(1859)] = 107168, - [SMALL_STATE(1860)] = 107184, - [SMALL_STATE(1861)] = 107200, - [SMALL_STATE(1862)] = 107226, - [SMALL_STATE(1863)] = 107252, - [SMALL_STATE(1864)] = 107278, - [SMALL_STATE(1865)] = 107302, - [SMALL_STATE(1866)] = 107324, - [SMALL_STATE(1867)] = 107346, - [SMALL_STATE(1868)] = 107368, - [SMALL_STATE(1869)] = 107394, - [SMALL_STATE(1870)] = 107416, - [SMALL_STATE(1871)] = 107440, - [SMALL_STATE(1872)] = 107460, - [SMALL_STATE(1873)] = 107480, - [SMALL_STATE(1874)] = 107506, - [SMALL_STATE(1875)] = 107532, - [SMALL_STATE(1876)] = 107558, - [SMALL_STATE(1877)] = 107584, - [SMALL_STATE(1878)] = 107602, - [SMALL_STATE(1879)] = 107624, - [SMALL_STATE(1880)] = 107650, - [SMALL_STATE(1881)] = 107676, - [SMALL_STATE(1882)] = 107702, - [SMALL_STATE(1883)] = 107724, - [SMALL_STATE(1884)] = 107750, - [SMALL_STATE(1885)] = 107772, - [SMALL_STATE(1886)] = 107794, - [SMALL_STATE(1887)] = 107820, - [SMALL_STATE(1888)] = 107842, - [SMALL_STATE(1889)] = 107868, - [SMALL_STATE(1890)] = 107892, - [SMALL_STATE(1891)] = 107914, - [SMALL_STATE(1892)] = 107938, - [SMALL_STATE(1893)] = 107964, - [SMALL_STATE(1894)] = 107986, - [SMALL_STATE(1895)] = 108006, - [SMALL_STATE(1896)] = 108030, - [SMALL_STATE(1897)] = 108054, - [SMALL_STATE(1898)] = 108076, - [SMALL_STATE(1899)] = 108098, - [SMALL_STATE(1900)] = 108124, - [SMALL_STATE(1901)] = 108146, - [SMALL_STATE(1902)] = 108168, - [SMALL_STATE(1903)] = 108190, - [SMALL_STATE(1904)] = 108207, - [SMALL_STATE(1905)] = 108230, - [SMALL_STATE(1906)] = 108247, - [SMALL_STATE(1907)] = 108264, - [SMALL_STATE(1908)] = 108285, - [SMALL_STATE(1909)] = 108306, - [SMALL_STATE(1910)] = 108323, - [SMALL_STATE(1911)] = 108344, - [SMALL_STATE(1912)] = 108361, - [SMALL_STATE(1913)] = 108378, - [SMALL_STATE(1914)] = 108401, - [SMALL_STATE(1915)] = 108418, - [SMALL_STATE(1916)] = 108439, - [SMALL_STATE(1917)] = 108456, - [SMALL_STATE(1918)] = 108477, - [SMALL_STATE(1919)] = 108496, - [SMALL_STATE(1920)] = 108513, - [SMALL_STATE(1921)] = 108534, - [SMALL_STATE(1922)] = 108555, - [SMALL_STATE(1923)] = 108576, - [SMALL_STATE(1924)] = 108597, - [SMALL_STATE(1925)] = 108614, - [SMALL_STATE(1926)] = 108631, - [SMALL_STATE(1927)] = 108648, - [SMALL_STATE(1928)] = 108669, - [SMALL_STATE(1929)] = 108690, - [SMALL_STATE(1930)] = 108707, - [SMALL_STATE(1931)] = 108724, - [SMALL_STATE(1932)] = 108741, - [SMALL_STATE(1933)] = 108762, - [SMALL_STATE(1934)] = 108783, - [SMALL_STATE(1935)] = 108804, - [SMALL_STATE(1936)] = 108821, - [SMALL_STATE(1937)] = 108842, - [SMALL_STATE(1938)] = 108859, - [SMALL_STATE(1939)] = 108880, - [SMALL_STATE(1940)] = 108901, - [SMALL_STATE(1941)] = 108918, - [SMALL_STATE(1942)] = 108935, - [SMALL_STATE(1943)] = 108952, - [SMALL_STATE(1944)] = 108969, - [SMALL_STATE(1945)] = 108986, - [SMALL_STATE(1946)] = 109003, - [SMALL_STATE(1947)] = 109024, - [SMALL_STATE(1948)] = 109045, - [SMALL_STATE(1949)] = 109062, - [SMALL_STATE(1950)] = 109083, - [SMALL_STATE(1951)] = 109104, - [SMALL_STATE(1952)] = 109125, - [SMALL_STATE(1953)] = 109146, - [SMALL_STATE(1954)] = 109167, - [SMALL_STATE(1955)] = 109188, - [SMALL_STATE(1956)] = 109205, - [SMALL_STATE(1957)] = 109222, - [SMALL_STATE(1958)] = 109245, - [SMALL_STATE(1959)] = 109262, - [SMALL_STATE(1960)] = 109283, - [SMALL_STATE(1961)] = 109304, - [SMALL_STATE(1962)] = 109321, - [SMALL_STATE(1963)] = 109342, - [SMALL_STATE(1964)] = 109363, - [SMALL_STATE(1965)] = 109380, - [SMALL_STATE(1966)] = 109397, - [SMALL_STATE(1967)] = 109414, - [SMALL_STATE(1968)] = 109435, - [SMALL_STATE(1969)] = 109452, - [SMALL_STATE(1970)] = 109464, - [SMALL_STATE(1971)] = 109480, - [SMALL_STATE(1972)] = 109492, - [SMALL_STATE(1973)] = 109512, - [SMALL_STATE(1974)] = 109532, - [SMALL_STATE(1975)] = 109552, - [SMALL_STATE(1976)] = 109564, - [SMALL_STATE(1977)] = 109584, - [SMALL_STATE(1978)] = 109604, - [SMALL_STATE(1979)] = 109624, - [SMALL_STATE(1980)] = 109644, - [SMALL_STATE(1981)] = 109656, - [SMALL_STATE(1982)] = 109676, - [SMALL_STATE(1983)] = 109692, - [SMALL_STATE(1984)] = 109712, - [SMALL_STATE(1985)] = 109732, - [SMALL_STATE(1986)] = 109752, - [SMALL_STATE(1987)] = 109772, - [SMALL_STATE(1988)] = 109784, - [SMALL_STATE(1989)] = 109804, - [SMALL_STATE(1990)] = 109824, - [SMALL_STATE(1991)] = 109842, - [SMALL_STATE(1992)] = 109862, - [SMALL_STATE(1993)] = 109874, - [SMALL_STATE(1994)] = 109890, - [SMALL_STATE(1995)] = 109910, - [SMALL_STATE(1996)] = 109930, - [SMALL_STATE(1997)] = 109950, - [SMALL_STATE(1998)] = 109970, - [SMALL_STATE(1999)] = 109990, - [SMALL_STATE(2000)] = 110010, - [SMALL_STATE(2001)] = 110030, - [SMALL_STATE(2002)] = 110042, - [SMALL_STATE(2003)] = 110054, - [SMALL_STATE(2004)] = 110074, - [SMALL_STATE(2005)] = 110086, - [SMALL_STATE(2006)] = 110098, - [SMALL_STATE(2007)] = 110118, - [SMALL_STATE(2008)] = 110138, - [SMALL_STATE(2009)] = 110150, - [SMALL_STATE(2010)] = 110170, - [SMALL_STATE(2011)] = 110190, - [SMALL_STATE(2012)] = 110210, - [SMALL_STATE(2013)] = 110230, - [SMALL_STATE(2014)] = 110246, - [SMALL_STATE(2015)] = 110262, - [SMALL_STATE(2016)] = 110282, - [SMALL_STATE(2017)] = 110294, - [SMALL_STATE(2018)] = 110306, - [SMALL_STATE(2019)] = 110326, - [SMALL_STATE(2020)] = 110338, - [SMALL_STATE(2021)] = 110354, - [SMALL_STATE(2022)] = 110374, - [SMALL_STATE(2023)] = 110392, - [SMALL_STATE(2024)] = 110412, - [SMALL_STATE(2025)] = 110432, - [SMALL_STATE(2026)] = 110444, - [SMALL_STATE(2027)] = 110462, - [SMALL_STATE(2028)] = 110482, - [SMALL_STATE(2029)] = 110502, - [SMALL_STATE(2030)] = 110522, - [SMALL_STATE(2031)] = 110540, - [SMALL_STATE(2032)] = 110551, - [SMALL_STATE(2033)] = 110566, - [SMALL_STATE(2034)] = 110581, - [SMALL_STATE(2035)] = 110596, - [SMALL_STATE(2036)] = 110611, - [SMALL_STATE(2037)] = 110626, - [SMALL_STATE(2038)] = 110641, - [SMALL_STATE(2039)] = 110652, - [SMALL_STATE(2040)] = 110667, - [SMALL_STATE(2041)] = 110682, - [SMALL_STATE(2042)] = 110697, - [SMALL_STATE(2043)] = 110714, - [SMALL_STATE(2044)] = 110729, - [SMALL_STATE(2045)] = 110746, - [SMALL_STATE(2046)] = 110763, - [SMALL_STATE(2047)] = 110776, - [SMALL_STATE(2048)] = 110791, - [SMALL_STATE(2049)] = 110808, - [SMALL_STATE(2050)] = 110823, - [SMALL_STATE(2051)] = 110838, - [SMALL_STATE(2052)] = 110853, - [SMALL_STATE(2053)] = 110868, - [SMALL_STATE(2054)] = 110883, - [SMALL_STATE(2055)] = 110898, - [SMALL_STATE(2056)] = 110913, - [SMALL_STATE(2057)] = 110930, - [SMALL_STATE(2058)] = 110947, - [SMALL_STATE(2059)] = 110964, - [SMALL_STATE(2060)] = 110979, - [SMALL_STATE(2061)] = 110994, - [SMALL_STATE(2062)] = 111011, - [SMALL_STATE(2063)] = 111028, - [SMALL_STATE(2064)] = 111042, - [SMALL_STATE(2065)] = 111056, - [SMALL_STATE(2066)] = 111070, - [SMALL_STATE(2067)] = 111084, - [SMALL_STATE(2068)] = 111098, - [SMALL_STATE(2069)] = 111112, - [SMALL_STATE(2070)] = 111126, - [SMALL_STATE(2071)] = 111140, - [SMALL_STATE(2072)] = 111154, - [SMALL_STATE(2073)] = 111168, - [SMALL_STATE(2074)] = 111182, - [SMALL_STATE(2075)] = 111196, - [SMALL_STATE(2076)] = 111210, - [SMALL_STATE(2077)] = 111224, - [SMALL_STATE(2078)] = 111238, - [SMALL_STATE(2079)] = 111252, - [SMALL_STATE(2080)] = 111262, - [SMALL_STATE(2081)] = 111276, - [SMALL_STATE(2082)] = 111290, - [SMALL_STATE(2083)] = 111304, - [SMALL_STATE(2084)] = 111318, - [SMALL_STATE(2085)] = 111332, - [SMALL_STATE(2086)] = 111346, - [SMALL_STATE(2087)] = 111360, - [SMALL_STATE(2088)] = 111374, - [SMALL_STATE(2089)] = 111388, - [SMALL_STATE(2090)] = 111402, - [SMALL_STATE(2091)] = 111416, - [SMALL_STATE(2092)] = 111426, - [SMALL_STATE(2093)] = 111440, - [SMALL_STATE(2094)] = 111454, - [SMALL_STATE(2095)] = 111466, - [SMALL_STATE(2096)] = 111480, - [SMALL_STATE(2097)] = 111494, - [SMALL_STATE(2098)] = 111504, - [SMALL_STATE(2099)] = 111518, - [SMALL_STATE(2100)] = 111532, - [SMALL_STATE(2101)] = 111546, - [SMALL_STATE(2102)] = 111560, - [SMALL_STATE(2103)] = 111574, - [SMALL_STATE(2104)] = 111588, - [SMALL_STATE(2105)] = 111602, - [SMALL_STATE(2106)] = 111616, - [SMALL_STATE(2107)] = 111630, - [SMALL_STATE(2108)] = 111644, - [SMALL_STATE(2109)] = 111658, - [SMALL_STATE(2110)] = 111672, - [SMALL_STATE(2111)] = 111686, - [SMALL_STATE(2112)] = 111698, - [SMALL_STATE(2113)] = 111712, - [SMALL_STATE(2114)] = 111726, - [SMALL_STATE(2115)] = 111740, - [SMALL_STATE(2116)] = 111754, - [SMALL_STATE(2117)] = 111768, - [SMALL_STATE(2118)] = 111782, - [SMALL_STATE(2119)] = 111796, - [SMALL_STATE(2120)] = 111808, - [SMALL_STATE(2121)] = 111822, - [SMALL_STATE(2122)] = 111836, - [SMALL_STATE(2123)] = 111850, - [SMALL_STATE(2124)] = 111864, - [SMALL_STATE(2125)] = 111878, - [SMALL_STATE(2126)] = 111892, - [SMALL_STATE(2127)] = 111906, - [SMALL_STATE(2128)] = 111920, - [SMALL_STATE(2129)] = 111932, - [SMALL_STATE(2130)] = 111946, - [SMALL_STATE(2131)] = 111960, - [SMALL_STATE(2132)] = 111974, - [SMALL_STATE(2133)] = 111988, - [SMALL_STATE(2134)] = 112002, - [SMALL_STATE(2135)] = 112012, - [SMALL_STATE(2136)] = 112026, - [SMALL_STATE(2137)] = 112040, - [SMALL_STATE(2138)] = 112054, - [SMALL_STATE(2139)] = 112068, - [SMALL_STATE(2140)] = 112082, - [SMALL_STATE(2141)] = 112096, - [SMALL_STATE(2142)] = 112110, - [SMALL_STATE(2143)] = 112124, - [SMALL_STATE(2144)] = 112136, - [SMALL_STATE(2145)] = 112150, - [SMALL_STATE(2146)] = 112164, - [SMALL_STATE(2147)] = 112178, - [SMALL_STATE(2148)] = 112192, - [SMALL_STATE(2149)] = 112206, - [SMALL_STATE(2150)] = 112220, - [SMALL_STATE(2151)] = 112234, - [SMALL_STATE(2152)] = 112246, - [SMALL_STATE(2153)] = 112260, - [SMALL_STATE(2154)] = 112274, - [SMALL_STATE(2155)] = 112288, - [SMALL_STATE(2156)] = 112302, - [SMALL_STATE(2157)] = 112316, - [SMALL_STATE(2158)] = 112330, - [SMALL_STATE(2159)] = 112344, - [SMALL_STATE(2160)] = 112358, - [SMALL_STATE(2161)] = 112372, - [SMALL_STATE(2162)] = 112386, - [SMALL_STATE(2163)] = 112400, - [SMALL_STATE(2164)] = 112414, - [SMALL_STATE(2165)] = 112428, - [SMALL_STATE(2166)] = 112442, - [SMALL_STATE(2167)] = 112456, - [SMALL_STATE(2168)] = 112470, - [SMALL_STATE(2169)] = 112484, - [SMALL_STATE(2170)] = 112498, - [SMALL_STATE(2171)] = 112512, - [SMALL_STATE(2172)] = 112526, - [SMALL_STATE(2173)] = 112540, - [SMALL_STATE(2174)] = 112554, - [SMALL_STATE(2175)] = 112568, - [SMALL_STATE(2176)] = 112582, - [SMALL_STATE(2177)] = 112596, - [SMALL_STATE(2178)] = 112608, - [SMALL_STATE(2179)] = 112622, - [SMALL_STATE(2180)] = 112636, - [SMALL_STATE(2181)] = 112648, - [SMALL_STATE(2182)] = 112662, - [SMALL_STATE(2183)] = 112676, - [SMALL_STATE(2184)] = 112690, - [SMALL_STATE(2185)] = 112704, - [SMALL_STATE(2186)] = 112718, - [SMALL_STATE(2187)] = 112732, - [SMALL_STATE(2188)] = 112746, - [SMALL_STATE(2189)] = 112756, - [SMALL_STATE(2190)] = 112770, - [SMALL_STATE(2191)] = 112784, - [SMALL_STATE(2192)] = 112796, - [SMALL_STATE(2193)] = 112810, - [SMALL_STATE(2194)] = 112824, - [SMALL_STATE(2195)] = 112838, - [SMALL_STATE(2196)] = 112852, - [SMALL_STATE(2197)] = 112864, - [SMALL_STATE(2198)] = 112876, - [SMALL_STATE(2199)] = 112890, - [SMALL_STATE(2200)] = 112904, - [SMALL_STATE(2201)] = 112918, - [SMALL_STATE(2202)] = 112932, - [SMALL_STATE(2203)] = 112946, - [SMALL_STATE(2204)] = 112958, - [SMALL_STATE(2205)] = 112972, - [SMALL_STATE(2206)] = 112986, - [SMALL_STATE(2207)] = 112998, - [SMALL_STATE(2208)] = 113012, - [SMALL_STATE(2209)] = 113026, - [SMALL_STATE(2210)] = 113040, - [SMALL_STATE(2211)] = 113054, - [SMALL_STATE(2212)] = 113068, - [SMALL_STATE(2213)] = 113082, - [SMALL_STATE(2214)] = 113094, - [SMALL_STATE(2215)] = 113108, - [SMALL_STATE(2216)] = 113122, - [SMALL_STATE(2217)] = 113136, - [SMALL_STATE(2218)] = 113150, - [SMALL_STATE(2219)] = 113164, - [SMALL_STATE(2220)] = 113178, - [SMALL_STATE(2221)] = 113192, - [SMALL_STATE(2222)] = 113206, - [SMALL_STATE(2223)] = 113218, - [SMALL_STATE(2224)] = 113232, - [SMALL_STATE(2225)] = 113246, - [SMALL_STATE(2226)] = 113258, - [SMALL_STATE(2227)] = 113272, - [SMALL_STATE(2228)] = 113284, - [SMALL_STATE(2229)] = 113298, - [SMALL_STATE(2230)] = 113312, - [SMALL_STATE(2231)] = 113326, - [SMALL_STATE(2232)] = 113336, - [SMALL_STATE(2233)] = 113348, - [SMALL_STATE(2234)] = 113362, - [SMALL_STATE(2235)] = 113376, - [SMALL_STATE(2236)] = 113390, - [SMALL_STATE(2237)] = 113404, - [SMALL_STATE(2238)] = 113418, - [SMALL_STATE(2239)] = 113432, - [SMALL_STATE(2240)] = 113446, - [SMALL_STATE(2241)] = 113460, - [SMALL_STATE(2242)] = 113474, - [SMALL_STATE(2243)] = 113488, - [SMALL_STATE(2244)] = 113502, - [SMALL_STATE(2245)] = 113516, - [SMALL_STATE(2246)] = 113530, - [SMALL_STATE(2247)] = 113544, - [SMALL_STATE(2248)] = 113554, - [SMALL_STATE(2249)] = 113564, - [SMALL_STATE(2250)] = 113578, - [SMALL_STATE(2251)] = 113590, - [SMALL_STATE(2252)] = 113604, - [SMALL_STATE(2253)] = 113616, - [SMALL_STATE(2254)] = 113628, - [SMALL_STATE(2255)] = 113642, - [SMALL_STATE(2256)] = 113656, - [SMALL_STATE(2257)] = 113670, - [SMALL_STATE(2258)] = 113684, - [SMALL_STATE(2259)] = 113698, - [SMALL_STATE(2260)] = 113712, - [SMALL_STATE(2261)] = 113726, - [SMALL_STATE(2262)] = 113740, - [SMALL_STATE(2263)] = 113752, - [SMALL_STATE(2264)] = 113764, - [SMALL_STATE(2265)] = 113778, - [SMALL_STATE(2266)] = 113792, - [SMALL_STATE(2267)] = 113806, - [SMALL_STATE(2268)] = 113818, - [SMALL_STATE(2269)] = 113832, - [SMALL_STATE(2270)] = 113841, - [SMALL_STATE(2271)] = 113850, - [SMALL_STATE(2272)] = 113859, - [SMALL_STATE(2273)] = 113868, - [SMALL_STATE(2274)] = 113877, - [SMALL_STATE(2275)] = 113886, - [SMALL_STATE(2276)] = 113895, - [SMALL_STATE(2277)] = 113904, - [SMALL_STATE(2278)] = 113913, - [SMALL_STATE(2279)] = 113922, - [SMALL_STATE(2280)] = 113931, - [SMALL_STATE(2281)] = 113942, - [SMALL_STATE(2282)] = 113951, - [SMALL_STATE(2283)] = 113962, - [SMALL_STATE(2284)] = 113971, - [SMALL_STATE(2285)] = 113980, - [SMALL_STATE(2286)] = 113989, - [SMALL_STATE(2287)] = 113998, - [SMALL_STATE(2288)] = 114007, - [SMALL_STATE(2289)] = 114016, - [SMALL_STATE(2290)] = 114025, - [SMALL_STATE(2291)] = 114034, - [SMALL_STATE(2292)] = 114043, - [SMALL_STATE(2293)] = 114052, - [SMALL_STATE(2294)] = 114061, - [SMALL_STATE(2295)] = 114070, - [SMALL_STATE(2296)] = 114079, - [SMALL_STATE(2297)] = 114088, - [SMALL_STATE(2298)] = 114097, - [SMALL_STATE(2299)] = 114108, - [SMALL_STATE(2300)] = 114117, - [SMALL_STATE(2301)] = 114126, - [SMALL_STATE(2302)] = 114135, - [SMALL_STATE(2303)] = 114144, - [SMALL_STATE(2304)] = 114153, - [SMALL_STATE(2305)] = 114162, - [SMALL_STATE(2306)] = 114173, - [SMALL_STATE(2307)] = 114182, - [SMALL_STATE(2308)] = 114191, - [SMALL_STATE(2309)] = 114202, - [SMALL_STATE(2310)] = 114213, - [SMALL_STATE(2311)] = 114222, - [SMALL_STATE(2312)] = 114231, - [SMALL_STATE(2313)] = 114240, - [SMALL_STATE(2314)] = 114251, - [SMALL_STATE(2315)] = 114260, - [SMALL_STATE(2316)] = 114269, - [SMALL_STATE(2317)] = 114278, - [SMALL_STATE(2318)] = 114289, - [SMALL_STATE(2319)] = 114298, - [SMALL_STATE(2320)] = 114307, - [SMALL_STATE(2321)] = 114316, - [SMALL_STATE(2322)] = 114325, - [SMALL_STATE(2323)] = 114334, - [SMALL_STATE(2324)] = 114345, - [SMALL_STATE(2325)] = 114354, - [SMALL_STATE(2326)] = 114363, - [SMALL_STATE(2327)] = 114372, - [SMALL_STATE(2328)] = 114381, - [SMALL_STATE(2329)] = 114390, - [SMALL_STATE(2330)] = 114399, - [SMALL_STATE(2331)] = 114408, - [SMALL_STATE(2332)] = 114417, - [SMALL_STATE(2333)] = 114426, - [SMALL_STATE(2334)] = 114435, - [SMALL_STATE(2335)] = 114443, - [SMALL_STATE(2336)] = 114451, - [SMALL_STATE(2337)] = 114459, - [SMALL_STATE(2338)] = 114467, - [SMALL_STATE(2339)] = 114475, - [SMALL_STATE(2340)] = 114483, - [SMALL_STATE(2341)] = 114491, - [SMALL_STATE(2342)] = 114499, - [SMALL_STATE(2343)] = 114507, - [SMALL_STATE(2344)] = 114515, - [SMALL_STATE(2345)] = 114523, - [SMALL_STATE(2346)] = 114531, - [SMALL_STATE(2347)] = 114539, - [SMALL_STATE(2348)] = 114547, - [SMALL_STATE(2349)] = 114555, - [SMALL_STATE(2350)] = 114563, - [SMALL_STATE(2351)] = 114571, - [SMALL_STATE(2352)] = 114579, - [SMALL_STATE(2353)] = 114587, - [SMALL_STATE(2354)] = 114595, - [SMALL_STATE(2355)] = 114603, - [SMALL_STATE(2356)] = 114611, - [SMALL_STATE(2357)] = 114619, - [SMALL_STATE(2358)] = 114627, - [SMALL_STATE(2359)] = 114635, - [SMALL_STATE(2360)] = 114643, - [SMALL_STATE(2361)] = 114651, - [SMALL_STATE(2362)] = 114659, - [SMALL_STATE(2363)] = 114667, - [SMALL_STATE(2364)] = 114675, - [SMALL_STATE(2365)] = 114683, - [SMALL_STATE(2366)] = 114691, - [SMALL_STATE(2367)] = 114699, - [SMALL_STATE(2368)] = 114707, - [SMALL_STATE(2369)] = 114715, - [SMALL_STATE(2370)] = 114723, - [SMALL_STATE(2371)] = 114731, - [SMALL_STATE(2372)] = 114739, - [SMALL_STATE(2373)] = 114747, - [SMALL_STATE(2374)] = 114755, - [SMALL_STATE(2375)] = 114763, - [SMALL_STATE(2376)] = 114771, - [SMALL_STATE(2377)] = 114779, - [SMALL_STATE(2378)] = 114787, - [SMALL_STATE(2379)] = 114795, - [SMALL_STATE(2380)] = 114803, - [SMALL_STATE(2381)] = 114811, - [SMALL_STATE(2382)] = 114819, - [SMALL_STATE(2383)] = 114827, - [SMALL_STATE(2384)] = 114835, - [SMALL_STATE(2385)] = 114843, - [SMALL_STATE(2386)] = 114851, - [SMALL_STATE(2387)] = 114859, - [SMALL_STATE(2388)] = 114867, - [SMALL_STATE(2389)] = 114875, - [SMALL_STATE(2390)] = 114883, - [SMALL_STATE(2391)] = 114891, - [SMALL_STATE(2392)] = 114899, - [SMALL_STATE(2393)] = 114907, - [SMALL_STATE(2394)] = 114915, - [SMALL_STATE(2395)] = 114923, - [SMALL_STATE(2396)] = 114931, - [SMALL_STATE(2397)] = 114939, - [SMALL_STATE(2398)] = 114947, - [SMALL_STATE(2399)] = 114955, - [SMALL_STATE(2400)] = 114963, - [SMALL_STATE(2401)] = 114971, - [SMALL_STATE(2402)] = 114979, - [SMALL_STATE(2403)] = 114987, - [SMALL_STATE(2404)] = 114995, - [SMALL_STATE(2405)] = 115003, - [SMALL_STATE(2406)] = 115011, - [SMALL_STATE(2407)] = 115019, - [SMALL_STATE(2408)] = 115027, - [SMALL_STATE(2409)] = 115035, - [SMALL_STATE(2410)] = 115043, - [SMALL_STATE(2411)] = 115051, - [SMALL_STATE(2412)] = 115059, - [SMALL_STATE(2413)] = 115067, - [SMALL_STATE(2414)] = 115075, - [SMALL_STATE(2415)] = 115083, - [SMALL_STATE(2416)] = 115091, - [SMALL_STATE(2417)] = 115099, - [SMALL_STATE(2418)] = 115107, - [SMALL_STATE(2419)] = 115115, - [SMALL_STATE(2420)] = 115123, - [SMALL_STATE(2421)] = 115131, - [SMALL_STATE(2422)] = 115139, - [SMALL_STATE(2423)] = 115147, - [SMALL_STATE(2424)] = 115155, - [SMALL_STATE(2425)] = 115163, - [SMALL_STATE(2426)] = 115171, - [SMALL_STATE(2427)] = 115179, - [SMALL_STATE(2428)] = 115187, - [SMALL_STATE(2429)] = 115195, - [SMALL_STATE(2430)] = 115203, - [SMALL_STATE(2431)] = 115211, - [SMALL_STATE(2432)] = 115219, - [SMALL_STATE(2433)] = 115227, - [SMALL_STATE(2434)] = 115235, - [SMALL_STATE(2435)] = 115243, - [SMALL_STATE(2436)] = 115251, - [SMALL_STATE(2437)] = 115259, - [SMALL_STATE(2438)] = 115267, - [SMALL_STATE(2439)] = 115275, - [SMALL_STATE(2440)] = 115283, - [SMALL_STATE(2441)] = 115291, - [SMALL_STATE(2442)] = 115299, - [SMALL_STATE(2443)] = 115307, - [SMALL_STATE(2444)] = 115315, - [SMALL_STATE(2445)] = 115323, - [SMALL_STATE(2446)] = 115331, - [SMALL_STATE(2447)] = 115339, - [SMALL_STATE(2448)] = 115347, - [SMALL_STATE(2449)] = 115355, - [SMALL_STATE(2450)] = 115363, - [SMALL_STATE(2451)] = 115371, - [SMALL_STATE(2452)] = 115379, - [SMALL_STATE(2453)] = 115387, - [SMALL_STATE(2454)] = 115395, - [SMALL_STATE(2455)] = 115403, - [SMALL_STATE(2456)] = 115411, - [SMALL_STATE(2457)] = 115419, - [SMALL_STATE(2458)] = 115427, - [SMALL_STATE(2459)] = 115435, - [SMALL_STATE(2460)] = 115443, - [SMALL_STATE(2461)] = 115451, - [SMALL_STATE(2462)] = 115459, - [SMALL_STATE(2463)] = 115467, - [SMALL_STATE(2464)] = 115475, - [SMALL_STATE(2465)] = 115483, - [SMALL_STATE(2466)] = 115491, - [SMALL_STATE(2467)] = 115499, - [SMALL_STATE(2468)] = 115507, - [SMALL_STATE(2469)] = 115515, - [SMALL_STATE(2470)] = 115523, - [SMALL_STATE(2471)] = 115531, - [SMALL_STATE(2472)] = 115539, - [SMALL_STATE(2473)] = 115547, - [SMALL_STATE(2474)] = 115555, - [SMALL_STATE(2475)] = 115563, - [SMALL_STATE(2476)] = 115571, - [SMALL_STATE(2477)] = 115579, - [SMALL_STATE(2478)] = 115587, - [SMALL_STATE(2479)] = 115595, - [SMALL_STATE(2480)] = 115603, - [SMALL_STATE(2481)] = 115611, - [SMALL_STATE(2482)] = 115619, - [SMALL_STATE(2483)] = 115627, - [SMALL_STATE(2484)] = 115635, - [SMALL_STATE(2485)] = 115643, - [SMALL_STATE(2486)] = 115651, - [SMALL_STATE(2487)] = 115659, - [SMALL_STATE(2488)] = 115667, - [SMALL_STATE(2489)] = 115675, - [SMALL_STATE(2490)] = 115683, - [SMALL_STATE(2491)] = 115691, - [SMALL_STATE(2492)] = 115699, - [SMALL_STATE(2493)] = 115707, - [SMALL_STATE(2494)] = 115715, - [SMALL_STATE(2495)] = 115723, - [SMALL_STATE(2496)] = 115731, - [SMALL_STATE(2497)] = 115739, - [SMALL_STATE(2498)] = 115747, - [SMALL_STATE(2499)] = 115755, - [SMALL_STATE(2500)] = 115763, - [SMALL_STATE(2501)] = 115771, - [SMALL_STATE(2502)] = 115779, - [SMALL_STATE(2503)] = 115787, - [SMALL_STATE(2504)] = 115795, - [SMALL_STATE(2505)] = 115803, - [SMALL_STATE(2506)] = 115811, - [SMALL_STATE(2507)] = 115819, - [SMALL_STATE(2508)] = 115827, - [SMALL_STATE(2509)] = 115835, - [SMALL_STATE(2510)] = 115843, - [SMALL_STATE(2511)] = 115851, - [SMALL_STATE(2512)] = 115859, - [SMALL_STATE(2513)] = 115867, - [SMALL_STATE(2514)] = 115875, - [SMALL_STATE(2515)] = 115883, - [SMALL_STATE(2516)] = 115891, - [SMALL_STATE(2517)] = 115899, - [SMALL_STATE(2518)] = 115907, - [SMALL_STATE(2519)] = 115915, - [SMALL_STATE(2520)] = 115923, - [SMALL_STATE(2521)] = 115931, - [SMALL_STATE(2522)] = 115939, - [SMALL_STATE(2523)] = 115947, - [SMALL_STATE(2524)] = 115955, - [SMALL_STATE(2525)] = 115963, - [SMALL_STATE(2526)] = 115971, - [SMALL_STATE(2527)] = 115979, - [SMALL_STATE(2528)] = 115987, - [SMALL_STATE(2529)] = 115995, - [SMALL_STATE(2530)] = 116003, - [SMALL_STATE(2531)] = 116011, - [SMALL_STATE(2532)] = 116019, - [SMALL_STATE(2533)] = 116027, - [SMALL_STATE(2534)] = 116035, - [SMALL_STATE(2535)] = 116043, - [SMALL_STATE(2536)] = 116051, - [SMALL_STATE(2537)] = 116059, - [SMALL_STATE(2538)] = 116067, - [SMALL_STATE(2539)] = 116075, - [SMALL_STATE(2540)] = 116083, - [SMALL_STATE(2541)] = 116091, - [SMALL_STATE(2542)] = 116099, - [SMALL_STATE(2543)] = 116107, - [SMALL_STATE(2544)] = 116115, + [SMALL_STATE(173)] = 0, + [SMALL_STATE(174)] = 110, + [SMALL_STATE(175)] = 231, + [SMALL_STATE(176)] = 352, + [SMALL_STATE(177)] = 473, + [SMALL_STATE(178)] = 594, + [SMALL_STATE(179)] = 715, + [SMALL_STATE(180)] = 832, + [SMALL_STATE(181)] = 953, + [SMALL_STATE(182)] = 1078, + [SMALL_STATE(183)] = 1203, + [SMALL_STATE(184)] = 1326, + [SMALL_STATE(185)] = 1443, + [SMALL_STATE(186)] = 1560, + [SMALL_STATE(187)] = 1681, + [SMALL_STATE(188)] = 1804, + [SMALL_STATE(189)] = 1925, + [SMALL_STATE(190)] = 2046, + [SMALL_STATE(191)] = 2167, + [SMALL_STATE(192)] = 2288, + [SMALL_STATE(193)] = 2409, + [SMALL_STATE(194)] = 2532, + [SMALL_STATE(195)] = 2653, + [SMALL_STATE(196)] = 2776, + [SMALL_STATE(197)] = 2897, + [SMALL_STATE(198)] = 3018, + [SMALL_STATE(199)] = 3139, + [SMALL_STATE(200)] = 3262, + [SMALL_STATE(201)] = 3385, + [SMALL_STATE(202)] = 3506, + [SMALL_STATE(203)] = 3627, + [SMALL_STATE(204)] = 3750, + [SMALL_STATE(205)] = 3873, + [SMALL_STATE(206)] = 3977, + [SMALL_STATE(207)] = 4081, + [SMALL_STATE(208)] = 4194, + [SMALL_STATE(209)] = 4307, + [SMALL_STATE(210)] = 4409, + [SMALL_STATE(211)] = 4523, + [SMALL_STATE(212)] = 4635, + [SMALL_STATE(213)] = 4747, + [SMALL_STATE(214)] = 4859, + [SMALL_STATE(215)] = 4967, + [SMALL_STATE(216)] = 5079, + [SMALL_STATE(217)] = 5191, + [SMALL_STATE(218)] = 5303, + [SMALL_STATE(219)] = 5415, + [SMALL_STATE(220)] = 5517, + [SMALL_STATE(221)] = 5629, + [SMALL_STATE(222)] = 5741, + [SMALL_STATE(223)] = 5850, + [SMALL_STATE(224)] = 5959, + [SMALL_STATE(225)] = 6068, + [SMALL_STATE(226)] = 6181, + [SMALL_STATE(227)] = 6290, + [SMALL_STATE(228)] = 6399, + [SMALL_STATE(229)] = 6510, + [SMALL_STATE(230)] = 6621, + [SMALL_STATE(231)] = 6730, + [SMALL_STATE(232)] = 6839, + [SMALL_STATE(233)] = 6948, + [SMALL_STATE(234)] = 7057, + [SMALL_STATE(235)] = 7166, + [SMALL_STATE(236)] = 7279, + [SMALL_STATE(237)] = 7388, + [SMALL_STATE(238)] = 7499, + [SMALL_STATE(239)] = 7608, + [SMALL_STATE(240)] = 7721, + [SMALL_STATE(241)] = 7830, + [SMALL_STATE(242)] = 7939, + [SMALL_STATE(243)] = 8048, + [SMALL_STATE(244)] = 8157, + [SMALL_STATE(245)] = 8266, + [SMALL_STATE(246)] = 8375, + [SMALL_STATE(247)] = 8484, + [SMALL_STATE(248)] = 8593, + [SMALL_STATE(249)] = 8702, + [SMALL_STATE(250)] = 8815, + [SMALL_STATE(251)] = 8924, + [SMALL_STATE(252)] = 9033, + [SMALL_STATE(253)] = 9142, + [SMALL_STATE(254)] = 9253, + [SMALL_STATE(255)] = 9362, + [SMALL_STATE(256)] = 9471, + [SMALL_STATE(257)] = 9580, + [SMALL_STATE(258)] = 9691, + [SMALL_STATE(259)] = 9800, + [SMALL_STATE(260)] = 9909, + [SMALL_STATE(261)] = 10018, + [SMALL_STATE(262)] = 10129, + [SMALL_STATE(263)] = 10238, + [SMALL_STATE(264)] = 10347, + [SMALL_STATE(265)] = 10456, + [SMALL_STATE(266)] = 10565, + [SMALL_STATE(267)] = 10678, + [SMALL_STATE(268)] = 10787, + [SMALL_STATE(269)] = 10896, + [SMALL_STATE(270)] = 11007, + [SMALL_STATE(271)] = 11116, + [SMALL_STATE(272)] = 11227, + [SMALL_STATE(273)] = 11336, + [SMALL_STATE(274)] = 11449, + [SMALL_STATE(275)] = 11558, + [SMALL_STATE(276)] = 11667, + [SMALL_STATE(277)] = 11773, + [SMALL_STATE(278)] = 11879, + [SMALL_STATE(279)] = 11981, + [SMALL_STATE(280)] = 12087, + [SMALL_STATE(281)] = 12193, + [SMALL_STATE(282)] = 12299, + [SMALL_STATE(283)] = 12405, + [SMALL_STATE(284)] = 12511, + [SMALL_STATE(285)] = 12617, + [SMALL_STATE(286)] = 12723, + [SMALL_STATE(287)] = 12829, + [SMALL_STATE(288)] = 12935, + [SMALL_STATE(289)] = 13041, + [SMALL_STATE(290)] = 13147, + [SMALL_STATE(291)] = 13249, + [SMALL_STATE(292)] = 13355, + [SMALL_STATE(293)] = 13461, + [SMALL_STATE(294)] = 13567, + [SMALL_STATE(295)] = 13673, + [SMALL_STATE(296)] = 13779, + [SMALL_STATE(297)] = 13885, + [SMALL_STATE(298)] = 13990, + [SMALL_STATE(299)] = 14095, + [SMALL_STATE(300)] = 14200, + [SMALL_STATE(301)] = 14305, + [SMALL_STATE(302)] = 14408, + [SMALL_STATE(303)] = 14513, + [SMALL_STATE(304)] = 14618, + [SMALL_STATE(305)] = 14721, + [SMALL_STATE(306)] = 14824, + [SMALL_STATE(307)] = 14929, + [SMALL_STATE(308)] = 15034, + [SMALL_STATE(309)] = 15139, + [SMALL_STATE(310)] = 15244, + [SMALL_STATE(311)] = 15349, + [SMALL_STATE(312)] = 15454, + [SMALL_STATE(313)] = 15559, + [SMALL_STATE(314)] = 15664, + [SMALL_STATE(315)] = 15769, + [SMALL_STATE(316)] = 15874, + [SMALL_STATE(317)] = 15979, + [SMALL_STATE(318)] = 16084, + [SMALL_STATE(319)] = 16189, + [SMALL_STATE(320)] = 16294, + [SMALL_STATE(321)] = 16396, + [SMALL_STATE(322)] = 16498, + [SMALL_STATE(323)] = 16602, + [SMALL_STATE(324)] = 16706, + [SMALL_STATE(325)] = 16810, + [SMALL_STATE(326)] = 16912, + [SMALL_STATE(327)] = 17016, + [SMALL_STATE(328)] = 17120, + [SMALL_STATE(329)] = 17224, + [SMALL_STATE(330)] = 17326, + [SMALL_STATE(331)] = 17428, + [SMALL_STATE(332)] = 17532, + [SMALL_STATE(333)] = 17636, + [SMALL_STATE(334)] = 17738, + [SMALL_STATE(335)] = 17842, + [SMALL_STATE(336)] = 17946, + [SMALL_STATE(337)] = 18050, + [SMALL_STATE(338)] = 18154, + [SMALL_STATE(339)] = 18258, + [SMALL_STATE(340)] = 18362, + [SMALL_STATE(341)] = 18466, + [SMALL_STATE(342)] = 18570, + [SMALL_STATE(343)] = 18674, + [SMALL_STATE(344)] = 18778, + [SMALL_STATE(345)] = 18882, + [SMALL_STATE(346)] = 18986, + [SMALL_STATE(347)] = 19090, + [SMALL_STATE(348)] = 19194, + [SMALL_STATE(349)] = 19298, + [SMALL_STATE(350)] = 19402, + [SMALL_STATE(351)] = 19506, + [SMALL_STATE(352)] = 19610, + [SMALL_STATE(353)] = 19714, + [SMALL_STATE(354)] = 19818, + [SMALL_STATE(355)] = 19922, + [SMALL_STATE(356)] = 20026, + [SMALL_STATE(357)] = 20130, + [SMALL_STATE(358)] = 20234, + [SMALL_STATE(359)] = 20333, + [SMALL_STATE(360)] = 20432, + [SMALL_STATE(361)] = 20531, + [SMALL_STATE(362)] = 20630, + [SMALL_STATE(363)] = 20731, + [SMALL_STATE(364)] = 20832, + [SMALL_STATE(365)] = 20931, + [SMALL_STATE(366)] = 21032, + [SMALL_STATE(367)] = 21131, + [SMALL_STATE(368)] = 21230, + [SMALL_STATE(369)] = 21331, + [SMALL_STATE(370)] = 21406, + [SMALL_STATE(371)] = 21505, + [SMALL_STATE(372)] = 21606, + [SMALL_STATE(373)] = 21681, + [SMALL_STATE(374)] = 21780, + [SMALL_STATE(375)] = 21879, + [SMALL_STATE(376)] = 21980, + [SMALL_STATE(377)] = 22079, + [SMALL_STATE(378)] = 22178, + [SMALL_STATE(379)] = 22277, + [SMALL_STATE(380)] = 22376, + [SMALL_STATE(381)] = 22477, + [SMALL_STATE(382)] = 22578, + [SMALL_STATE(383)] = 22679, + [SMALL_STATE(384)] = 22778, + [SMALL_STATE(385)] = 22877, + [SMALL_STATE(386)] = 22976, + [SMALL_STATE(387)] = 23075, + [SMALL_STATE(388)] = 23176, + [SMALL_STATE(389)] = 23277, + [SMALL_STATE(390)] = 23376, + [SMALL_STATE(391)] = 23451, + [SMALL_STATE(392)] = 23550, + [SMALL_STATE(393)] = 23651, + [SMALL_STATE(394)] = 23750, + [SMALL_STATE(395)] = 23849, + [SMALL_STATE(396)] = 23948, + [SMALL_STATE(397)] = 24049, + [SMALL_STATE(398)] = 24148, + [SMALL_STATE(399)] = 24247, + [SMALL_STATE(400)] = 24346, + [SMALL_STATE(401)] = 24445, + [SMALL_STATE(402)] = 24544, + [SMALL_STATE(403)] = 24645, + [SMALL_STATE(404)] = 24746, + [SMALL_STATE(405)] = 24847, + [SMALL_STATE(406)] = 24948, + [SMALL_STATE(407)] = 25049, + [SMALL_STATE(408)] = 25150, + [SMALL_STATE(409)] = 25248, + [SMALL_STATE(410)] = 25346, + [SMALL_STATE(411)] = 25444, + [SMALL_STATE(412)] = 25542, + [SMALL_STATE(413)] = 25640, + [SMALL_STATE(414)] = 25738, + [SMALL_STATE(415)] = 25836, + [SMALL_STATE(416)] = 25934, + [SMALL_STATE(417)] = 26032, + [SMALL_STATE(418)] = 26130, + [SMALL_STATE(419)] = 26228, + [SMALL_STATE(420)] = 26326, + [SMALL_STATE(421)] = 26424, + [SMALL_STATE(422)] = 26522, + [SMALL_STATE(423)] = 26620, + [SMALL_STATE(424)] = 26718, + [SMALL_STATE(425)] = 26816, + [SMALL_STATE(426)] = 26914, + [SMALL_STATE(427)] = 27012, + [SMALL_STATE(428)] = 27110, + [SMALL_STATE(429)] = 27208, + [SMALL_STATE(430)] = 27306, + [SMALL_STATE(431)] = 27401, + [SMALL_STATE(432)] = 27496, + [SMALL_STATE(433)] = 27591, + [SMALL_STATE(434)] = 27686, + [SMALL_STATE(435)] = 27781, + [SMALL_STATE(436)] = 27876, + [SMALL_STATE(437)] = 27971, + [SMALL_STATE(438)] = 28066, + [SMALL_STATE(439)] = 28161, + [SMALL_STATE(440)] = 28256, + [SMALL_STATE(441)] = 28351, + [SMALL_STATE(442)] = 28446, + [SMALL_STATE(443)] = 28541, + [SMALL_STATE(444)] = 28636, + [SMALL_STATE(445)] = 28731, + [SMALL_STATE(446)] = 28826, + [SMALL_STATE(447)] = 28921, + [SMALL_STATE(448)] = 29016, + [SMALL_STATE(449)] = 29111, + [SMALL_STATE(450)] = 29206, + [SMALL_STATE(451)] = 29301, + [SMALL_STATE(452)] = 29396, + [SMALL_STATE(453)] = 29491, + [SMALL_STATE(454)] = 29586, + [SMALL_STATE(455)] = 29681, + [SMALL_STATE(456)] = 29776, + [SMALL_STATE(457)] = 29871, + [SMALL_STATE(458)] = 29966, + [SMALL_STATE(459)] = 30061, + [SMALL_STATE(460)] = 30156, + [SMALL_STATE(461)] = 30251, + [SMALL_STATE(462)] = 30346, + [SMALL_STATE(463)] = 30441, + [SMALL_STATE(464)] = 30536, + [SMALL_STATE(465)] = 30631, + [SMALL_STATE(466)] = 30726, + [SMALL_STATE(467)] = 30821, + [SMALL_STATE(468)] = 30916, + [SMALL_STATE(469)] = 31011, + [SMALL_STATE(470)] = 31106, + [SMALL_STATE(471)] = 31201, + [SMALL_STATE(472)] = 31296, + [SMALL_STATE(473)] = 31391, + [SMALL_STATE(474)] = 31486, + [SMALL_STATE(475)] = 31581, + [SMALL_STATE(476)] = 31676, + [SMALL_STATE(477)] = 31771, + [SMALL_STATE(478)] = 31866, + [SMALL_STATE(479)] = 31961, + [SMALL_STATE(480)] = 32056, + [SMALL_STATE(481)] = 32151, + [SMALL_STATE(482)] = 32246, + [SMALL_STATE(483)] = 32317, + [SMALL_STATE(484)] = 32388, + [SMALL_STATE(485)] = 32483, + [SMALL_STATE(486)] = 32578, + [SMALL_STATE(487)] = 32673, + [SMALL_STATE(488)] = 32768, + [SMALL_STATE(489)] = 32863, + [SMALL_STATE(490)] = 32958, + [SMALL_STATE(491)] = 33053, + [SMALL_STATE(492)] = 33148, + [SMALL_STATE(493)] = 33243, + [SMALL_STATE(494)] = 33314, + [SMALL_STATE(495)] = 33385, + [SMALL_STATE(496)] = 33480, + [SMALL_STATE(497)] = 33575, + [SMALL_STATE(498)] = 33670, + [SMALL_STATE(499)] = 33765, + [SMALL_STATE(500)] = 33860, + [SMALL_STATE(501)] = 33955, + [SMALL_STATE(502)] = 34050, + [SMALL_STATE(503)] = 34145, + [SMALL_STATE(504)] = 34240, + [SMALL_STATE(505)] = 34335, + [SMALL_STATE(506)] = 34430, + [SMALL_STATE(507)] = 34525, + [SMALL_STATE(508)] = 34620, + [SMALL_STATE(509)] = 34715, + [SMALL_STATE(510)] = 34810, + [SMALL_STATE(511)] = 34905, + [SMALL_STATE(512)] = 35000, + [SMALL_STATE(513)] = 35095, + [SMALL_STATE(514)] = 35190, + [SMALL_STATE(515)] = 35285, + [SMALL_STATE(516)] = 35380, + [SMALL_STATE(517)] = 35475, + [SMALL_STATE(518)] = 35570, + [SMALL_STATE(519)] = 35667, + [SMALL_STATE(520)] = 35762, + [SMALL_STATE(521)] = 35857, + [SMALL_STATE(522)] = 35952, + [SMALL_STATE(523)] = 36047, + [SMALL_STATE(524)] = 36142, + [SMALL_STATE(525)] = 36237, + [SMALL_STATE(526)] = 36332, + [SMALL_STATE(527)] = 36427, + [SMALL_STATE(528)] = 36522, + [SMALL_STATE(529)] = 36617, + [SMALL_STATE(530)] = 36712, + [SMALL_STATE(531)] = 36807, + [SMALL_STATE(532)] = 36902, + [SMALL_STATE(533)] = 36997, + [SMALL_STATE(534)] = 37092, + [SMALL_STATE(535)] = 37187, + [SMALL_STATE(536)] = 37258, + [SMALL_STATE(537)] = 37329, + [SMALL_STATE(538)] = 37424, + [SMALL_STATE(539)] = 37519, + [SMALL_STATE(540)] = 37614, + [SMALL_STATE(541)] = 37709, + [SMALL_STATE(542)] = 37804, + [SMALL_STATE(543)] = 37899, + [SMALL_STATE(544)] = 37994, + [SMALL_STATE(545)] = 38089, + [SMALL_STATE(546)] = 38184, + [SMALL_STATE(547)] = 38279, + [SMALL_STATE(548)] = 38374, + [SMALL_STATE(549)] = 38469, + [SMALL_STATE(550)] = 38564, + [SMALL_STATE(551)] = 38659, + [SMALL_STATE(552)] = 38754, + [SMALL_STATE(553)] = 38849, + [SMALL_STATE(554)] = 38944, + [SMALL_STATE(555)] = 39039, + [SMALL_STATE(556)] = 39134, + [SMALL_STATE(557)] = 39229, + [SMALL_STATE(558)] = 39324, + [SMALL_STATE(559)] = 39419, + [SMALL_STATE(560)] = 39514, + [SMALL_STATE(561)] = 39611, + [SMALL_STATE(562)] = 39706, + [SMALL_STATE(563)] = 39801, + [SMALL_STATE(564)] = 39896, + [SMALL_STATE(565)] = 39991, + [SMALL_STATE(566)] = 40086, + [SMALL_STATE(567)] = 40181, + [SMALL_STATE(568)] = 40276, + [SMALL_STATE(569)] = 40347, + [SMALL_STATE(570)] = 40442, + [SMALL_STATE(571)] = 40537, + [SMALL_STATE(572)] = 40608, + [SMALL_STATE(573)] = 40703, + [SMALL_STATE(574)] = 40798, + [SMALL_STATE(575)] = 40895, + [SMALL_STATE(576)] = 40992, + [SMALL_STATE(577)] = 41087, + [SMALL_STATE(578)] = 41182, + [SMALL_STATE(579)] = 41277, + [SMALL_STATE(580)] = 41372, + [SMALL_STATE(581)] = 41467, + [SMALL_STATE(582)] = 41562, + [SMALL_STATE(583)] = 41657, + [SMALL_STATE(584)] = 41752, + [SMALL_STATE(585)] = 41847, + [SMALL_STATE(586)] = 41942, + [SMALL_STATE(587)] = 42037, + [SMALL_STATE(588)] = 42132, + [SMALL_STATE(589)] = 42227, + [SMALL_STATE(590)] = 42322, + [SMALL_STATE(591)] = 42417, + [SMALL_STATE(592)] = 42512, + [SMALL_STATE(593)] = 42607, + [SMALL_STATE(594)] = 42702, + [SMALL_STATE(595)] = 42797, + [SMALL_STATE(596)] = 42892, + [SMALL_STATE(597)] = 42987, + [SMALL_STATE(598)] = 43082, + [SMALL_STATE(599)] = 43177, + [SMALL_STATE(600)] = 43272, + [SMALL_STATE(601)] = 43367, + [SMALL_STATE(602)] = 43462, + [SMALL_STATE(603)] = 43557, + [SMALL_STATE(604)] = 43652, + [SMALL_STATE(605)] = 43747, + [SMALL_STATE(606)] = 43842, + [SMALL_STATE(607)] = 43937, + [SMALL_STATE(608)] = 44032, + [SMALL_STATE(609)] = 44127, + [SMALL_STATE(610)] = 44222, + [SMALL_STATE(611)] = 44317, + [SMALL_STATE(612)] = 44412, + [SMALL_STATE(613)] = 44507, + [SMALL_STATE(614)] = 44602, + [SMALL_STATE(615)] = 44697, + [SMALL_STATE(616)] = 44792, + [SMALL_STATE(617)] = 44889, + [SMALL_STATE(618)] = 44984, + [SMALL_STATE(619)] = 45079, + [SMALL_STATE(620)] = 45174, + [SMALL_STATE(621)] = 45269, + [SMALL_STATE(622)] = 45364, + [SMALL_STATE(623)] = 45459, + [SMALL_STATE(624)] = 45554, + [SMALL_STATE(625)] = 45649, + [SMALL_STATE(626)] = 45744, + [SMALL_STATE(627)] = 45841, + [SMALL_STATE(628)] = 45936, + [SMALL_STATE(629)] = 46031, + [SMALL_STATE(630)] = 46126, + [SMALL_STATE(631)] = 46221, + [SMALL_STATE(632)] = 46316, + [SMALL_STATE(633)] = 46411, + [SMALL_STATE(634)] = 46506, + [SMALL_STATE(635)] = 46572, + [SMALL_STATE(636)] = 46638, + [SMALL_STATE(637)] = 46695, + [SMALL_STATE(638)] = 46756, + [SMALL_STATE(639)] = 46813, + [SMALL_STATE(640)] = 46880, + [SMALL_STATE(641)] = 46943, + [SMALL_STATE(642)] = 47010, + [SMALL_STATE(643)] = 47077, + [SMALL_STATE(644)] = 47144, + [SMALL_STATE(645)] = 47205, + [SMALL_STATE(646)] = 47266, + [SMALL_STATE(647)] = 47327, + [SMALL_STATE(648)] = 47388, + [SMALL_STATE(649)] = 47449, + [SMALL_STATE(650)] = 47516, + [SMALL_STATE(651)] = 47583, + [SMALL_STATE(652)] = 47646, + [SMALL_STATE(653)] = 47703, + [SMALL_STATE(654)] = 47760, + [SMALL_STATE(655)] = 47817, + [SMALL_STATE(656)] = 47884, + [SMALL_STATE(657)] = 47951, + [SMALL_STATE(658)] = 48008, + [SMALL_STATE(659)] = 48071, + [SMALL_STATE(660)] = 48128, + [SMALL_STATE(661)] = 48191, + [SMALL_STATE(662)] = 48253, + [SMALL_STATE(663)] = 48315, + [SMALL_STATE(664)] = 48370, + [SMALL_STATE(665)] = 48425, + [SMALL_STATE(666)] = 48480, + [SMALL_STATE(667)] = 48535, + [SMALL_STATE(668)] = 48590, + [SMALL_STATE(669)] = 48645, + [SMALL_STATE(670)] = 48700, + [SMALL_STATE(671)] = 48755, + [SMALL_STATE(672)] = 48810, + [SMALL_STATE(673)] = 48865, + [SMALL_STATE(674)] = 48920, + [SMALL_STATE(675)] = 48975, + [SMALL_STATE(676)] = 49030, + [SMALL_STATE(677)] = 49085, + [SMALL_STATE(678)] = 49140, + [SMALL_STATE(679)] = 49195, + [SMALL_STATE(680)] = 49250, + [SMALL_STATE(681)] = 49305, + [SMALL_STATE(682)] = 49360, + [SMALL_STATE(683)] = 49415, + [SMALL_STATE(684)] = 49504, + [SMALL_STATE(685)] = 49559, + [SMALL_STATE(686)] = 49614, + [SMALL_STATE(687)] = 49669, + [SMALL_STATE(688)] = 49724, + [SMALL_STATE(689)] = 49779, + [SMALL_STATE(690)] = 49834, + [SMALL_STATE(691)] = 49889, + [SMALL_STATE(692)] = 49944, + [SMALL_STATE(693)] = 49999, + [SMALL_STATE(694)] = 50054, + [SMALL_STATE(695)] = 50109, + [SMALL_STATE(696)] = 50164, + [SMALL_STATE(697)] = 50219, + [SMALL_STATE(698)] = 50274, + [SMALL_STATE(699)] = 50329, + [SMALL_STATE(700)] = 50384, + [SMALL_STATE(701)] = 50439, + [SMALL_STATE(702)] = 50494, + [SMALL_STATE(703)] = 50549, + [SMALL_STATE(704)] = 50604, + [SMALL_STATE(705)] = 50659, + [SMALL_STATE(706)] = 50714, + [SMALL_STATE(707)] = 50769, + [SMALL_STATE(708)] = 50824, + [SMALL_STATE(709)] = 50913, + [SMALL_STATE(710)] = 50968, + [SMALL_STATE(711)] = 51023, + [SMALL_STATE(712)] = 51078, + [SMALL_STATE(713)] = 51133, + [SMALL_STATE(714)] = 51188, + [SMALL_STATE(715)] = 51243, + [SMALL_STATE(716)] = 51301, + [SMALL_STATE(717)] = 51359, + [SMALL_STATE(718)] = 51417, + [SMALL_STATE(719)] = 51475, + [SMALL_STATE(720)] = 51533, + [SMALL_STATE(721)] = 51591, + [SMALL_STATE(722)] = 51645, + [SMALL_STATE(723)] = 51699, + [SMALL_STATE(724)] = 51757, + [SMALL_STATE(725)] = 51811, + [SMALL_STATE(726)] = 51869, + [SMALL_STATE(727)] = 51923, + [SMALL_STATE(728)] = 51981, + [SMALL_STATE(729)] = 52039, + [SMALL_STATE(730)] = 52097, + [SMALL_STATE(731)] = 52155, + [SMALL_STATE(732)] = 52213, + [SMALL_STATE(733)] = 52271, + [SMALL_STATE(734)] = 52329, + [SMALL_STATE(735)] = 52383, + [SMALL_STATE(736)] = 52437, + [SMALL_STATE(737)] = 52495, + [SMALL_STATE(738)] = 52584, + [SMALL_STATE(739)] = 52637, + [SMALL_STATE(740)] = 52690, + [SMALL_STATE(741)] = 52779, + [SMALL_STATE(742)] = 52832, + [SMALL_STATE(743)] = 52885, + [SMALL_STATE(744)] = 52937, + [SMALL_STATE(745)] = 52989, + [SMALL_STATE(746)] = 53041, + [SMALL_STATE(747)] = 53093, + [SMALL_STATE(748)] = 53179, + [SMALL_STATE(749)] = 53231, + [SMALL_STATE(750)] = 53283, + [SMALL_STATE(751)] = 53335, + [SMALL_STATE(752)] = 53387, + [SMALL_STATE(753)] = 53439, + [SMALL_STATE(754)] = 53525, + [SMALL_STATE(755)] = 53577, + [SMALL_STATE(756)] = 53663, + [SMALL_STATE(757)] = 53749, + [SMALL_STATE(758)] = 53801, + [SMALL_STATE(759)] = 53853, + [SMALL_STATE(760)] = 53905, + [SMALL_STATE(761)] = 53957, + [SMALL_STATE(762)] = 54009, + [SMALL_STATE(763)] = 54061, + [SMALL_STATE(764)] = 54113, + [SMALL_STATE(765)] = 54165, + [SMALL_STATE(766)] = 54217, + [SMALL_STATE(767)] = 54269, + [SMALL_STATE(768)] = 54321, + [SMALL_STATE(769)] = 54407, + [SMALL_STATE(770)] = 54459, + [SMALL_STATE(771)] = 54511, + [SMALL_STATE(772)] = 54597, + [SMALL_STATE(773)] = 54649, + [SMALL_STATE(774)] = 54701, + [SMALL_STATE(775)] = 54753, + [SMALL_STATE(776)] = 54805, + [SMALL_STATE(777)] = 54857, + [SMALL_STATE(778)] = 54909, + [SMALL_STATE(779)] = 54995, + [SMALL_STATE(780)] = 55047, + [SMALL_STATE(781)] = 55099, + [SMALL_STATE(782)] = 55151, + [SMALL_STATE(783)] = 55237, + [SMALL_STATE(784)] = 55289, + [SMALL_STATE(785)] = 55375, + [SMALL_STATE(786)] = 55427, + [SMALL_STATE(787)] = 55479, + [SMALL_STATE(788)] = 55531, + [SMALL_STATE(789)] = 55583, + [SMALL_STATE(790)] = 55635, + [SMALL_STATE(791)] = 55687, + [SMALL_STATE(792)] = 55739, + [SMALL_STATE(793)] = 55791, + [SMALL_STATE(794)] = 55843, + [SMALL_STATE(795)] = 55895, + [SMALL_STATE(796)] = 55947, + [SMALL_STATE(797)] = 55999, + [SMALL_STATE(798)] = 56051, + [SMALL_STATE(799)] = 56103, + [SMALL_STATE(800)] = 56155, + [SMALL_STATE(801)] = 56241, + [SMALL_STATE(802)] = 56293, + [SMALL_STATE(803)] = 56345, + [SMALL_STATE(804)] = 56397, + [SMALL_STATE(805)] = 56449, + [SMALL_STATE(806)] = 56501, + [SMALL_STATE(807)] = 56587, + [SMALL_STATE(808)] = 56639, + [SMALL_STATE(809)] = 56691, + [SMALL_STATE(810)] = 56777, + [SMALL_STATE(811)] = 56863, + [SMALL_STATE(812)] = 56915, + [SMALL_STATE(813)] = 56967, + [SMALL_STATE(814)] = 57019, + [SMALL_STATE(815)] = 57071, + [SMALL_STATE(816)] = 57123, + [SMALL_STATE(817)] = 57175, + [SMALL_STATE(818)] = 57227, + [SMALL_STATE(819)] = 57279, + [SMALL_STATE(820)] = 57331, + [SMALL_STATE(821)] = 57383, + [SMALL_STATE(822)] = 57435, + [SMALL_STATE(823)] = 57487, + [SMALL_STATE(824)] = 57539, + [SMALL_STATE(825)] = 57591, + [SMALL_STATE(826)] = 57643, + [SMALL_STATE(827)] = 57695, + [SMALL_STATE(828)] = 57747, + [SMALL_STATE(829)] = 57799, + [SMALL_STATE(830)] = 57851, + [SMALL_STATE(831)] = 57903, + [SMALL_STATE(832)] = 57955, + [SMALL_STATE(833)] = 58007, + [SMALL_STATE(834)] = 58059, + [SMALL_STATE(835)] = 58145, + [SMALL_STATE(836)] = 58197, + [SMALL_STATE(837)] = 58249, + [SMALL_STATE(838)] = 58301, + [SMALL_STATE(839)] = 58353, + [SMALL_STATE(840)] = 58439, + [SMALL_STATE(841)] = 58491, + [SMALL_STATE(842)] = 58577, + [SMALL_STATE(843)] = 58629, + [SMALL_STATE(844)] = 58712, + [SMALL_STATE(845)] = 58795, + [SMALL_STATE(846)] = 58878, + [SMALL_STATE(847)] = 58961, + [SMALL_STATE(848)] = 59044, + [SMALL_STATE(849)] = 59127, + [SMALL_STATE(850)] = 59207, + [SMALL_STATE(851)] = 59287, + [SMALL_STATE(852)] = 59362, + [SMALL_STATE(853)] = 59437, + [SMALL_STATE(854)] = 59512, + [SMALL_STATE(855)] = 59587, + [SMALL_STATE(856)] = 59662, + [SMALL_STATE(857)] = 59737, + [SMALL_STATE(858)] = 59812, + [SMALL_STATE(859)] = 59887, + [SMALL_STATE(860)] = 59963, + [SMALL_STATE(861)] = 60035, + [SMALL_STATE(862)] = 60107, + [SMALL_STATE(863)] = 60179, + [SMALL_STATE(864)] = 60251, + [SMALL_STATE(865)] = 60323, + [SMALL_STATE(866)] = 60395, + [SMALL_STATE(867)] = 60467, + [SMALL_STATE(868)] = 60539, + [SMALL_STATE(869)] = 60611, + [SMALL_STATE(870)] = 60683, + [SMALL_STATE(871)] = 60755, + [SMALL_STATE(872)] = 60827, + [SMALL_STATE(873)] = 60899, + [SMALL_STATE(874)] = 60971, + [SMALL_STATE(875)] = 61043, + [SMALL_STATE(876)] = 61115, + [SMALL_STATE(877)] = 61187, + [SMALL_STATE(878)] = 61259, + [SMALL_STATE(879)] = 61335, + [SMALL_STATE(880)] = 61411, + [SMALL_STATE(881)] = 61483, + [SMALL_STATE(882)] = 61559, + [SMALL_STATE(883)] = 61631, + [SMALL_STATE(884)] = 61703, + [SMALL_STATE(885)] = 61775, + [SMALL_STATE(886)] = 61847, + [SMALL_STATE(887)] = 61919, + [SMALL_STATE(888)] = 61991, + [SMALL_STATE(889)] = 62063, + [SMALL_STATE(890)] = 62135, + [SMALL_STATE(891)] = 62207, + [SMALL_STATE(892)] = 62279, + [SMALL_STATE(893)] = 62351, + [SMALL_STATE(894)] = 62423, + [SMALL_STATE(895)] = 62495, + [SMALL_STATE(896)] = 62567, + [SMALL_STATE(897)] = 62639, + [SMALL_STATE(898)] = 62711, + [SMALL_STATE(899)] = 62783, + [SMALL_STATE(900)] = 62855, + [SMALL_STATE(901)] = 62927, + [SMALL_STATE(902)] = 63003, + [SMALL_STATE(903)] = 63075, + [SMALL_STATE(904)] = 63147, + [SMALL_STATE(905)] = 63219, + [SMALL_STATE(906)] = 63291, + [SMALL_STATE(907)] = 63363, + [SMALL_STATE(908)] = 63435, + [SMALL_STATE(909)] = 63511, + [SMALL_STATE(910)] = 63583, + [SMALL_STATE(911)] = 63655, + [SMALL_STATE(912)] = 63727, + [SMALL_STATE(913)] = 63799, + [SMALL_STATE(914)] = 63871, + [SMALL_STATE(915)] = 63943, + [SMALL_STATE(916)] = 64015, + [SMALL_STATE(917)] = 64087, + [SMALL_STATE(918)] = 64159, + [SMALL_STATE(919)] = 64231, + [SMALL_STATE(920)] = 64303, + [SMALL_STATE(921)] = 64379, + [SMALL_STATE(922)] = 64451, + [SMALL_STATE(923)] = 64523, + [SMALL_STATE(924)] = 64595, + [SMALL_STATE(925)] = 64667, + [SMALL_STATE(926)] = 64739, + [SMALL_STATE(927)] = 64811, + [SMALL_STATE(928)] = 64883, + [SMALL_STATE(929)] = 64955, + [SMALL_STATE(930)] = 65031, + [SMALL_STATE(931)] = 65103, + [SMALL_STATE(932)] = 65175, + [SMALL_STATE(933)] = 65247, + [SMALL_STATE(934)] = 65319, + [SMALL_STATE(935)] = 65391, + [SMALL_STATE(936)] = 65463, + [SMALL_STATE(937)] = 65539, + [SMALL_STATE(938)] = 65611, + [SMALL_STATE(939)] = 65683, + [SMALL_STATE(940)] = 65755, + [SMALL_STATE(941)] = 65827, + [SMALL_STATE(942)] = 65899, + [SMALL_STATE(943)] = 65971, + [SMALL_STATE(944)] = 66043, + [SMALL_STATE(945)] = 66115, + [SMALL_STATE(946)] = 66191, + [SMALL_STATE(947)] = 66263, + [SMALL_STATE(948)] = 66335, + [SMALL_STATE(949)] = 66407, + [SMALL_STATE(950)] = 66483, + [SMALL_STATE(951)] = 66559, + [SMALL_STATE(952)] = 66635, + [SMALL_STATE(953)] = 66707, + [SMALL_STATE(954)] = 66779, + [SMALL_STATE(955)] = 66855, + [SMALL_STATE(956)] = 66927, + [SMALL_STATE(957)] = 66999, + [SMALL_STATE(958)] = 67071, + [SMALL_STATE(959)] = 67147, + [SMALL_STATE(960)] = 67219, + [SMALL_STATE(961)] = 67291, + [SMALL_STATE(962)] = 67363, + [SMALL_STATE(963)] = 67435, + [SMALL_STATE(964)] = 67507, + [SMALL_STATE(965)] = 67579, + [SMALL_STATE(966)] = 67651, + [SMALL_STATE(967)] = 67723, + [SMALL_STATE(968)] = 67795, + [SMALL_STATE(969)] = 67867, + [SMALL_STATE(970)] = 67939, + [SMALL_STATE(971)] = 67990, + [SMALL_STATE(972)] = 68071, + [SMALL_STATE(973)] = 68122, + [SMALL_STATE(974)] = 68173, + [SMALL_STATE(975)] = 68254, + [SMALL_STATE(976)] = 68305, + [SMALL_STATE(977)] = 68386, + [SMALL_STATE(978)] = 68437, + [SMALL_STATE(979)] = 68488, + [SMALL_STATE(980)] = 68539, + [SMALL_STATE(981)] = 68590, + [SMALL_STATE(982)] = 68671, + [SMALL_STATE(983)] = 68752, + [SMALL_STATE(984)] = 68833, + [SMALL_STATE(985)] = 68884, + [SMALL_STATE(986)] = 68940, + [SMALL_STATE(987)] = 69010, + [SMALL_STATE(988)] = 69072, + [SMALL_STATE(989)] = 69142, + [SMALL_STATE(990)] = 69208, + [SMALL_STATE(991)] = 69274, + [SMALL_STATE(992)] = 69320, + [SMALL_STATE(993)] = 69390, + [SMALL_STATE(994)] = 69460, + [SMALL_STATE(995)] = 69540, + [SMALL_STATE(996)] = 69586, + [SMALL_STATE(997)] = 69636, + [SMALL_STATE(998)] = 69682, + [SMALL_STATE(999)] = 69728, + [SMALL_STATE(1000)] = 69774, + [SMALL_STATE(1001)] = 69820, + [SMALL_STATE(1002)] = 69884, + [SMALL_STATE(1003)] = 69930, + [SMALL_STATE(1004)] = 69986, + [SMALL_STATE(1005)] = 70056, + [SMALL_STATE(1006)] = 70116, + [SMALL_STATE(1007)] = 70184, + [SMALL_STATE(1008)] = 70240, + [SMALL_STATE(1009)] = 70320, + [SMALL_STATE(1010)] = 70382, + [SMALL_STATE(1011)] = 70452, + [SMALL_STATE(1012)] = 70502, + [SMALL_STATE(1013)] = 70552, + [SMALL_STATE(1014)] = 70608, + [SMALL_STATE(1015)] = 70658, + [SMALL_STATE(1016)] = 70714, + [SMALL_STATE(1017)] = 70764, + [SMALL_STATE(1018)] = 70820, + [SMALL_STATE(1019)] = 70890, + [SMALL_STATE(1020)] = 70960, + [SMALL_STATE(1021)] = 71010, + [SMALL_STATE(1022)] = 71060, + [SMALL_STATE(1023)] = 71124, + [SMALL_STATE(1024)] = 71190, + [SMALL_STATE(1025)] = 71258, + [SMALL_STATE(1026)] = 71314, + [SMALL_STATE(1027)] = 71374, + [SMALL_STATE(1028)] = 71438, + [SMALL_STATE(1029)] = 71506, + [SMALL_STATE(1030)] = 71576, + [SMALL_STATE(1031)] = 71638, + [SMALL_STATE(1032)] = 71694, + [SMALL_STATE(1033)] = 71774, + [SMALL_STATE(1034)] = 71854, + [SMALL_STATE(1035)] = 71934, + [SMALL_STATE(1036)] = 72014, + [SMALL_STATE(1037)] = 72064, + [SMALL_STATE(1038)] = 72120, + [SMALL_STATE(1039)] = 72180, + [SMALL_STATE(1040)] = 72230, + [SMALL_STATE(1041)] = 72293, + [SMALL_STATE(1042)] = 72340, + [SMALL_STATE(1043)] = 72391, + [SMALL_STATE(1044)] = 72442, + [SMALL_STATE(1045)] = 72497, + [SMALL_STATE(1046)] = 72544, + [SMALL_STATE(1047)] = 72591, + [SMALL_STATE(1048)] = 72646, + [SMALL_STATE(1049)] = 72723, + [SMALL_STATE(1050)] = 72792, + [SMALL_STATE(1051)] = 72841, + [SMALL_STATE(1052)] = 72910, + [SMALL_STATE(1053)] = 72965, + [SMALL_STATE(1054)] = 73026, + [SMALL_STATE(1055)] = 73073, + [SMALL_STATE(1056)] = 73122, + [SMALL_STATE(1057)] = 73171, + [SMALL_STATE(1058)] = 73240, + [SMALL_STATE(1059)] = 73285, + [SMALL_STATE(1060)] = 73340, + [SMALL_STATE(1061)] = 73387, + [SMALL_STATE(1062)] = 73432, + [SMALL_STATE(1063)] = 73481, + [SMALL_STATE(1064)] = 73540, + [SMALL_STATE(1065)] = 73607, + [SMALL_STATE(1066)] = 73652, + [SMALL_STATE(1067)] = 73699, + [SMALL_STATE(1068)] = 73764, + [SMALL_STATE(1069)] = 73827, + [SMALL_STATE(1070)] = 73874, + [SMALL_STATE(1071)] = 73923, + [SMALL_STATE(1072)] = 73978, + [SMALL_STATE(1073)] = 74041, + [SMALL_STATE(1074)] = 74106, + [SMALL_STATE(1075)] = 74173, + [SMALL_STATE(1076)] = 74232, + [SMALL_STATE(1077)] = 74287, + [SMALL_STATE(1078)] = 74356, + [SMALL_STATE(1079)] = 74417, + [SMALL_STATE(1080)] = 74486, + [SMALL_STATE(1081)] = 74541, + [SMALL_STATE(1082)] = 74590, + [SMALL_STATE(1083)] = 74667, + [SMALL_STATE(1084)] = 74746, + [SMALL_STATE(1085)] = 74801, + [SMALL_STATE(1086)] = 74846, + [SMALL_STATE(1087)] = 74901, + [SMALL_STATE(1088)] = 74950, + [SMALL_STATE(1089)] = 75011, + [SMALL_STATE(1090)] = 75070, + [SMALL_STATE(1091)] = 75137, + [SMALL_STATE(1092)] = 75206, + [SMALL_STATE(1093)] = 75275, + [SMALL_STATE(1094)] = 75352, + [SMALL_STATE(1095)] = 75407, + [SMALL_STATE(1096)] = 75472, + [SMALL_STATE(1097)] = 75527, + [SMALL_STATE(1098)] = 75582, + [SMALL_STATE(1099)] = 75629, + [SMALL_STATE(1100)] = 75678, + [SMALL_STATE(1101)] = 75723, + [SMALL_STATE(1102)] = 75772, + [SMALL_STATE(1103)] = 75851, + [SMALL_STATE(1104)] = 75898, + [SMALL_STATE(1105)] = 75943, + [SMALL_STATE(1106)] = 76012, + [SMALL_STATE(1107)] = 76061, + [SMALL_STATE(1108)] = 76130, + [SMALL_STATE(1109)] = 76176, + [SMALL_STATE(1110)] = 76224, + [SMALL_STATE(1111)] = 76268, + [SMALL_STATE(1112)] = 76320, + [SMALL_STATE(1113)] = 76382, + [SMALL_STATE(1114)] = 76426, + [SMALL_STATE(1115)] = 76476, + [SMALL_STATE(1116)] = 76520, + [SMALL_STATE(1117)] = 76564, + [SMALL_STATE(1118)] = 76608, + [SMALL_STATE(1119)] = 76652, + [SMALL_STATE(1120)] = 76704, + [SMALL_STATE(1121)] = 76748, + [SMALL_STATE(1122)] = 76792, + [SMALL_STATE(1123)] = 76836, + [SMALL_STATE(1124)] = 76880, + [SMALL_STATE(1125)] = 76924, + [SMALL_STATE(1126)] = 76968, + [SMALL_STATE(1127)] = 77020, + [SMALL_STATE(1128)] = 77064, + [SMALL_STATE(1129)] = 77108, + [SMALL_STATE(1130)] = 77160, + [SMALL_STATE(1131)] = 77212, + [SMALL_STATE(1132)] = 77276, + [SMALL_STATE(1133)] = 77320, + [SMALL_STATE(1134)] = 77364, + [SMALL_STATE(1135)] = 77410, + [SMALL_STATE(1136)] = 77454, + [SMALL_STATE(1137)] = 77498, + [SMALL_STATE(1138)] = 77542, + [SMALL_STATE(1139)] = 77610, + [SMALL_STATE(1140)] = 77658, + [SMALL_STATE(1141)] = 77726, + [SMALL_STATE(1142)] = 77774, + [SMALL_STATE(1143)] = 77822, + [SMALL_STATE(1144)] = 77872, + [SMALL_STATE(1145)] = 77916, + [SMALL_STATE(1146)] = 77968, + [SMALL_STATE(1147)] = 78012, + [SMALL_STATE(1148)] = 78056, + [SMALL_STATE(1149)] = 78100, + [SMALL_STATE(1150)] = 78144, + [SMALL_STATE(1151)] = 78188, + [SMALL_STATE(1152)] = 78232, + [SMALL_STATE(1153)] = 78276, + [SMALL_STATE(1154)] = 78320, + [SMALL_STATE(1155)] = 78364, + [SMALL_STATE(1156)] = 78408, + [SMALL_STATE(1157)] = 78456, + [SMALL_STATE(1158)] = 78500, + [SMALL_STATE(1159)] = 78544, + [SMALL_STATE(1160)] = 78590, + [SMALL_STATE(1161)] = 78636, + [SMALL_STATE(1162)] = 78712, + [SMALL_STATE(1163)] = 78756, + [SMALL_STATE(1164)] = 78804, + [SMALL_STATE(1165)] = 78848, + [SMALL_STATE(1166)] = 78892, + [SMALL_STATE(1167)] = 78936, + [SMALL_STATE(1168)] = 78980, + [SMALL_STATE(1169)] = 79046, + [SMALL_STATE(1170)] = 79104, + [SMALL_STATE(1171)] = 79148, + [SMALL_STATE(1172)] = 79192, + [SMALL_STATE(1173)] = 79246, + [SMALL_STATE(1174)] = 79292, + [SMALL_STATE(1175)] = 79336, + [SMALL_STATE(1176)] = 79380, + [SMALL_STATE(1177)] = 79424, + [SMALL_STATE(1178)] = 79468, + [SMALL_STATE(1179)] = 79512, + [SMALL_STATE(1180)] = 79556, + [SMALL_STATE(1181)] = 79600, + [SMALL_STATE(1182)] = 79644, + [SMALL_STATE(1183)] = 79688, + [SMALL_STATE(1184)] = 79732, + [SMALL_STATE(1185)] = 79780, + [SMALL_STATE(1186)] = 79824, + [SMALL_STATE(1187)] = 79878, + [SMALL_STATE(1188)] = 79922, + [SMALL_STATE(1189)] = 79966, + [SMALL_STATE(1190)] = 80012, + [SMALL_STATE(1191)] = 80060, + [SMALL_STATE(1192)] = 80114, + [SMALL_STATE(1193)] = 80158, + [SMALL_STATE(1194)] = 80218, + [SMALL_STATE(1195)] = 80286, + [SMALL_STATE(1196)] = 80330, + [SMALL_STATE(1197)] = 80374, + [SMALL_STATE(1198)] = 80418, + [SMALL_STATE(1199)] = 80462, + [SMALL_STATE(1200)] = 80506, + [SMALL_STATE(1201)] = 80560, + [SMALL_STATE(1202)] = 80604, + [SMALL_STATE(1203)] = 80648, + [SMALL_STATE(1204)] = 80692, + [SMALL_STATE(1205)] = 80750, + [SMALL_STATE(1206)] = 80794, + [SMALL_STATE(1207)] = 80860, + [SMALL_STATE(1208)] = 80904, + [SMALL_STATE(1209)] = 80948, + [SMALL_STATE(1210)] = 81012, + [SMALL_STATE(1211)] = 81074, + [SMALL_STATE(1212)] = 81118, + [SMALL_STATE(1213)] = 81194, + [SMALL_STATE(1214)] = 81238, + [SMALL_STATE(1215)] = 81282, + [SMALL_STATE(1216)] = 81326, + [SMALL_STATE(1217)] = 81370, + [SMALL_STATE(1218)] = 81414, + [SMALL_STATE(1219)] = 81458, + [SMALL_STATE(1220)] = 81502, + [SMALL_STATE(1221)] = 81556, + [SMALL_STATE(1222)] = 81624, + [SMALL_STATE(1223)] = 81684, + [SMALL_STATE(1224)] = 81738, + [SMALL_STATE(1225)] = 81782, + [SMALL_STATE(1226)] = 81850, + [SMALL_STATE(1227)] = 81894, + [SMALL_STATE(1228)] = 81938, + [SMALL_STATE(1229)] = 81982, + [SMALL_STATE(1230)] = 82026, + [SMALL_STATE(1231)] = 82094, + [SMALL_STATE(1232)] = 82148, + [SMALL_STATE(1233)] = 82202, + [SMALL_STATE(1234)] = 82246, + [SMALL_STATE(1235)] = 82294, + [SMALL_STATE(1236)] = 82338, + [SMALL_STATE(1237)] = 82382, + [SMALL_STATE(1238)] = 82426, + [SMALL_STATE(1239)] = 82470, + [SMALL_STATE(1240)] = 82546, + [SMALL_STATE(1241)] = 82592, + [SMALL_STATE(1242)] = 82640, + [SMALL_STATE(1243)] = 82684, + [SMALL_STATE(1244)] = 82728, + [SMALL_STATE(1245)] = 82772, + [SMALL_STATE(1246)] = 82816, + [SMALL_STATE(1247)] = 82870, + [SMALL_STATE(1248)] = 82914, + [SMALL_STATE(1249)] = 82960, + [SMALL_STATE(1250)] = 83004, + [SMALL_STATE(1251)] = 83052, + [SMALL_STATE(1252)] = 83096, + [SMALL_STATE(1253)] = 83140, + [SMALL_STATE(1254)] = 83184, + [SMALL_STATE(1255)] = 83228, + [SMALL_STATE(1256)] = 83272, + [SMALL_STATE(1257)] = 83318, + [SMALL_STATE(1258)] = 83362, + [SMALL_STATE(1259)] = 83408, + [SMALL_STATE(1260)] = 83452, + [SMALL_STATE(1261)] = 83496, + [SMALL_STATE(1262)] = 83540, + [SMALL_STATE(1263)] = 83584, + [SMALL_STATE(1264)] = 83628, + [SMALL_STATE(1265)] = 83674, + [SMALL_STATE(1266)] = 83722, + [SMALL_STATE(1267)] = 83768, + [SMALL_STATE(1268)] = 83812, + [SMALL_STATE(1269)] = 83856, + [SMALL_STATE(1270)] = 83902, + [SMALL_STATE(1271)] = 83950, + [SMALL_STATE(1272)] = 83994, + [SMALL_STATE(1273)] = 84038, + [SMALL_STATE(1274)] = 84092, + [SMALL_STATE(1275)] = 84136, + [SMALL_STATE(1276)] = 84180, + [SMALL_STATE(1277)] = 84224, + [SMALL_STATE(1278)] = 84268, + [SMALL_STATE(1279)] = 84312, + [SMALL_STATE(1280)] = 84358, + [SMALL_STATE(1281)] = 84402, + [SMALL_STATE(1282)] = 84446, + [SMALL_STATE(1283)] = 84498, + [SMALL_STATE(1284)] = 84546, + [SMALL_STATE(1285)] = 84594, + [SMALL_STATE(1286)] = 84638, + [SMALL_STATE(1287)] = 84686, + [SMALL_STATE(1288)] = 84738, + [SMALL_STATE(1289)] = 84782, + [SMALL_STATE(1290)] = 84832, + [SMALL_STATE(1291)] = 84880, + [SMALL_STATE(1292)] = 84926, + [SMALL_STATE(1293)] = 84970, + [SMALL_STATE(1294)] = 85016, + [SMALL_STATE(1295)] = 85062, + [SMALL_STATE(1296)] = 85106, + [SMALL_STATE(1297)] = 85158, + [SMALL_STATE(1298)] = 85201, + [SMALL_STATE(1299)] = 85246, + [SMALL_STATE(1300)] = 85291, + [SMALL_STATE(1301)] = 85338, + [SMALL_STATE(1302)] = 85383, + [SMALL_STATE(1303)] = 85432, + [SMALL_STATE(1304)] = 85477, + [SMALL_STATE(1305)] = 85520, + [SMALL_STATE(1306)] = 85571, + [SMALL_STATE(1307)] = 85622, + [SMALL_STATE(1308)] = 85673, + [SMALL_STATE(1309)] = 85718, + [SMALL_STATE(1310)] = 85767, + [SMALL_STATE(1311)] = 85810, + [SMALL_STATE(1312)] = 85853, + [SMALL_STATE(1313)] = 85896, + [SMALL_STATE(1314)] = 85943, + [SMALL_STATE(1315)] = 85988, + [SMALL_STATE(1316)] = 86031, + [SMALL_STATE(1317)] = 86074, + [SMALL_STATE(1318)] = 86117, + [SMALL_STATE(1319)] = 86160, + [SMALL_STATE(1320)] = 86203, + [SMALL_STATE(1321)] = 86246, + [SMALL_STATE(1322)] = 86289, + [SMALL_STATE(1323)] = 86334, + [SMALL_STATE(1324)] = 86385, + [SMALL_STATE(1325)] = 86430, + [SMALL_STATE(1326)] = 86481, + [SMALL_STATE(1327)] = 86524, + [SMALL_STATE(1328)] = 86567, + [SMALL_STATE(1329)] = 86618, + [SMALL_STATE(1330)] = 86661, + [SMALL_STATE(1331)] = 86704, + [SMALL_STATE(1332)] = 86753, + [SMALL_STATE(1333)] = 86796, + [SMALL_STATE(1334)] = 86843, + [SMALL_STATE(1335)] = 86886, + [SMALL_STATE(1336)] = 86929, + [SMALL_STATE(1337)] = 86972, + [SMALL_STATE(1338)] = 87015, + [SMALL_STATE(1339)] = 87058, + [SMALL_STATE(1340)] = 87101, + [SMALL_STATE(1341)] = 87146, + [SMALL_STATE(1342)] = 87189, + [SMALL_STATE(1343)] = 87232, + [SMALL_STATE(1344)] = 87275, + [SMALL_STATE(1345)] = 87318, + [SMALL_STATE(1346)] = 87369, + [SMALL_STATE(1347)] = 87420, + [SMALL_STATE(1348)] = 87465, + [SMALL_STATE(1349)] = 87508, + [SMALL_STATE(1350)] = 87555, + [SMALL_STATE(1351)] = 87600, + [SMALL_STATE(1352)] = 87645, + [SMALL_STATE(1353)] = 87688, + [SMALL_STATE(1354)] = 87731, + [SMALL_STATE(1355)] = 87774, + [SMALL_STATE(1356)] = 87817, + [SMALL_STATE(1357)] = 87860, + [SMALL_STATE(1358)] = 87903, + [SMALL_STATE(1359)] = 87946, + [SMALL_STATE(1360)] = 87989, + [SMALL_STATE(1361)] = 88032, + [SMALL_STATE(1362)] = 88075, + [SMALL_STATE(1363)] = 88118, + [SMALL_STATE(1364)] = 88161, + [SMALL_STATE(1365)] = 88204, + [SMALL_STATE(1366)] = 88247, + [SMALL_STATE(1367)] = 88290, + [SMALL_STATE(1368)] = 88333, + [SMALL_STATE(1369)] = 88376, + [SMALL_STATE(1370)] = 88419, + [SMALL_STATE(1371)] = 88462, + [SMALL_STATE(1372)] = 88505, + [SMALL_STATE(1373)] = 88548, + [SMALL_STATE(1374)] = 88599, + [SMALL_STATE(1375)] = 88644, + [SMALL_STATE(1376)] = 88687, + [SMALL_STATE(1377)] = 88734, + [SMALL_STATE(1378)] = 88779, + [SMALL_STATE(1379)] = 88826, + [SMALL_STATE(1380)] = 88869, + [SMALL_STATE(1381)] = 88914, + [SMALL_STATE(1382)] = 88957, + [SMALL_STATE(1383)] = 89002, + [SMALL_STATE(1384)] = 89045, + [SMALL_STATE(1385)] = 89088, + [SMALL_STATE(1386)] = 89133, + [SMALL_STATE(1387)] = 89176, + [SMALL_STATE(1388)] = 89221, + [SMALL_STATE(1389)] = 89264, + [SMALL_STATE(1390)] = 89311, + [SMALL_STATE(1391)] = 89354, + [SMALL_STATE(1392)] = 89397, + [SMALL_STATE(1393)] = 89442, + [SMALL_STATE(1394)] = 89489, + [SMALL_STATE(1395)] = 89536, + [SMALL_STATE(1396)] = 89579, + [SMALL_STATE(1397)] = 89622, + [SMALL_STATE(1398)] = 89667, + [SMALL_STATE(1399)] = 89720, + [SMALL_STATE(1400)] = 89765, + [SMALL_STATE(1401)] = 89810, + [SMALL_STATE(1402)] = 89853, + [SMALL_STATE(1403)] = 89896, + [SMALL_STATE(1404)] = 89939, + [SMALL_STATE(1405)] = 89982, + [SMALL_STATE(1406)] = 90025, + [SMALL_STATE(1407)] = 90068, + [SMALL_STATE(1408)] = 90111, + [SMALL_STATE(1409)] = 90154, + [SMALL_STATE(1410)] = 90197, + [SMALL_STATE(1411)] = 90240, + [SMALL_STATE(1412)] = 90283, + [SMALL_STATE(1413)] = 90326, + [SMALL_STATE(1414)] = 90369, + [SMALL_STATE(1415)] = 90412, + [SMALL_STATE(1416)] = 90455, + [SMALL_STATE(1417)] = 90498, + [SMALL_STATE(1418)] = 90541, + [SMALL_STATE(1419)] = 90584, + [SMALL_STATE(1420)] = 90627, + [SMALL_STATE(1421)] = 90670, + [SMALL_STATE(1422)] = 90713, + [SMALL_STATE(1423)] = 90756, + [SMALL_STATE(1424)] = 90799, + [SMALL_STATE(1425)] = 90842, + [SMALL_STATE(1426)] = 90895, + [SMALL_STATE(1427)] = 90938, + [SMALL_STATE(1428)] = 90981, + [SMALL_STATE(1429)] = 91028, + [SMALL_STATE(1430)] = 91071, + [SMALL_STATE(1431)] = 91114, + [SMALL_STATE(1432)] = 91157, + [SMALL_STATE(1433)] = 91200, + [SMALL_STATE(1434)] = 91243, + [SMALL_STATE(1435)] = 91286, + [SMALL_STATE(1436)] = 91329, + [SMALL_STATE(1437)] = 91372, + [SMALL_STATE(1438)] = 91415, + [SMALL_STATE(1439)] = 91458, + [SMALL_STATE(1440)] = 91501, + [SMALL_STATE(1441)] = 91544, + [SMALL_STATE(1442)] = 91587, + [SMALL_STATE(1443)] = 91630, + [SMALL_STATE(1444)] = 91673, + [SMALL_STATE(1445)] = 91718, + [SMALL_STATE(1446)] = 91763, + [SMALL_STATE(1447)] = 91810, + [SMALL_STATE(1448)] = 91853, + [SMALL_STATE(1449)] = 91896, + [SMALL_STATE(1450)] = 91939, + [SMALL_STATE(1451)] = 91982, + [SMALL_STATE(1452)] = 92026, + [SMALL_STATE(1453)] = 92068, + [SMALL_STATE(1454)] = 92110, + [SMALL_STATE(1455)] = 92152, + [SMALL_STATE(1456)] = 92198, + [SMALL_STATE(1457)] = 92240, + [SMALL_STATE(1458)] = 92282, + [SMALL_STATE(1459)] = 92324, + [SMALL_STATE(1460)] = 92366, + [SMALL_STATE(1461)] = 92408, + [SMALL_STATE(1462)] = 92450, + [SMALL_STATE(1463)] = 92492, + [SMALL_STATE(1464)] = 92534, + [SMALL_STATE(1465)] = 92576, + [SMALL_STATE(1466)] = 92620, + [SMALL_STATE(1467)] = 92662, + [SMALL_STATE(1468)] = 92704, + [SMALL_STATE(1469)] = 92746, + [SMALL_STATE(1470)] = 92788, + [SMALL_STATE(1471)] = 92830, + [SMALL_STATE(1472)] = 92872, + [SMALL_STATE(1473)] = 92914, + [SMALL_STATE(1474)] = 92956, + [SMALL_STATE(1475)] = 92998, + [SMALL_STATE(1476)] = 93040, + [SMALL_STATE(1477)] = 93082, + [SMALL_STATE(1478)] = 93124, + [SMALL_STATE(1479)] = 93174, + [SMALL_STATE(1480)] = 93216, + [SMALL_STATE(1481)] = 93258, + [SMALL_STATE(1482)] = 93300, + [SMALL_STATE(1483)] = 93348, + [SMALL_STATE(1484)] = 93394, + [SMALL_STATE(1485)] = 93436, + [SMALL_STATE(1486)] = 93478, + [SMALL_STATE(1487)] = 93520, + [SMALL_STATE(1488)] = 93564, + [SMALL_STATE(1489)] = 93606, + [SMALL_STATE(1490)] = 93656, + [SMALL_STATE(1491)] = 93698, + [SMALL_STATE(1492)] = 93748, + [SMALL_STATE(1493)] = 93790, + [SMALL_STATE(1494)] = 93840, + [SMALL_STATE(1495)] = 93888, + [SMALL_STATE(1496)] = 93934, + [SMALL_STATE(1497)] = 93978, + [SMALL_STATE(1498)] = 94028, + [SMALL_STATE(1499)] = 94070, + [SMALL_STATE(1500)] = 94112, + [SMALL_STATE(1501)] = 94154, + [SMALL_STATE(1502)] = 94204, + [SMALL_STATE(1503)] = 94246, + [SMALL_STATE(1504)] = 94288, + [SMALL_STATE(1505)] = 94330, + [SMALL_STATE(1506)] = 94372, + [SMALL_STATE(1507)] = 94414, + [SMALL_STATE(1508)] = 94456, + [SMALL_STATE(1509)] = 94498, + [SMALL_STATE(1510)] = 94542, + [SMALL_STATE(1511)] = 94584, + [SMALL_STATE(1512)] = 94626, + [SMALL_STATE(1513)] = 94668, + [SMALL_STATE(1514)] = 94710, + [SMALL_STATE(1515)] = 94752, + [SMALL_STATE(1516)] = 94794, + [SMALL_STATE(1517)] = 94836, + [SMALL_STATE(1518)] = 94878, + [SMALL_STATE(1519)] = 94920, + [SMALL_STATE(1520)] = 94962, + [SMALL_STATE(1521)] = 95004, + [SMALL_STATE(1522)] = 95046, + [SMALL_STATE(1523)] = 95088, + [SMALL_STATE(1524)] = 95130, + [SMALL_STATE(1525)] = 95174, + [SMALL_STATE(1526)] = 95216, + [SMALL_STATE(1527)] = 95258, + [SMALL_STATE(1528)] = 95302, + [SMALL_STATE(1529)] = 95348, + [SMALL_STATE(1530)] = 95394, + [SMALL_STATE(1531)] = 95436, + [SMALL_STATE(1532)] = 95478, + [SMALL_STATE(1533)] = 95520, + [SMALL_STATE(1534)] = 95562, + [SMALL_STATE(1535)] = 95604, + [SMALL_STATE(1536)] = 95646, + [SMALL_STATE(1537)] = 95688, + [SMALL_STATE(1538)] = 95734, + [SMALL_STATE(1539)] = 95776, + [SMALL_STATE(1540)] = 95820, + [SMALL_STATE(1541)] = 95862, + [SMALL_STATE(1542)] = 95904, + [SMALL_STATE(1543)] = 95946, + [SMALL_STATE(1544)] = 95988, + [SMALL_STATE(1545)] = 96030, + [SMALL_STATE(1546)] = 96071, + [SMALL_STATE(1547)] = 96112, + [SMALL_STATE(1548)] = 96155, + [SMALL_STATE(1549)] = 96198, + [SMALL_STATE(1550)] = 96241, + [SMALL_STATE(1551)] = 96284, + [SMALL_STATE(1552)] = 96325, + [SMALL_STATE(1553)] = 96366, + [SMALL_STATE(1554)] = 96407, + [SMALL_STATE(1555)] = 96448, + [SMALL_STATE(1556)] = 96491, + [SMALL_STATE(1557)] = 96534, + [SMALL_STATE(1558)] = 96575, + [SMALL_STATE(1559)] = 96616, + [SMALL_STATE(1560)] = 96659, + [SMALL_STATE(1561)] = 96700, + [SMALL_STATE(1562)] = 96741, + [SMALL_STATE(1563)] = 96782, + [SMALL_STATE(1564)] = 96819, + [SMALL_STATE(1565)] = 96854, + [SMALL_STATE(1566)] = 96893, + [SMALL_STATE(1567)] = 96934, + [SMALL_STATE(1568)] = 96975, + [SMALL_STATE(1569)] = 97007, + [SMALL_STATE(1570)] = 97039, + [SMALL_STATE(1571)] = 97071, + [SMALL_STATE(1572)] = 97103, + [SMALL_STATE(1573)] = 97135, + [SMALL_STATE(1574)] = 97174, + [SMALL_STATE(1575)] = 97213, + [SMALL_STATE(1576)] = 97250, + [SMALL_STATE(1577)] = 97289, + [SMALL_STATE(1578)] = 97319, + [SMALL_STATE(1579)] = 97349, + [SMALL_STATE(1580)] = 97379, + [SMALL_STATE(1581)] = 97409, + [SMALL_STATE(1582)] = 97439, + [SMALL_STATE(1583)] = 97477, + [SMALL_STATE(1584)] = 97515, + [SMALL_STATE(1585)] = 97545, + [SMALL_STATE(1586)] = 97574, + [SMALL_STATE(1587)] = 97599, + [SMALL_STATE(1588)] = 97628, + [SMALL_STATE(1589)] = 97663, + [SMALL_STATE(1590)] = 97710, + [SMALL_STATE(1591)] = 97747, + [SMALL_STATE(1592)] = 97784, + [SMALL_STATE(1593)] = 97831, + [SMALL_STATE(1594)] = 97878, + [SMALL_STATE(1595)] = 97907, + [SMALL_STATE(1596)] = 97954, + [SMALL_STATE(1597)] = 97983, + [SMALL_STATE(1598)] = 98030, + [SMALL_STATE(1599)] = 98059, + [SMALL_STATE(1600)] = 98088, + [SMALL_STATE(1601)] = 98135, + [SMALL_STATE(1602)] = 98182, + [SMALL_STATE(1603)] = 98211, + [SMALL_STATE(1604)] = 98258, + [SMALL_STATE(1605)] = 98287, + [SMALL_STATE(1606)] = 98316, + [SMALL_STATE(1607)] = 98345, + [SMALL_STATE(1608)] = 98374, + [SMALL_STATE(1609)] = 98403, + [SMALL_STATE(1610)] = 98446, + [SMALL_STATE(1611)] = 98471, + [SMALL_STATE(1612)] = 98496, + [SMALL_STATE(1613)] = 98521, + [SMALL_STATE(1614)] = 98550, + [SMALL_STATE(1615)] = 98587, + [SMALL_STATE(1616)] = 98634, + [SMALL_STATE(1617)] = 98675, + [SMALL_STATE(1618)] = 98712, + [SMALL_STATE(1619)] = 98751, + [SMALL_STATE(1620)] = 98798, + [SMALL_STATE(1621)] = 98843, + [SMALL_STATE(1622)] = 98872, + [SMALL_STATE(1623)] = 98901, + [SMALL_STATE(1624)] = 98930, + [SMALL_STATE(1625)] = 98977, + [SMALL_STATE(1626)] = 99006, + [SMALL_STATE(1627)] = 99035, + [SMALL_STATE(1628)] = 99064, + [SMALL_STATE(1629)] = 99110, + [SMALL_STATE(1630)] = 99156, + [SMALL_STATE(1631)] = 99180, + [SMALL_STATE(1632)] = 99208, + [SMALL_STATE(1633)] = 99236, + [SMALL_STATE(1634)] = 99266, + [SMALL_STATE(1635)] = 99312, + [SMALL_STATE(1636)] = 99358, + [SMALL_STATE(1637)] = 99390, + [SMALL_STATE(1638)] = 99436, + [SMALL_STATE(1639)] = 99460, + [SMALL_STATE(1640)] = 99506, + [SMALL_STATE(1641)] = 99552, + [SMALL_STATE(1642)] = 99598, + [SMALL_STATE(1643)] = 99622, + [SMALL_STATE(1644)] = 99668, + [SMALL_STATE(1645)] = 99714, + [SMALL_STATE(1646)] = 99738, + [SMALL_STATE(1647)] = 99784, + [SMALL_STATE(1648)] = 99830, + [SMALL_STATE(1649)] = 99876, + [SMALL_STATE(1650)] = 99922, + [SMALL_STATE(1651)] = 99968, + [SMALL_STATE(1652)] = 100014, + [SMALL_STATE(1653)] = 100060, + [SMALL_STATE(1654)] = 100092, + [SMALL_STATE(1655)] = 100138, + [SMALL_STATE(1656)] = 100184, + [SMALL_STATE(1657)] = 100227, + [SMALL_STATE(1658)] = 100267, + [SMALL_STATE(1659)] = 100293, + [SMALL_STATE(1660)] = 100333, + [SMALL_STATE(1661)] = 100373, + [SMALL_STATE(1662)] = 100413, + [SMALL_STATE(1663)] = 100450, + [SMALL_STATE(1664)] = 100487, + [SMALL_STATE(1665)] = 100528, + [SMALL_STATE(1666)] = 100569, + [SMALL_STATE(1667)] = 100610, + [SMALL_STATE(1668)] = 100651, + [SMALL_STATE(1669)] = 100692, + [SMALL_STATE(1670)] = 100733, + [SMALL_STATE(1671)] = 100774, + [SMALL_STATE(1672)] = 100815, + [SMALL_STATE(1673)] = 100853, + [SMALL_STATE(1674)] = 100891, + [SMALL_STATE(1675)] = 100929, + [SMALL_STATE(1676)] = 100967, + [SMALL_STATE(1677)] = 101005, + [SMALL_STATE(1678)] = 101043, + [SMALL_STATE(1679)] = 101081, + [SMALL_STATE(1680)] = 101119, + [SMALL_STATE(1681)] = 101157, + [SMALL_STATE(1682)] = 101195, + [SMALL_STATE(1683)] = 101233, + [SMALL_STATE(1684)] = 101271, + [SMALL_STATE(1685)] = 101309, + [SMALL_STATE(1686)] = 101347, + [SMALL_STATE(1687)] = 101385, + [SMALL_STATE(1688)] = 101423, + [SMALL_STATE(1689)] = 101461, + [SMALL_STATE(1690)] = 101499, + [SMALL_STATE(1691)] = 101537, + [SMALL_STATE(1692)] = 101575, + [SMALL_STATE(1693)] = 101613, + [SMALL_STATE(1694)] = 101651, + [SMALL_STATE(1695)] = 101689, + [SMALL_STATE(1696)] = 101727, + [SMALL_STATE(1697)] = 101765, + [SMALL_STATE(1698)] = 101794, + [SMALL_STATE(1699)] = 101823, + [SMALL_STATE(1700)] = 101852, + [SMALL_STATE(1701)] = 101881, + [SMALL_STATE(1702)] = 101910, + [SMALL_STATE(1703)] = 101939, + [SMALL_STATE(1704)] = 101968, + [SMALL_STATE(1705)] = 101997, + [SMALL_STATE(1706)] = 102026, + [SMALL_STATE(1707)] = 102055, + [SMALL_STATE(1708)] = 102084, + [SMALL_STATE(1709)] = 102113, + [SMALL_STATE(1710)] = 102142, + [SMALL_STATE(1711)] = 102171, + [SMALL_STATE(1712)] = 102200, + [SMALL_STATE(1713)] = 102229, + [SMALL_STATE(1714)] = 102258, + [SMALL_STATE(1715)] = 102287, + [SMALL_STATE(1716)] = 102316, + [SMALL_STATE(1717)] = 102345, + [SMALL_STATE(1718)] = 102374, + [SMALL_STATE(1719)] = 102398, + [SMALL_STATE(1720)] = 102420, + [SMALL_STATE(1721)] = 102444, + [SMALL_STATE(1722)] = 102474, + [SMALL_STATE(1723)] = 102498, + [SMALL_STATE(1724)] = 102522, + [SMALL_STATE(1725)] = 102546, + [SMALL_STATE(1726)] = 102570, + [SMALL_STATE(1727)] = 102594, + [SMALL_STATE(1728)] = 102612, + [SMALL_STATE(1729)] = 102632, + [SMALL_STATE(1730)] = 102652, + [SMALL_STATE(1731)] = 102674, + [SMALL_STATE(1732)] = 102696, + [SMALL_STATE(1733)] = 102716, + [SMALL_STATE(1734)] = 102740, + [SMALL_STATE(1735)] = 102758, + [SMALL_STATE(1736)] = 102782, + [SMALL_STATE(1737)] = 102804, + [SMALL_STATE(1738)] = 102828, + [SMALL_STATE(1739)] = 102852, + [SMALL_STATE(1740)] = 102881, + [SMALL_STATE(1741)] = 102904, + [SMALL_STATE(1742)] = 102925, + [SMALL_STATE(1743)] = 102952, + [SMALL_STATE(1744)] = 102979, + [SMALL_STATE(1745)] = 103008, + [SMALL_STATE(1746)] = 103029, + [SMALL_STATE(1747)] = 103058, + [SMALL_STATE(1748)] = 103079, + [SMALL_STATE(1749)] = 103102, + [SMALL_STATE(1750)] = 103125, + [SMALL_STATE(1751)] = 103152, + [SMALL_STATE(1752)] = 103173, + [SMALL_STATE(1753)] = 103202, + [SMALL_STATE(1754)] = 103231, + [SMALL_STATE(1755)] = 103260, + [SMALL_STATE(1756)] = 103285, + [SMALL_STATE(1757)] = 103312, + [SMALL_STATE(1758)] = 103337, + [SMALL_STATE(1759)] = 103358, + [SMALL_STATE(1760)] = 103387, + [SMALL_STATE(1761)] = 103408, + [SMALL_STATE(1762)] = 103433, + [SMALL_STATE(1763)] = 103456, + [SMALL_STATE(1764)] = 103477, + [SMALL_STATE(1765)] = 103506, + [SMALL_STATE(1766)] = 103527, + [SMALL_STATE(1767)] = 103550, + [SMALL_STATE(1768)] = 103577, + [SMALL_STATE(1769)] = 103596, + [SMALL_STATE(1770)] = 103617, + [SMALL_STATE(1771)] = 103642, + [SMALL_STATE(1772)] = 103663, + [SMALL_STATE(1773)] = 103682, + [SMALL_STATE(1774)] = 103711, + [SMALL_STATE(1775)] = 103740, + [SMALL_STATE(1776)] = 103763, + [SMALL_STATE(1777)] = 103792, + [SMALL_STATE(1778)] = 103817, + [SMALL_STATE(1779)] = 103838, + [SMALL_STATE(1780)] = 103865, + [SMALL_STATE(1781)] = 103890, + [SMALL_STATE(1782)] = 103911, + [SMALL_STATE(1783)] = 103934, + [SMALL_STATE(1784)] = 103961, + [SMALL_STATE(1785)] = 103988, + [SMALL_STATE(1786)] = 104011, + [SMALL_STATE(1787)] = 104032, + [SMALL_STATE(1788)] = 104054, + [SMALL_STATE(1789)] = 104076, + [SMALL_STATE(1790)] = 104102, + [SMALL_STATE(1791)] = 104124, + [SMALL_STATE(1792)] = 104146, + [SMALL_STATE(1793)] = 104172, + [SMALL_STATE(1794)] = 104198, + [SMALL_STATE(1795)] = 104224, + [SMALL_STATE(1796)] = 104246, + [SMALL_STATE(1797)] = 104272, + [SMALL_STATE(1798)] = 104296, + [SMALL_STATE(1799)] = 104322, + [SMALL_STATE(1800)] = 104348, + [SMALL_STATE(1801)] = 104368, + [SMALL_STATE(1802)] = 104388, + [SMALL_STATE(1803)] = 104408, + [SMALL_STATE(1804)] = 104434, + [SMALL_STATE(1805)] = 104456, + [SMALL_STATE(1806)] = 104478, + [SMALL_STATE(1807)] = 104500, + [SMALL_STATE(1808)] = 104526, + [SMALL_STATE(1809)] = 104552, + [SMALL_STATE(1810)] = 104574, + [SMALL_STATE(1811)] = 104600, + [SMALL_STATE(1812)] = 104626, + [SMALL_STATE(1813)] = 104648, + [SMALL_STATE(1814)] = 104670, + [SMALL_STATE(1815)] = 104692, + [SMALL_STATE(1816)] = 104718, + [SMALL_STATE(1817)] = 104734, + [SMALL_STATE(1818)] = 104752, + [SMALL_STATE(1819)] = 104772, + [SMALL_STATE(1820)] = 104798, + [SMALL_STATE(1821)] = 104820, + [SMALL_STATE(1822)] = 104842, + [SMALL_STATE(1823)] = 104866, + [SMALL_STATE(1824)] = 104882, + [SMALL_STATE(1825)] = 104900, + [SMALL_STATE(1826)] = 104924, + [SMALL_STATE(1827)] = 104944, + [SMALL_STATE(1828)] = 104968, + [SMALL_STATE(1829)] = 104994, + [SMALL_STATE(1830)] = 105016, + [SMALL_STATE(1831)] = 105040, + [SMALL_STATE(1832)] = 105064, + [SMALL_STATE(1833)] = 105086, + [SMALL_STATE(1834)] = 105108, + [SMALL_STATE(1835)] = 105134, + [SMALL_STATE(1836)] = 105160, + [SMALL_STATE(1837)] = 105182, + [SMALL_STATE(1838)] = 105208, + [SMALL_STATE(1839)] = 105230, + [SMALL_STATE(1840)] = 105252, + [SMALL_STATE(1841)] = 105273, + [SMALL_STATE(1842)] = 105290, + [SMALL_STATE(1843)] = 105311, + [SMALL_STATE(1844)] = 105332, + [SMALL_STATE(1845)] = 105349, + [SMALL_STATE(1846)] = 105370, + [SMALL_STATE(1847)] = 105387, + [SMALL_STATE(1848)] = 105404, + [SMALL_STATE(1849)] = 105425, + [SMALL_STATE(1850)] = 105442, + [SMALL_STATE(1851)] = 105463, + [SMALL_STATE(1852)] = 105480, + [SMALL_STATE(1853)] = 105501, + [SMALL_STATE(1854)] = 105518, + [SMALL_STATE(1855)] = 105539, + [SMALL_STATE(1856)] = 105560, + [SMALL_STATE(1857)] = 105581, + [SMALL_STATE(1858)] = 105602, + [SMALL_STATE(1859)] = 105625, + [SMALL_STATE(1860)] = 105642, + [SMALL_STATE(1861)] = 105661, + [SMALL_STATE(1862)] = 105678, + [SMALL_STATE(1863)] = 105699, + [SMALL_STATE(1864)] = 105720, + [SMALL_STATE(1865)] = 105737, + [SMALL_STATE(1866)] = 105758, + [SMALL_STATE(1867)] = 105779, + [SMALL_STATE(1868)] = 105796, + [SMALL_STATE(1869)] = 105817, + [SMALL_STATE(1870)] = 105838, + [SMALL_STATE(1871)] = 105855, + [SMALL_STATE(1872)] = 105872, + [SMALL_STATE(1873)] = 105889, + [SMALL_STATE(1874)] = 105906, + [SMALL_STATE(1875)] = 105923, + [SMALL_STATE(1876)] = 105944, + [SMALL_STATE(1877)] = 105965, + [SMALL_STATE(1878)] = 105982, + [SMALL_STATE(1879)] = 106003, + [SMALL_STATE(1880)] = 106024, + [SMALL_STATE(1881)] = 106041, + [SMALL_STATE(1882)] = 106058, + [SMALL_STATE(1883)] = 106075, + [SMALL_STATE(1884)] = 106092, + [SMALL_STATE(1885)] = 106109, + [SMALL_STATE(1886)] = 106126, + [SMALL_STATE(1887)] = 106143, + [SMALL_STATE(1888)] = 106160, + [SMALL_STATE(1889)] = 106177, + [SMALL_STATE(1890)] = 106198, + [SMALL_STATE(1891)] = 106215, + [SMALL_STATE(1892)] = 106236, + [SMALL_STATE(1893)] = 106253, + [SMALL_STATE(1894)] = 106270, + [SMALL_STATE(1895)] = 106291, + [SMALL_STATE(1896)] = 106312, + [SMALL_STATE(1897)] = 106329, + [SMALL_STATE(1898)] = 106346, + [SMALL_STATE(1899)] = 106363, + [SMALL_STATE(1900)] = 106386, + [SMALL_STATE(1901)] = 106407, + [SMALL_STATE(1902)] = 106428, + [SMALL_STATE(1903)] = 106449, + [SMALL_STATE(1904)] = 106472, + [SMALL_STATE(1905)] = 106493, + [SMALL_STATE(1906)] = 106514, + [SMALL_STATE(1907)] = 106534, + [SMALL_STATE(1908)] = 106554, + [SMALL_STATE(1909)] = 106570, + [SMALL_STATE(1910)] = 106590, + [SMALL_STATE(1911)] = 106610, + [SMALL_STATE(1912)] = 106630, + [SMALL_STATE(1913)] = 106646, + [SMALL_STATE(1914)] = 106666, + [SMALL_STATE(1915)] = 106686, + [SMALL_STATE(1916)] = 106698, + [SMALL_STATE(1917)] = 106718, + [SMALL_STATE(1918)] = 106730, + [SMALL_STATE(1919)] = 106750, + [SMALL_STATE(1920)] = 106762, + [SMALL_STATE(1921)] = 106774, + [SMALL_STATE(1922)] = 106792, + [SMALL_STATE(1923)] = 106812, + [SMALL_STATE(1924)] = 106832, + [SMALL_STATE(1925)] = 106844, + [SMALL_STATE(1926)] = 106856, + [SMALL_STATE(1927)] = 106876, + [SMALL_STATE(1928)] = 106896, + [SMALL_STATE(1929)] = 106916, + [SMALL_STATE(1930)] = 106936, + [SMALL_STATE(1931)] = 106956, + [SMALL_STATE(1932)] = 106976, + [SMALL_STATE(1933)] = 106996, + [SMALL_STATE(1934)] = 107016, + [SMALL_STATE(1935)] = 107036, + [SMALL_STATE(1936)] = 107056, + [SMALL_STATE(1937)] = 107074, + [SMALL_STATE(1938)] = 107094, + [SMALL_STATE(1939)] = 107112, + [SMALL_STATE(1940)] = 107132, + [SMALL_STATE(1941)] = 107148, + [SMALL_STATE(1942)] = 107160, + [SMALL_STATE(1943)] = 107180, + [SMALL_STATE(1944)] = 107200, + [SMALL_STATE(1945)] = 107220, + [SMALL_STATE(1946)] = 107240, + [SMALL_STATE(1947)] = 107252, + [SMALL_STATE(1948)] = 107270, + [SMALL_STATE(1949)] = 107282, + [SMALL_STATE(1950)] = 107298, + [SMALL_STATE(1951)] = 107318, + [SMALL_STATE(1952)] = 107338, + [SMALL_STATE(1953)] = 107358, + [SMALL_STATE(1954)] = 107378, + [SMALL_STATE(1955)] = 107390, + [SMALL_STATE(1956)] = 107410, + [SMALL_STATE(1957)] = 107430, + [SMALL_STATE(1958)] = 107442, + [SMALL_STATE(1959)] = 107462, + [SMALL_STATE(1960)] = 107482, + [SMALL_STATE(1961)] = 107494, + [SMALL_STATE(1962)] = 107506, + [SMALL_STATE(1963)] = 107518, + [SMALL_STATE(1964)] = 107538, + [SMALL_STATE(1965)] = 107554, + [SMALL_STATE(1966)] = 107570, + [SMALL_STATE(1967)] = 107582, + [SMALL_STATE(1968)] = 107599, + [SMALL_STATE(1969)] = 107614, + [SMALL_STATE(1970)] = 107629, + [SMALL_STATE(1971)] = 107644, + [SMALL_STATE(1972)] = 107659, + [SMALL_STATE(1973)] = 107674, + [SMALL_STATE(1974)] = 107689, + [SMALL_STATE(1975)] = 107706, + [SMALL_STATE(1976)] = 107723, + [SMALL_STATE(1977)] = 107740, + [SMALL_STATE(1978)] = 107755, + [SMALL_STATE(1979)] = 107770, + [SMALL_STATE(1980)] = 107787, + [SMALL_STATE(1981)] = 107802, + [SMALL_STATE(1982)] = 107817, + [SMALL_STATE(1983)] = 107832, + [SMALL_STATE(1984)] = 107847, + [SMALL_STATE(1985)] = 107864, + [SMALL_STATE(1986)] = 107881, + [SMALL_STATE(1987)] = 107896, + [SMALL_STATE(1988)] = 107907, + [SMALL_STATE(1989)] = 107918, + [SMALL_STATE(1990)] = 107933, + [SMALL_STATE(1991)] = 107950, + [SMALL_STATE(1992)] = 107965, + [SMALL_STATE(1993)] = 107980, + [SMALL_STATE(1994)] = 107997, + [SMALL_STATE(1995)] = 108014, + [SMALL_STATE(1996)] = 108031, + [SMALL_STATE(1997)] = 108044, + [SMALL_STATE(1998)] = 108059, + [SMALL_STATE(1999)] = 108076, + [SMALL_STATE(2000)] = 108093, + [SMALL_STATE(2001)] = 108108, + [SMALL_STATE(2002)] = 108125, + [SMALL_STATE(2003)] = 108140, + [SMALL_STATE(2004)] = 108155, + [SMALL_STATE(2005)] = 108167, + [SMALL_STATE(2006)] = 108181, + [SMALL_STATE(2007)] = 108195, + [SMALL_STATE(2008)] = 108209, + [SMALL_STATE(2009)] = 108223, + [SMALL_STATE(2010)] = 108237, + [SMALL_STATE(2011)] = 108249, + [SMALL_STATE(2012)] = 108263, + [SMALL_STATE(2013)] = 108277, + [SMALL_STATE(2014)] = 108291, + [SMALL_STATE(2015)] = 108305, + [SMALL_STATE(2016)] = 108319, + [SMALL_STATE(2017)] = 108333, + [SMALL_STATE(2018)] = 108347, + [SMALL_STATE(2019)] = 108359, + [SMALL_STATE(2020)] = 108369, + [SMALL_STATE(2021)] = 108383, + [SMALL_STATE(2022)] = 108397, + [SMALL_STATE(2023)] = 108411, + [SMALL_STATE(2024)] = 108425, + [SMALL_STATE(2025)] = 108435, + [SMALL_STATE(2026)] = 108449, + [SMALL_STATE(2027)] = 108463, + [SMALL_STATE(2028)] = 108477, + [SMALL_STATE(2029)] = 108491, + [SMALL_STATE(2030)] = 108505, + [SMALL_STATE(2031)] = 108519, + [SMALL_STATE(2032)] = 108533, + [SMALL_STATE(2033)] = 108547, + [SMALL_STATE(2034)] = 108561, + [SMALL_STATE(2035)] = 108573, + [SMALL_STATE(2036)] = 108587, + [SMALL_STATE(2037)] = 108601, + [SMALL_STATE(2038)] = 108615, + [SMALL_STATE(2039)] = 108629, + [SMALL_STATE(2040)] = 108643, + [SMALL_STATE(2041)] = 108657, + [SMALL_STATE(2042)] = 108671, + [SMALL_STATE(2043)] = 108685, + [SMALL_STATE(2044)] = 108699, + [SMALL_STATE(2045)] = 108713, + [SMALL_STATE(2046)] = 108727, + [SMALL_STATE(2047)] = 108741, + [SMALL_STATE(2048)] = 108755, + [SMALL_STATE(2049)] = 108769, + [SMALL_STATE(2050)] = 108783, + [SMALL_STATE(2051)] = 108797, + [SMALL_STATE(2052)] = 108811, + [SMALL_STATE(2053)] = 108825, + [SMALL_STATE(2054)] = 108839, + [SMALL_STATE(2055)] = 108853, + [SMALL_STATE(2056)] = 108867, + [SMALL_STATE(2057)] = 108881, + [SMALL_STATE(2058)] = 108895, + [SMALL_STATE(2059)] = 108909, + [SMALL_STATE(2060)] = 108923, + [SMALL_STATE(2061)] = 108937, + [SMALL_STATE(2062)] = 108947, + [SMALL_STATE(2063)] = 108961, + [SMALL_STATE(2064)] = 108975, + [SMALL_STATE(2065)] = 108989, + [SMALL_STATE(2066)] = 109003, + [SMALL_STATE(2067)] = 109017, + [SMALL_STATE(2068)] = 109031, + [SMALL_STATE(2069)] = 109045, + [SMALL_STATE(2070)] = 109059, + [SMALL_STATE(2071)] = 109069, + [SMALL_STATE(2072)] = 109083, + [SMALL_STATE(2073)] = 109095, + [SMALL_STATE(2074)] = 109109, + [SMALL_STATE(2075)] = 109121, + [SMALL_STATE(2076)] = 109135, + [SMALL_STATE(2077)] = 109149, + [SMALL_STATE(2078)] = 109163, + [SMALL_STATE(2079)] = 109177, + [SMALL_STATE(2080)] = 109191, + [SMALL_STATE(2081)] = 109205, + [SMALL_STATE(2082)] = 109219, + [SMALL_STATE(2083)] = 109233, + [SMALL_STATE(2084)] = 109247, + [SMALL_STATE(2085)] = 109261, + [SMALL_STATE(2086)] = 109275, + [SMALL_STATE(2087)] = 109289, + [SMALL_STATE(2088)] = 109301, + [SMALL_STATE(2089)] = 109315, + [SMALL_STATE(2090)] = 109329, + [SMALL_STATE(2091)] = 109343, + [SMALL_STATE(2092)] = 109357, + [SMALL_STATE(2093)] = 109371, + [SMALL_STATE(2094)] = 109385, + [SMALL_STATE(2095)] = 109399, + [SMALL_STATE(2096)] = 109413, + [SMALL_STATE(2097)] = 109427, + [SMALL_STATE(2098)] = 109441, + [SMALL_STATE(2099)] = 109455, + [SMALL_STATE(2100)] = 109469, + [SMALL_STATE(2101)] = 109483, + [SMALL_STATE(2102)] = 109497, + [SMALL_STATE(2103)] = 109511, + [SMALL_STATE(2104)] = 109525, + [SMALL_STATE(2105)] = 109539, + [SMALL_STATE(2106)] = 109553, + [SMALL_STATE(2107)] = 109565, + [SMALL_STATE(2108)] = 109577, + [SMALL_STATE(2109)] = 109589, + [SMALL_STATE(2110)] = 109603, + [SMALL_STATE(2111)] = 109615, + [SMALL_STATE(2112)] = 109629, + [SMALL_STATE(2113)] = 109643, + [SMALL_STATE(2114)] = 109657, + [SMALL_STATE(2115)] = 109671, + [SMALL_STATE(2116)] = 109685, + [SMALL_STATE(2117)] = 109699, + [SMALL_STATE(2118)] = 109713, + [SMALL_STATE(2119)] = 109727, + [SMALL_STATE(2120)] = 109741, + [SMALL_STATE(2121)] = 109755, + [SMALL_STATE(2122)] = 109769, + [SMALL_STATE(2123)] = 109783, + [SMALL_STATE(2124)] = 109795, + [SMALL_STATE(2125)] = 109809, + [SMALL_STATE(2126)] = 109821, + [SMALL_STATE(2127)] = 109835, + [SMALL_STATE(2128)] = 109849, + [SMALL_STATE(2129)] = 109861, + [SMALL_STATE(2130)] = 109873, + [SMALL_STATE(2131)] = 109887, + [SMALL_STATE(2132)] = 109897, + [SMALL_STATE(2133)] = 109911, + [SMALL_STATE(2134)] = 109925, + [SMALL_STATE(2135)] = 109939, + [SMALL_STATE(2136)] = 109953, + [SMALL_STATE(2137)] = 109963, + [SMALL_STATE(2138)] = 109977, + [SMALL_STATE(2139)] = 109989, + [SMALL_STATE(2140)] = 110003, + [SMALL_STATE(2141)] = 110017, + [SMALL_STATE(2142)] = 110031, + [SMALL_STATE(2143)] = 110045, + [SMALL_STATE(2144)] = 110059, + [SMALL_STATE(2145)] = 110073, + [SMALL_STATE(2146)] = 110087, + [SMALL_STATE(2147)] = 110101, + [SMALL_STATE(2148)] = 110115, + [SMALL_STATE(2149)] = 110129, + [SMALL_STATE(2150)] = 110141, + [SMALL_STATE(2151)] = 110155, + [SMALL_STATE(2152)] = 110169, + [SMALL_STATE(2153)] = 110181, + [SMALL_STATE(2154)] = 110195, + [SMALL_STATE(2155)] = 110209, + [SMALL_STATE(2156)] = 110219, + [SMALL_STATE(2157)] = 110233, + [SMALL_STATE(2158)] = 110247, + [SMALL_STATE(2159)] = 110261, + [SMALL_STATE(2160)] = 110275, + [SMALL_STATE(2161)] = 110289, + [SMALL_STATE(2162)] = 110303, + [SMALL_STATE(2163)] = 110317, + [SMALL_STATE(2164)] = 110331, + [SMALL_STATE(2165)] = 110345, + [SMALL_STATE(2166)] = 110359, + [SMALL_STATE(2167)] = 110373, + [SMALL_STATE(2168)] = 110387, + [SMALL_STATE(2169)] = 110401, + [SMALL_STATE(2170)] = 110415, + [SMALL_STATE(2171)] = 110429, + [SMALL_STATE(2172)] = 110441, + [SMALL_STATE(2173)] = 110455, + [SMALL_STATE(2174)] = 110469, + [SMALL_STATE(2175)] = 110483, + [SMALL_STATE(2176)] = 110497, + [SMALL_STATE(2177)] = 110511, + [SMALL_STATE(2178)] = 110525, + [SMALL_STATE(2179)] = 110537, + [SMALL_STATE(2180)] = 110551, + [SMALL_STATE(2181)] = 110565, + [SMALL_STATE(2182)] = 110579, + [SMALL_STATE(2183)] = 110593, + [SMALL_STATE(2184)] = 110607, + [SMALL_STATE(2185)] = 110621, + [SMALL_STATE(2186)] = 110635, + [SMALL_STATE(2187)] = 110649, + [SMALL_STATE(2188)] = 110663, + [SMALL_STATE(2189)] = 110673, + [SMALL_STATE(2190)] = 110687, + [SMALL_STATE(2191)] = 110701, + [SMALL_STATE(2192)] = 110715, + [SMALL_STATE(2193)] = 110729, + [SMALL_STATE(2194)] = 110743, + [SMALL_STATE(2195)] = 110757, + [SMALL_STATE(2196)] = 110771, + [SMALL_STATE(2197)] = 110783, + [SMALL_STATE(2198)] = 110795, + [SMALL_STATE(2199)] = 110809, + [SMALL_STATE(2200)] = 110823, + [SMALL_STATE(2201)] = 110837, + [SMALL_STATE(2202)] = 110851, + [SMALL_STATE(2203)] = 110865, + [SMALL_STATE(2204)] = 110879, + [SMALL_STATE(2205)] = 110893, + [SMALL_STATE(2206)] = 110907, + [SMALL_STATE(2207)] = 110921, + [SMALL_STATE(2208)] = 110935, + [SMALL_STATE(2209)] = 110949, + [SMALL_STATE(2210)] = 110961, + [SMALL_STATE(2211)] = 110975, + [SMALL_STATE(2212)] = 110989, + [SMALL_STATE(2213)] = 111003, + [SMALL_STATE(2214)] = 111017, + [SMALL_STATE(2215)] = 111031, + [SMALL_STATE(2216)] = 111045, + [SMALL_STATE(2217)] = 111059, + [SMALL_STATE(2218)] = 111073, + [SMALL_STATE(2219)] = 111085, + [SMALL_STATE(2220)] = 111099, + [SMALL_STATE(2221)] = 111108, + [SMALL_STATE(2222)] = 111117, + [SMALL_STATE(2223)] = 111126, + [SMALL_STATE(2224)] = 111135, + [SMALL_STATE(2225)] = 111144, + [SMALL_STATE(2226)] = 111153, + [SMALL_STATE(2227)] = 111162, + [SMALL_STATE(2228)] = 111171, + [SMALL_STATE(2229)] = 111180, + [SMALL_STATE(2230)] = 111189, + [SMALL_STATE(2231)] = 111198, + [SMALL_STATE(2232)] = 111209, + [SMALL_STATE(2233)] = 111218, + [SMALL_STATE(2234)] = 111227, + [SMALL_STATE(2235)] = 111238, + [SMALL_STATE(2236)] = 111247, + [SMALL_STATE(2237)] = 111256, + [SMALL_STATE(2238)] = 111267, + [SMALL_STATE(2239)] = 111276, + [SMALL_STATE(2240)] = 111285, + [SMALL_STATE(2241)] = 111294, + [SMALL_STATE(2242)] = 111303, + [SMALL_STATE(2243)] = 111312, + [SMALL_STATE(2244)] = 111321, + [SMALL_STATE(2245)] = 111330, + [SMALL_STATE(2246)] = 111339, + [SMALL_STATE(2247)] = 111348, + [SMALL_STATE(2248)] = 111357, + [SMALL_STATE(2249)] = 111366, + [SMALL_STATE(2250)] = 111375, + [SMALL_STATE(2251)] = 111384, + [SMALL_STATE(2252)] = 111393, + [SMALL_STATE(2253)] = 111402, + [SMALL_STATE(2254)] = 111411, + [SMALL_STATE(2255)] = 111420, + [SMALL_STATE(2256)] = 111429, + [SMALL_STATE(2257)] = 111438, + [SMALL_STATE(2258)] = 111447, + [SMALL_STATE(2259)] = 111456, + [SMALL_STATE(2260)] = 111465, + [SMALL_STATE(2261)] = 111474, + [SMALL_STATE(2262)] = 111485, + [SMALL_STATE(2263)] = 111494, + [SMALL_STATE(2264)] = 111503, + [SMALL_STATE(2265)] = 111512, + [SMALL_STATE(2266)] = 111521, + [SMALL_STATE(2267)] = 111530, + [SMALL_STATE(2268)] = 111539, + [SMALL_STATE(2269)] = 111548, + [SMALL_STATE(2270)] = 111559, + [SMALL_STATE(2271)] = 111568, + [SMALL_STATE(2272)] = 111577, + [SMALL_STATE(2273)] = 111586, + [SMALL_STATE(2274)] = 111595, + [SMALL_STATE(2275)] = 111604, + [SMALL_STATE(2276)] = 111613, + [SMALL_STATE(2277)] = 111622, + [SMALL_STATE(2278)] = 111631, + [SMALL_STATE(2279)] = 111642, + [SMALL_STATE(2280)] = 111651, + [SMALL_STATE(2281)] = 111660, + [SMALL_STATE(2282)] = 111671, + [SMALL_STATE(2283)] = 111680, + [SMALL_STATE(2284)] = 111689, + [SMALL_STATE(2285)] = 111698, + [SMALL_STATE(2286)] = 111707, + [SMALL_STATE(2287)] = 111716, + [SMALL_STATE(2288)] = 111725, + [SMALL_STATE(2289)] = 111734, + [SMALL_STATE(2290)] = 111743, + [SMALL_STATE(2291)] = 111754, + [SMALL_STATE(2292)] = 111763, + [SMALL_STATE(2293)] = 111772, + [SMALL_STATE(2294)] = 111781, + [SMALL_STATE(2295)] = 111790, + [SMALL_STATE(2296)] = 111799, + [SMALL_STATE(2297)] = 111808, + [SMALL_STATE(2298)] = 111819, + [SMALL_STATE(2299)] = 111828, + [SMALL_STATE(2300)] = 111837, + [SMALL_STATE(2301)] = 111846, + [SMALL_STATE(2302)] = 111855, + [SMALL_STATE(2303)] = 111864, + [SMALL_STATE(2304)] = 111873, + [SMALL_STATE(2305)] = 111882, + [SMALL_STATE(2306)] = 111891, + [SMALL_STATE(2307)] = 111900, + [SMALL_STATE(2308)] = 111909, + [SMALL_STATE(2309)] = 111918, + [SMALL_STATE(2310)] = 111927, + [SMALL_STATE(2311)] = 111936, + [SMALL_STATE(2312)] = 111944, + [SMALL_STATE(2313)] = 111952, + [SMALL_STATE(2314)] = 111960, + [SMALL_STATE(2315)] = 111968, + [SMALL_STATE(2316)] = 111976, + [SMALL_STATE(2317)] = 111984, + [SMALL_STATE(2318)] = 111992, + [SMALL_STATE(2319)] = 112000, + [SMALL_STATE(2320)] = 112008, + [SMALL_STATE(2321)] = 112016, + [SMALL_STATE(2322)] = 112024, + [SMALL_STATE(2323)] = 112032, + [SMALL_STATE(2324)] = 112040, + [SMALL_STATE(2325)] = 112048, + [SMALL_STATE(2326)] = 112056, + [SMALL_STATE(2327)] = 112064, + [SMALL_STATE(2328)] = 112072, + [SMALL_STATE(2329)] = 112080, + [SMALL_STATE(2330)] = 112088, + [SMALL_STATE(2331)] = 112096, + [SMALL_STATE(2332)] = 112104, + [SMALL_STATE(2333)] = 112112, + [SMALL_STATE(2334)] = 112120, + [SMALL_STATE(2335)] = 112128, + [SMALL_STATE(2336)] = 112136, + [SMALL_STATE(2337)] = 112144, + [SMALL_STATE(2338)] = 112152, + [SMALL_STATE(2339)] = 112160, + [SMALL_STATE(2340)] = 112168, + [SMALL_STATE(2341)] = 112176, + [SMALL_STATE(2342)] = 112184, + [SMALL_STATE(2343)] = 112192, + [SMALL_STATE(2344)] = 112200, + [SMALL_STATE(2345)] = 112208, + [SMALL_STATE(2346)] = 112216, + [SMALL_STATE(2347)] = 112224, + [SMALL_STATE(2348)] = 112232, + [SMALL_STATE(2349)] = 112240, + [SMALL_STATE(2350)] = 112248, + [SMALL_STATE(2351)] = 112256, + [SMALL_STATE(2352)] = 112264, + [SMALL_STATE(2353)] = 112272, + [SMALL_STATE(2354)] = 112280, + [SMALL_STATE(2355)] = 112288, + [SMALL_STATE(2356)] = 112296, + [SMALL_STATE(2357)] = 112304, + [SMALL_STATE(2358)] = 112312, + [SMALL_STATE(2359)] = 112320, + [SMALL_STATE(2360)] = 112328, + [SMALL_STATE(2361)] = 112336, + [SMALL_STATE(2362)] = 112344, + [SMALL_STATE(2363)] = 112352, + [SMALL_STATE(2364)] = 112360, + [SMALL_STATE(2365)] = 112368, + [SMALL_STATE(2366)] = 112376, + [SMALL_STATE(2367)] = 112384, + [SMALL_STATE(2368)] = 112392, + [SMALL_STATE(2369)] = 112400, + [SMALL_STATE(2370)] = 112408, + [SMALL_STATE(2371)] = 112416, + [SMALL_STATE(2372)] = 112424, + [SMALL_STATE(2373)] = 112432, + [SMALL_STATE(2374)] = 112440, + [SMALL_STATE(2375)] = 112448, + [SMALL_STATE(2376)] = 112456, + [SMALL_STATE(2377)] = 112464, + [SMALL_STATE(2378)] = 112472, + [SMALL_STATE(2379)] = 112480, + [SMALL_STATE(2380)] = 112488, + [SMALL_STATE(2381)] = 112496, + [SMALL_STATE(2382)] = 112504, + [SMALL_STATE(2383)] = 112512, + [SMALL_STATE(2384)] = 112520, + [SMALL_STATE(2385)] = 112528, + [SMALL_STATE(2386)] = 112536, + [SMALL_STATE(2387)] = 112544, + [SMALL_STATE(2388)] = 112552, + [SMALL_STATE(2389)] = 112560, + [SMALL_STATE(2390)] = 112568, + [SMALL_STATE(2391)] = 112576, + [SMALL_STATE(2392)] = 112584, + [SMALL_STATE(2393)] = 112592, + [SMALL_STATE(2394)] = 112600, + [SMALL_STATE(2395)] = 112608, + [SMALL_STATE(2396)] = 112616, + [SMALL_STATE(2397)] = 112624, + [SMALL_STATE(2398)] = 112632, + [SMALL_STATE(2399)] = 112640, + [SMALL_STATE(2400)] = 112648, + [SMALL_STATE(2401)] = 112656, + [SMALL_STATE(2402)] = 112664, + [SMALL_STATE(2403)] = 112672, + [SMALL_STATE(2404)] = 112680, + [SMALL_STATE(2405)] = 112688, + [SMALL_STATE(2406)] = 112696, + [SMALL_STATE(2407)] = 112704, + [SMALL_STATE(2408)] = 112712, + [SMALL_STATE(2409)] = 112720, + [SMALL_STATE(2410)] = 112728, + [SMALL_STATE(2411)] = 112736, + [SMALL_STATE(2412)] = 112744, + [SMALL_STATE(2413)] = 112752, + [SMALL_STATE(2414)] = 112760, + [SMALL_STATE(2415)] = 112768, + [SMALL_STATE(2416)] = 112776, + [SMALL_STATE(2417)] = 112784, + [SMALL_STATE(2418)] = 112792, + [SMALL_STATE(2419)] = 112800, + [SMALL_STATE(2420)] = 112808, + [SMALL_STATE(2421)] = 112816, + [SMALL_STATE(2422)] = 112824, + [SMALL_STATE(2423)] = 112832, + [SMALL_STATE(2424)] = 112840, + [SMALL_STATE(2425)] = 112848, + [SMALL_STATE(2426)] = 112856, + [SMALL_STATE(2427)] = 112864, + [SMALL_STATE(2428)] = 112872, + [SMALL_STATE(2429)] = 112880, + [SMALL_STATE(2430)] = 112888, + [SMALL_STATE(2431)] = 112896, + [SMALL_STATE(2432)] = 112904, + [SMALL_STATE(2433)] = 112912, + [SMALL_STATE(2434)] = 112920, + [SMALL_STATE(2435)] = 112928, + [SMALL_STATE(2436)] = 112936, + [SMALL_STATE(2437)] = 112944, + [SMALL_STATE(2438)] = 112952, + [SMALL_STATE(2439)] = 112960, + [SMALL_STATE(2440)] = 112968, + [SMALL_STATE(2441)] = 112976, + [SMALL_STATE(2442)] = 112984, + [SMALL_STATE(2443)] = 112992, + [SMALL_STATE(2444)] = 113000, + [SMALL_STATE(2445)] = 113008, + [SMALL_STATE(2446)] = 113016, + [SMALL_STATE(2447)] = 113024, + [SMALL_STATE(2448)] = 113032, + [SMALL_STATE(2449)] = 113040, + [SMALL_STATE(2450)] = 113048, + [SMALL_STATE(2451)] = 113056, + [SMALL_STATE(2452)] = 113064, + [SMALL_STATE(2453)] = 113072, + [SMALL_STATE(2454)] = 113080, + [SMALL_STATE(2455)] = 113088, + [SMALL_STATE(2456)] = 113096, + [SMALL_STATE(2457)] = 113104, + [SMALL_STATE(2458)] = 113112, + [SMALL_STATE(2459)] = 113120, + [SMALL_STATE(2460)] = 113128, + [SMALL_STATE(2461)] = 113136, + [SMALL_STATE(2462)] = 113144, + [SMALL_STATE(2463)] = 113152, + [SMALL_STATE(2464)] = 113160, + [SMALL_STATE(2465)] = 113168, + [SMALL_STATE(2466)] = 113176, + [SMALL_STATE(2467)] = 113184, + [SMALL_STATE(2468)] = 113192, + [SMALL_STATE(2469)] = 113200, + [SMALL_STATE(2470)] = 113208, + [SMALL_STATE(2471)] = 113216, + [SMALL_STATE(2472)] = 113224, + [SMALL_STATE(2473)] = 113232, + [SMALL_STATE(2474)] = 113240, + [SMALL_STATE(2475)] = 113248, + [SMALL_STATE(2476)] = 113256, + [SMALL_STATE(2477)] = 113264, + [SMALL_STATE(2478)] = 113272, + [SMALL_STATE(2479)] = 113280, + [SMALL_STATE(2480)] = 113288, + [SMALL_STATE(2481)] = 113296, + [SMALL_STATE(2482)] = 113304, + [SMALL_STATE(2483)] = 113312, + [SMALL_STATE(2484)] = 113320, + [SMALL_STATE(2485)] = 113328, + [SMALL_STATE(2486)] = 113336, + [SMALL_STATE(2487)] = 113344, + [SMALL_STATE(2488)] = 113352, + [SMALL_STATE(2489)] = 113360, + [SMALL_STATE(2490)] = 113368, + [SMALL_STATE(2491)] = 113376, + [SMALL_STATE(2492)] = 113384, + [SMALL_STATE(2493)] = 113392, + [SMALL_STATE(2494)] = 113400, + [SMALL_STATE(2495)] = 113408, + [SMALL_STATE(2496)] = 113416, + [SMALL_STATE(2497)] = 113424, + [SMALL_STATE(2498)] = 113432, + [SMALL_STATE(2499)] = 113440, + [SMALL_STATE(2500)] = 113448, + [SMALL_STATE(2501)] = 113456, + [SMALL_STATE(2502)] = 113464, + [SMALL_STATE(2503)] = 113472, + [SMALL_STATE(2504)] = 113480, + [SMALL_STATE(2505)] = 113488, + [SMALL_STATE(2506)] = 113496, + [SMALL_STATE(2507)] = 113504, + [SMALL_STATE(2508)] = 113512, + [SMALL_STATE(2509)] = 113520, + [SMALL_STATE(2510)] = 113528, + [SMALL_STATE(2511)] = 113536, + [SMALL_STATE(2512)] = 113544, + [SMALL_STATE(2513)] = 113552, + [SMALL_STATE(2514)] = 113560, + [SMALL_STATE(2515)] = 113568, + [SMALL_STATE(2516)] = 113576, + [SMALL_STATE(2517)] = 113584, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -127316,2119 +123567,2086 @@ 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), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(650), - [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2057), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1870), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(208), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1024), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(70), - [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(514), - [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(368), - [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(429), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(315), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2277), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2278), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2279), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(556), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(72), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(421), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(820), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(560), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2521), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(418), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2519), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2516), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2514), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(403), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2512), - [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(649), - [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(189), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(645), - [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1023), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1713), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(320), - [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1344), - [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(198), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1344), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(71), - [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1762), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(644), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(73), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(385), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(856), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(638), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2511), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(405), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2534), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2513), - [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(287), - [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 1), REDUCE(sym_primary_expression, 1, .production_id = 1), - [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(967), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, .production_id = 1), - [287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .production_id = 1), - [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(235), - [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(645), - [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(1023), - [298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 1), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 5), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_list_splat_pattern, 2, .production_id = 5), - [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 5), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), + [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(634), + [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1994), + [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1827), + [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(203), + [137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(929), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(63), + [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(453), + [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(320), + [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(426), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(309), + [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2223), + [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2224), + [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2229), + [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(492), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(65), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(372), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(771), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(505), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2503), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(403), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2502), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2501), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2500), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(390), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2499), + [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(539), + [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(175), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(550), + [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(943), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1649), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(316), + [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1272), + [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(194), + [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1272), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(66), + [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1702), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(533), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(64), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(369), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(753), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(598), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2485), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(362), + [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2507), + [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2487), + [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(269), + [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 1), REDUCE(sym_primary_expression, 1, .production_id = 1), + [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(945), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, .production_id = 1), + [291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .production_id = 1), + [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(274), + [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(550), + [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(943), + [302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 1), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 5), + [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_list_splat_pattern, 2, .production_id = 5), + [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 5), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_list_splat_pattern, 2, .production_id = 5), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, .production_id = 5), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_list_splat_pattern, 2, .production_id = 5), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, .production_id = 5), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, .production_id = 80), - [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 80), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 95), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 95), - [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2), - [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, .production_id = 106), - [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, .production_id = 106), - [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3), - [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 94), - [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 94), - [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3), - [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1), - [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .production_id = 14), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .dynamic_precedence = -1, .production_id = 6), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .dynamic_precedence = -1, .production_id = 15), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 44), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 44), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 65), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 65), - [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [1394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1), REDUCE(sym_primary_expression, 1), - [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), - [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 58), - [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 58), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 73), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 73), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 83), - [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 83), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 38), - [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 38), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2), - [1427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_list_splat_pattern, 2), - [1430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_list_splat_pattern, 2), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 50), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 50), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [1441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2), REDUCE(sym_list, 2), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 2), - [1452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1), REDUCE(sym_primary_expression, 1, .production_id = 2), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 2), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 57), - [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 57), - [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 24), - [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 24), - [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [1469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(441), - [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2), - [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), - [1476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2), SHIFT_REPEAT(648), - [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 73), - [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 73), - [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 50), - [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 50), - [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(430), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2), - [1492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), REDUCE(sym_tuple, 2), - [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [1501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2), SHIFT_REPEAT(549), - [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2), + [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2), + [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 95), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 95), + [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 94), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 94), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, .production_id = 78), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 78), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, .production_id = 103), + [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, .production_id = 103), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), + [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .production_id = 14), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .dynamic_precedence = -1, .production_id = 15), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .dynamic_precedence = -1, .production_id = 6), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 63), + [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 63), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 42), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 42), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), + [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1), REDUCE(sym_primary_expression, 1), + [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), + [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1), + [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), + [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), + [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 71), + [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 71), + [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2), + [1383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_list_splat_pattern, 2), + [1386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_list_splat_pattern, 2), + [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2), + [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 48), + [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 48), + [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 56), + [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 56), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2), + [1403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), REDUCE(sym_tuple, 2), + [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 57), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 57), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 82), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 82), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 37), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 37), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2), + [1430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2), SHIFT_REPEAT(564), + [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [1437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(423), + [1440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2), SHIFT_REPEAT(572), + [1443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(414), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [1448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2), REDUCE(sym_list, 2), + [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), + [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2), + [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 48), + [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 48), + [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 71), + [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 71), + [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 2), + [1467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1), REDUCE(sym_primary_expression, 1, .production_id = 2), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 2), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 23), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 23), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 80), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 80), + [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 80), SHIFT_REPEAT(467), + [1483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 80), SHIFT_REPEAT(534), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7), + [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4), + [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4), + [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5), + [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3), [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2), - [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 60), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 60), - [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 60), SHIFT_REPEAT(469), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [1523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 60), SHIFT_REPEAT(513), - [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3), - [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3), - [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4), - [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4), - [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7), - [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7), - [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7), - [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7), - [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, .production_id = 124), - [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, .production_id = 124), - [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, .production_id = 124), - [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, .production_id = 124), - [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 3, .production_id = 17), - [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 3, .production_id = 17), - [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5), - [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5), - [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5), - [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, .production_id = 104), - [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, .production_id = 104), - [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, .production_id = 104), - [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, .production_id = 104), - [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4), - [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4), - [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, .production_id = 89), - [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, .production_id = 89), - [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, .production_id = 84), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, .production_id = 84), - [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, .production_id = 61), - [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, .production_id = 61), - [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, .production_id = 41), - [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, .production_id = 41), - [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat2, 2, .production_id = 60), - [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat2, 2, .production_id = 60), - [1610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat2, 2, .production_id = 60), SHIFT_REPEAT(559), - [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, .production_id = 59), - [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, .production_id = 59), - [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 41), - [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 41), - [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 40), - [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 40), - [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 17), - [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 17), - [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat2, 2, .production_id = 60), SHIFT_REPEAT(621), - [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, .production_id = 38), - [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, .production_id = 38), - [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 44), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 44), - [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, .production_id = 43), - [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, .production_id = 43), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 64), - [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 64), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 65), - [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 65), - [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, .production_id = 58), - [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, .production_id = 58), - [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 112), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 112), - [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 39), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 39), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 103), - [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 103), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 100), - [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 100), - [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 87), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 87), - [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, .production_id = 65), - [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, .production_id = 65), - [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 5, .production_id = 110), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, .production_id = 110), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, .production_id = 107), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 5, .production_id = 107), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 118), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 6, .production_id = 118), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 119), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 6, .production_id = 119), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 120), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 6, .production_id = 120), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 121), - [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 6, .production_id = 121), - [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, .production_id = 44), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, .production_id = 44), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 4, .production_id = 98), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, .production_id = 98), - [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 6, .production_id = 116), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 116), - [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, .production_id = 125), - [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 7, .production_id = 125), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 5, .production_id = 108), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, .production_id = 108), - [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, .production_id = 126), - [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 7, .production_id = 126), - [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, .production_id = 127), - [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 7, .production_id = 127), - [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 5, .production_id = 109), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, .production_id = 109), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat2, 1, .production_id = 39), - [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat2, 1, .production_id = 39), - [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, .production_id = 128), - [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 7, .production_id = 128), - [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 8, .production_id = 129), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, .production_id = 129), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 117), - [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 6, .production_id = 117), - [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 115), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 115), - [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 111), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 111), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 91), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 91), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 44), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 44), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 86), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 86), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, .production_id = 85), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, .production_id = 85), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, .production_id = 46), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, .production_id = 46), - [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 123), - [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 123), - [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 122), - [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 122), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 82), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 82), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 81), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 81), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, .production_id = 45), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, .production_id = 45), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 63), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 63), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, .production_id = 12), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, .production_id = 12), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 68), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 68), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 67), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 67), - [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3), - [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 114), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 114), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 113), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 113), - [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 69), - [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 69), - [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 66), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 66), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 96), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 96), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, .production_id = 89), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, .production_id = 89), - [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 105), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 105), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, .production_id = 88), - [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, .production_id = 88), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 101), - [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 101), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, .production_id = 65), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, .production_id = 65), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4), - [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 90), - [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 90), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 102), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 102), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 56), - [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 56), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 62), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 62), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1), - [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1774), - [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1761), - [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1762), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 51), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 51), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, .production_id = 22), - [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, .production_id = 22), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 52), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 52), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), - [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), - [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .production_id = 9), - [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .production_id = 9), - [2245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1765), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1778), - [2281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1766), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), - [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), - [2354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(987), - [2357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(2361), - [2360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(987), - [2363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(920), - [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, .production_id = 11), - [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, .production_id = 11), - [2370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1769), - [2373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(921), - [2376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(2348), - [2379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(921), - [2382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(917), - [2385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1759), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(1003), - [2399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(2392), - [2402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(1003), - [2405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(916), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 34), - [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 34), - [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2), - [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, .production_id = 48), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 4, .production_id = 48), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, .production_id = 18), - [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 3, .production_id = 18), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, .production_id = 34), - [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, .production_id = 34), - [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 19), - [2454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 19), SHIFT(475), - [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 19), - [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, .production_id = 23), - [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, .production_id = 23), - [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, .production_id = 22), - [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, .production_id = 22), - [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5), - [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), - [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5), - [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5), - [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, .production_id = 34), - [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, .production_id = 34), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 35), - [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 35), - [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, .production_id = 35), - [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, .production_id = 35), - [2499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 19), SHIFT(489), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4), - [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, .production_id = 35), - [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, .production_id = 35), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, .production_id = 35), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, .production_id = 35), - [2514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(1022), - [2517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(2434), - [2520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(1022), - [2523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(918), - [2526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(948), - [2529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(2483), - [2532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(948), - [2535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(913), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3), - [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3), - [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), - [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), - [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, .production_id = 10), - [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, .production_id = 10), - [2566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(947), - [2569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(2464), - [2572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(947), - [2575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(919), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, .production_id = 6), - [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, .production_id = 6), - [2586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 19), SHIFT(471), - [2589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(939), - [2592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(2345), - [2595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(939), - [2598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(915), - [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 19), SHIFT(458), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 19), SHIFT(548), - [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 19), SHIFT(573), - [2634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(934), - [2637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(2523), - [2640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(934), - [2643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 26), SHIFT_REPEAT(914), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 19), SHIFT(557), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 19), SHIFT(518), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 19), SHIFT(586), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), - [2681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(910), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(906), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2), - [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [2867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = 1, .production_id = 7), SHIFT(291), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [2938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(221), - [2941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1889), - [2944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1889), - [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [2957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 19), SHIFT(580), - [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), - [2978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 19), SHIFT(543), - [2981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 19), SHIFT(647), - [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [3010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 19), SHIFT(615), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 19), SHIFT(608), - [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 49), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, .dynamic_precedence = -1, .production_id = 6), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, .production_id = 8), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2), - [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2), - [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2), - [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), - [3102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 19), SHIFT(502), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), - [3125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(1864), - [3128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(1864), - [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), - [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 6), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), - [3143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(599), - [3146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(2467), - [3149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(851), - [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), - [3158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 19), SHIFT(520), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [3173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(454), - [3176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(2539), - [3179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(882), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [3204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1), - [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 72), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [3228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(637), - [3231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(2542), - [3234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(860), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, .production_id = 80), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, .production_id = 27), - [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, .production_id = 27), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 106), - [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, .production_id = 37), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 95), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 94), - [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), - [3269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(393), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(416), - [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, .production_id = 92), - [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), - [3281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2393), - [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, .production_id = 16), - [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, .production_id = 97), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2), - [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 19), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [3296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(563), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), - [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 71), - [3305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(410), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5), - [3314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 75), - [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 75), - [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, .production_id = 17), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = 1, .production_id = 7), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [3334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(909), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2), - [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, .production_id = 19), - [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 76), - [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 76), - [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 77), - [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 77), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1), - [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), - [3359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), SHIFT_REPEAT(649), - [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 55), - [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 55), - [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 54), - [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 54), - [3370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 27), - [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 27), - [3374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, .production_id = 93), - [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, .production_id = 93), - [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, .production_id = 48), - [3380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(476), - [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, .production_id = 18), - [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, .production_id = 4), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(220), - [3452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2), - [3454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(1998), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2437), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, .production_id = 13), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 4), - [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 13), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [3506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2), - [3508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), SHIFT_REPEAT(2033), - [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2), - [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 36), - [3519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 36), SHIFT_REPEAT(468), - [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 29), - [3524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2138), - [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3), - [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3), - [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3), - [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 28), - [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, .production_id = 8), - [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .dynamic_precedence = -1, .production_id = 15), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 14), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), - [3555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), SHIFT_REPEAT(2491), - [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [3562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [3580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, .production_id = 99), SHIFT_REPEAT(646), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, .production_id = 99), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), - [3619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), SHIFT_REPEAT(434), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [3634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(306), - [3637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(321), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [3646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(547), - [3649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(907), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 74), SHIFT_REPEAT(412), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 74), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [3705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, .production_id = 47), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [3757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(905), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [3766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 53), - [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 53), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [3790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), SHIFT_REPEAT(356), - [3793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(1724), - [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(324), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [3857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), SHIFT_REPEAT(145), - [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), - [3862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(1725), - [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 20), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [3869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), SHIFT_REPEAT(432), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [3878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2234), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [3891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(616), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [3910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2463), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [3915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, .production_id = 42), SHIFT_REPEAT(478), - [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, .production_id = 42), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [3924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(312), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, .production_id = 8), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, .production_id = 30), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(908), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(515), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 34), - [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1), - [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), - [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, .production_id = 70), - [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, .production_id = 34), - [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3), - [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, .production_id = 79), - [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1), - [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, .production_id = 3), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, .production_id = 31), - [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1), - [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 32), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 33), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, .production_id = 78), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [4047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [4051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, .production_id = 22), - [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 21), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [4345] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5), + [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), + [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, .production_id = 101), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, .production_id = 101), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, .production_id = 118), + [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, .production_id = 118), + [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7), + [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, .production_id = 118), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, .production_id = 118), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, .production_id = 101), + [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, .production_id = 101), + [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4), + [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, .production_id = 89), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, .production_id = 89), + [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 97), + [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 97), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, .production_id = 41), + [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, .production_id = 41), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 108), + [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 108), + [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 42), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 42), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 62), + [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 62), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, .production_id = 57), + [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, .production_id = 57), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 54), + [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 54), + [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 63), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 63), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 100), + [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 100), + [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 87), + [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 87), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, .production_id = 37), + [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, .production_id = 37), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, .production_id = 42), + [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, .production_id = 42), + [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, .production_id = 63), + [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, .production_id = 63), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 109), + [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 109), + [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 42), + [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 42), + [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, .production_id = 43), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, .production_id = 43), + [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, .production_id = 44), + [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, .production_id = 44), + [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1), + [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 39), + [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 39), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, .production_id = 59), + [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, .production_id = 59), + [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2), + [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 117), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 117), + [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 116), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 116), + [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 55), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 55), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 111), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 111), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 110), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 110), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 107), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 107), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 102), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 102), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, .production_id = 12), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, .production_id = 12), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, .production_id = 63), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, .production_id = 63), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 67), + [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 67), + [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4), + [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 99), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 99), + [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 98), + [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 98), + [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 96), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 96), + [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2), + [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 66), + [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 66), + [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 91), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 91), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 90), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 90), + [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, .production_id = 58), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, .production_id = 58), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, .production_id = 89), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, .production_id = 89), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, .production_id = 88), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, .production_id = 88), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2), + [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 86), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 86), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, .production_id = 85), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, .production_id = 85), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, .production_id = 84), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, .production_id = 84), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 3, .production_id = 83), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 3, .production_id = 83), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 81), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 81), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 79), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 79), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 65), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 65), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 64), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 64), + [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 60), + [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 60), + [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 61), + [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 61), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1715), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1702), + [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1697), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, .production_id = 21), + [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, .production_id = 21), + [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 49), + [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 49), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 24), + [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 24), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 50), + [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 50), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1711), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .production_id = 9), + [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .production_id = 9), + [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1707), + [2137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1706), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, .production_id = 11), + [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, .production_id = 11), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), + [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), + [2178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(884), + [2181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(2315), + [2184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(884), + [2187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(851), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [2198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [2202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [2204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(900), + [2207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(2316), + [2210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(900), + [2213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(853), + [2216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1713), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(860), + [2282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(2469), + [2285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(860), + [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(854), + [2291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1699), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, .production_id = 21), + [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, .production_id = 21), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, .production_id = 22), + [2302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, .production_id = 22), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, .production_id = 46), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 4, .production_id = 46), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 18), + [2320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 18), SHIFT(459), + [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 18), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), + [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3), + [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3), + [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3), + [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3), + [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, .production_id = 17), + [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 3, .production_id = 17), + [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5), + [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, .production_id = 10), + [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, .production_id = 10), + [2365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 18), SHIFT(485), + [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, .production_id = 33), + [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, .production_id = 33), + [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2), + [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2), + [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2), + [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2), + [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 34), + [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 34), + [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, .production_id = 34), + [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, .production_id = 34), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5), + [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5), + [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, .production_id = 6), + [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, .production_id = 6), + [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4), + [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4), + [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, .production_id = 34), + [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, .production_id = 34), + [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, .production_id = 34), + [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, .production_id = 34), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 33), + [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 33), + [2420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(928), + [2423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(2452), + [2426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(928), + [2429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(855), + [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, .production_id = 33), + [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, .production_id = 33), + [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), + [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), + [2440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(875), + [2443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(2359), + [2446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(875), + [2449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(858), + [2452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(968), + [2455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(2336), + [2458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(968), + [2461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(856), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 18), SHIFT(612), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 18), SHIFT(430), + [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 18), SHIFT(545), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 18), SHIFT(512), + [2508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(869), + [2511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(2414), + [2514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(869), + [2517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(852), + [2520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(903), + [2523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(2468), + [2526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(903), + [2529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(857), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 18), SHIFT(434), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 18), SHIFT(515), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 18), SHIFT(623), + [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), + [2567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(844), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3), + [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(843), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3), + [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [2773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = 1, .production_id = 7), SHIFT(281), + [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [2826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(207), + [2829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1831), + [2832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1831), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3), + [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 18), SHIFT(452), + [2862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 18), SHIFT(447), + [2865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 18), SHIFT(484), + [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2), + [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, .dynamic_precedence = -1, .production_id = 6), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [2924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 18), SHIFT(470), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [2959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 18), SHIFT(531), + [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, .production_id = 8), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 47), + [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2), + [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [3000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(442), + [3003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(2512), + [3006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(810), + [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [3025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(595), + [3028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(2491), + [3031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(782), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [3040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(585), + [3043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(2515), + [3046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(768), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 6), + [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [3063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 18), SHIFT(521), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 70), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [3076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 18), SHIFT(633), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), + [3089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(1830), + [3092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(1830), + [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), + [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2), + [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 18), + [3121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(374), + [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), + [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [3130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(845), + [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), + [3135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2416), + [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2), + [3140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, .production_id = 36), + [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, .production_id = 26), + [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, .production_id = 26), + [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, .production_id = 38), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [3158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(618), + [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, .production_id = 104), + [3163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(359), + [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, .production_id = 18), + [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, .production_id = 16), + [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 103), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5), + [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = 1, .production_id = 7), + [3178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(399), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 95), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 94), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, .production_id = 93), + [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, .production_id = 93), + [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, .production_id = 92), + [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 26), + [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 26), + [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 69), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), + [3207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), SHIFT_REPEAT(539), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, .production_id = 78), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 52), + [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 52), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [3224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 75), + [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 75), + [3228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 74), + [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 74), + [3232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 73), + [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 73), + [3236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 53), + [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 53), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [3278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, .production_id = 46), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, .production_id = 13), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, .production_id = 17), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, .production_id = 4), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [3320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(208), + [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2), + [3325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(1939), + [3328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2442), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 4), + [3353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(501), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .dynamic_precedence = -1, .production_id = 15), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3), + [3398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 14), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), + [3412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), SHIFT_REPEAT(2439), + [3415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, .production_id = 106), SHIFT_REPEAT(561), + [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, .production_id = 106), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2), + [3430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), SHIFT_REPEAT(1981), + [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 13), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [3439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, .production_id = 80), SHIFT_REPEAT(475), + [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, .production_id = 80), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3), + [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 35), + [3458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 35), SHIFT_REPEAT(466), + [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 27), + [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2), + [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, .production_id = 8), + [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 28), + [3479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 28), SHIFT_REPEAT(2126), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [3496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(596), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [3503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(599), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1), + [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(584), + [3533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), SHIFT_REPEAT(132), + [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [3540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(846), + [3543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 72), SHIFT_REPEAT(365), + [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 72), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, .production_id = 40), SHIFT_REPEAT(479), + [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, .production_id = 40), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [3577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(277), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [3586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(305), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [3597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(304), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, .production_id = 29), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, .production_id = 8), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [3700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), SHIFT_REPEAT(409), + [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 19), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [3729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(848), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), + [3744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(1663), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [3759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 51), + [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 51), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, .production_id = 45), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [3773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), SHIFT_REPEAT(417), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [3800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(847), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [3813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), SHIFT_REPEAT(333), + [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(301), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 28), SHIFT_REPEAT(2118), + [3876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2343), + [3879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(1662), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 122), + [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1), + [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), + [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), + [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 121), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3), + [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, .production_id = 33), + [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 120), + [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 119), + [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, .production_id = 115), + [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, .production_id = 3), + [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, .production_id = 114), + [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, .production_id = 113), + [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, .production_id = 112), + [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, .production_id = 105), + [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, .production_id = 129), + [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 124), + [3940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, .production_id = 77), + [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, .production_id = 76), + [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, .production_id = 125), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, .production_id = 126), + [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, .production_id = 127), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, .production_id = 128), + [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 33), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 32), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [3976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, .production_id = 68), + [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 31), + [3980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1), + [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, .production_id = 30), + [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, .production_id = 54), + [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 20), + [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, .production_id = 21), + [3992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 123), + [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [4312] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), }; #ifdef __cplusplus diff --git a/test/corpus/pattern_matching.txt b/test/corpus/pattern_matching.txt index 16be3e78..d07f468f 100644 --- a/test/corpus/pattern_matching.txt +++ b/test/corpus/pattern_matching.txt @@ -22,76 +22,77 @@ match command.split(): (identifier) (identifier)) (argument_list)) - (case_clause - (case_pattern - (list - (string - (string_start) - (string_content) - (string_end)))) - (block - (expression_statement - (call - (identifier) - (argument_list - (string - (string_start) - (string_content) - (string_end))))) - (expression_statement - (call - (identifier) - (argument_list))))) - (case_clause - (case_pattern - (list - (string - (string_start) - (string_content) - (string_end)))) - (block - (expression_statement - (call - (attribute - (identifier) - (identifier)) - (argument_list))))) - (case_clause - (case_pattern - (list - (string - (string_start) - (string_content) - (string_end)) - (identifier))) - (block - (expression_statement - (call - (attribute + (block + (case_clause + (case_pattern + (list + (string + (string_start) + (string_content) + (string_end)))) + (block + (expression_statement + (call (identifier) - (identifier)) - (argument_list + (argument_list + (string + (string_start) + (string_content) + (string_end))))) + (expression_statement + (call (identifier) - (identifier)))))) - (case_clause - (case_pattern - (list - (string - (string_start) - (string_content) - (string_end)) - (identifier))) - (block - (expression_statement - (assignment - (identifier) + (argument_list))))) + (case_clause + (case_pattern + (list + (string + (string_start) + (string_content) + (string_end)))) + (block + (expression_statement + (call + (attribute + (identifier) + (identifier)) + (argument_list))))) + (case_clause + (case_pattern + (list + (string + (string_start) + (string_content) + (string_end)) + (identifier))) + (block + (expression_statement (call (attribute (identifier) (identifier)) (argument_list - (identifier)))))))) - (comment)) + (identifier) + (identifier)))))) + (case_clause + (case_pattern + (list + (string + (string_start) + (string_content) + (string_end)) + (identifier))) + (block + (expression_statement + (assignment + (identifier) + (call + (attribute + (identifier) + (identifier)) + (argument_list + (identifier))))))) + (comment)))) ================================================================================ Matching multiple values @@ -110,28 +111,29 @@ match command.split(): (identifier) (identifier)) (argument_list)) - (case_clause - (case_pattern - (list - (string - (string_start) - (string_content) - (string_end)) - (list_splat - (identifier)))) - (block - (for_statement - (identifier) - (identifier) - (block - (expression_statement - (call - (attribute - (identifier) - (identifier)) - (argument_list - (identifier) - (identifier)))))))))) + (block + (case_clause + (case_pattern + (list + (string + (string_start) + (string_content) + (string_end)) + (list_splat + (identifier)))) + (block + (for_statement + (identifier) + (identifier) + (block + (expression_statement + (call + (attribute + (identifier) + (identifier)) + (argument_list + (identifier) + (identifier))))))))))) ================================================================================ Adding a wild card @@ -154,54 +156,55 @@ match command.split(): (identifier) (identifier)) (argument_list)) - (comment) - (case_clause - (case_pattern - (list - (string - (string_start) - (string_content) - (string_end)))) - (block - (expression_statement - (ellipsis)) - (comment))) - (case_clause - (case_pattern - (list - (string - (string_start) - (string_content) - (string_end)) - (identifier))) - (block - (pass_statement))) - (case_clause - (case_pattern - (list - (string - (string_start) - (string_content) - (string_end)) - (list_splat - (identifier)))) - (block - (pass_statement))) - (case_clause - (case_pattern - (identifier)) - (block - (expression_statement - (call - (identifier) - (argument_list - (string - (string_start) - (string_content) - (interpolation - (identifier) - (type_conversion)) - (string_end))))))))) + (block + (comment) + (case_clause + (case_pattern + (list + (string + (string_start) + (string_content) + (string_end)))) + (block + (expression_statement + (ellipsis)) + (comment))) + (case_clause + (case_pattern + (list + (string + (string_start) + (string_content) + (string_end)) + (identifier))) + (block + (pass_statement))) + (case_clause + (case_pattern + (list + (string + (string_start) + (string_content) + (string_end)) + (list_splat + (identifier)))) + (block + (pass_statement))) + (case_clause + (case_pattern + (identifier)) + (block + (expression_statement + (call + (identifier) + (argument_list + (string + (string_start) + (string_content) + (interpolation + (identifier) + (type_conversion)) + (string_end)))))))))) ================================================================================ Or patterns @@ -221,68 +224,69 @@ match command.split(): (identifier) (identifier)) (argument_list)) - (case_clause - (case_pattern - (binary_operator - (list - (string - (string_start) - (string_content) - (string_end))) - (list - (string - (string_start) - (string_content) - (string_end)) - (string - (string_start) - (string_content) - (string_end))))) - (block - (expression_statement - (assignment - (identifier) - (call - (attribute - (identifier) - (identifier)) - (argument_list - (string - (string_start) - (string_content) - (string_end)))))))) - (case_clause - (case_pattern - (binary_operator + (block + (case_clause + (case_pattern (binary_operator (list (string (string_start) (string_content) - (string_end)) - (identifier)) + (string_end))) (list (string (string_start) (string_content) (string_end)) + (string + (string_start) + (string_content) + (string_end))))) + (block + (expression_statement + (assignment + (identifier) + (call + (attribute + (identifier) + (identifier)) + (argument_list + (string + (string_start) + (string_content) + (string_end)))))))) + (case_clause + (case_pattern + (binary_operator + (binary_operator + (list + (string + (string_start) + (string_content) + (string_end)) + (identifier)) + (list + (string + (string_start) + (string_content) + (string_end)) + (string + (string_start) + (string_content) + (string_end)) + (identifier))) + (list (string (string_start) (string_content) (string_end)) - (identifier))) - (list - (string - (string_start) - (string_content) - (string_end)) - (identifier) - (string - (string_start) - (string_content) - (string_end))))) - (block - (pass_statement))))) + (identifier) + (string + (string_start) + (string_content) + (string_end))))) + (block + (pass_statement)))))) ================================================================================ As patterns @@ -300,22 +304,27 @@ match command.split(): (identifier) (identifier)) (argument_list)) - (case_clause - (case_pattern - (list - (string - (string_start) - (string_content) - (string_end)) - (as_pattern - (parenthesized_expression - (binary_operator + (block + (case_clause + (case_pattern + (list + (string + (string_start) + (string_content) + (string_end)) + (as_pattern + (parenthesized_expression (binary_operator (binary_operator - (string - (string_start) - (string_content) - (string_end)) + (binary_operator + (string + (string_start) + (string_content) + (string_end)) + (string + (string_start) + (string_content) + (string_end))) (string (string_start) (string_content) @@ -323,23 +332,19 @@ match command.split(): (string (string_start) (string_content) - (string_end))) - (string - (string_start) - (string_content) - (string_end)))) - (as_pattern_target - (identifier))))) - (block - (expression_statement - (assignment - (identifier) - (call - (attribute - (identifier) - (identifier)) - (argument_list - (identifier))))))))) + (string_end)))) + (as_pattern_target + (identifier))))) + (block + (expression_statement + (assignment + (identifier) + (call + (attribute + (identifier) + (identifier)) + (argument_list + (identifier)))))))))) ================================================================================ Actually not match @@ -507,26 +512,27 @@ match 0: (module (match_statement (integer) - (case_clause - (case_pattern - (integer)) - (if_clause - (false)) - (block - (expression_statement - (assignment - (identifier) - (false))))) - (case_clause - (case_pattern - (integer)) - (if_clause - (true)) - (block - (expression_statement - (assignment - (identifier) - (true))))))) + (block + (case_clause + (case_pattern + (integer)) + (if_clause + (false)) + (block + (expression_statement + (assignment + (identifier) + (false))))) + (case_clause + (case_pattern + (integer)) + (if_clause + (true)) + (block + (expression_statement + (assignment + (identifier) + (true)))))))) ================================================================================ Comma separated cases @@ -544,27 +550,28 @@ match (0, 1, 2): (integer) (integer) (integer)) - (case_clause - (case_pattern - (integer)) - (case_pattern - (integer)) - (block - (expression_statement - (assignment - (identifier) - (integer))))) - (case_clause - (case_pattern - (integer)) - (case_pattern - (list_splat - (identifier))) - (block - (expression_statement - (assignment - (identifier) - (integer))))))) + (block + (case_clause + (case_pattern + (integer)) + (case_pattern + (integer)) + (block + (expression_statement + (assignment + (identifier) + (integer))))) + (case_clause + (case_pattern + (integer)) + (case_pattern + (list_splat + (identifier))) + (block + (expression_statement + (assignment + (identifier) + (integer)))))))) ================================================================================ case terminating in comma @@ -577,15 +584,16 @@ match x,: (module (match_statement (identifier) - (case_clause - (case_pattern - (list_splat - (identifier))) - (block - (expression_statement - (assignment - (identifier) - (integer))))))) + (block + (case_clause + (case_pattern + (list_splat + (identifier))) + (block + (expression_statement + (assignment + (identifier) + (integer)))))))) ================================================================================ Multiple match patterns @@ -601,16 +609,17 @@ match ..., ...: (match_statement (ellipsis) (ellipsis) - (case_clause - (case_pattern - (identifier)) - (case_pattern - (identifier)) - (block - (return_statement - (call - (identifier) - (argument_list))))))) + (block + (case_clause + (case_pattern + (identifier)) + (case_pattern + (identifier)) + (block + (return_statement + (call + (identifier) + (argument_list)))))))) ================================================================================ Match match, case case @@ -630,14 +639,15 @@ match match: (integer)))) (match_statement (identifier) - (case_clause - (case_pattern - (identifier)) - (block - (expression_statement - (assignment - (identifier) - (integer))))))) + (block + (case_clause + (case_pattern + (identifier)) + (block + (expression_statement + (assignment + (identifier) + (integer)))))))) ================================================================================ Walrus match (Issue #150)